diff --git a/src/sunstone/public/app/tabs/marketplaceapps-tab/form-panels/export.js b/src/sunstone/public/app/tabs/marketplaceapps-tab/form-panels/export.js index d29f845b1c..f43e50ac3f 100644 --- a/src/sunstone/public/app/tabs/marketplaceapps-tab/form-panels/export.js +++ b/src/sunstone/public/app/tabs/marketplaceapps-tab/form-panels/export.js @@ -160,11 +160,8 @@ define(function(require) { var that = this; var section = $("#" + that.datastoresTable.dataTableId + "Container"); - $("#" + that.datastoresTable.dataTableId + " tbody", section).delegate("tr", "click", function(e) { - var wasChecked = $("td.markrow", this).hasClass("markrow"); - console.log({"dsTable": that.datastoresTable}) + $("#" + that.datastoresTable.dataTableId + " tbody", section).delegate("tr", "click", function() { var aData = that.datastoresTable.dataTable.fnGetData(this); - var check = aData != undefined && !wasChecked; if (aData[9] == "vcenter"){ $("#placeDatatablevCenterTemplate", context).show(); diff --git a/src/sunstone/public/app/tabs/templates-tab/form-panels/create/wizard-tabs/os.js b/src/sunstone/public/app/tabs/templates-tab/form-panels/create/wizard-tabs/os.js index f14965987a..afd6318897 100644 --- a/src/sunstone/public/app/tabs/templates-tab/form-panels/create/wizard-tabs/os.js +++ b/src/sunstone/public/app/tabs/templates-tab/form-panels/create/wizard-tabs/os.js @@ -279,7 +279,6 @@ define(function(require) { that.initrdFilesTable.refreshResourceTableSelect(); $("#firmwareType", context).change(function() { - console.log($(this).val()) if (FIRMWARE_VALUES[$(this).val()]){ $("#firmwareSecure", context).show(); }