diff --git a/ui/content/tab_storage.html b/ui/content/tab_storage.html index f11ad64b1ef..3abfa48568f 100644 --- a/ui/content/tab_storage.html +++ b/ui/content/tab_storage.html @@ -611,11 +611,7 @@
Name
-<<<<<<< HEAD -
-=======
->>>>>>> 418f895... Issue #: 5986
Type
@@ -707,11 +703,7 @@
Name
-<<<<<<< HEAD -
-=======
->>>>>>> 418f895... Issue #: 5986
Type
diff --git a/ui/scripts/cloud.core.domains.js b/ui/scripts/cloud.core.domains.js index 7e57eebc5e1..db94223d8f1 100644 --- a/ui/scripts/cloud.core.domains.js +++ b/ui/scripts/cloud.core.domains.js @@ -65,12 +65,8 @@ function showDomainsTab() { } function drawTree(id, level, container) { - $.ajax({ -<<<<<<< HEAD - data: createURL("command=listDomainChildren&id="+id+"&response=json"), -======= - data: "command=listDomainChildren&id="+id+"&response=json&pageSize=-1", ->>>>>>> e8446f8... Issue #: 5975 + $.ajax({ + data: "command=listDomainChildren&id="+id+"&response=json&pageSize=-1", dataType: "json", async: false, success: function(json) { @@ -324,12 +320,8 @@ function showDomainsTab() { rightPanelDetailContent.hide(); rightPanelSearchResult.show(); var keyword = searchInput.val(); - $.ajax({ -<<<<<<< HEAD - data: createURL("command=listDomains&keyword="+keyword+"&response=json"+maxPageSize), -======= - data: "command=listDomains&keyword="+keyword+"&response=json&pageSize=-1", //pageSize=-1 will return all items (no limitation) ->>>>>>> e8446f8... Issue #: 5975 + $.ajax({ + data: "command=listDomains&keyword="+keyword+"&response=json&pageSize=-1", //pageSize=-1 will return all items (no limitation) dataType: "json", async: false, success: function(json) { @@ -357,12 +349,8 @@ function showDomainsTab() { //draw root node function drawRootNode(rootDomainId) { treeContentBox.empty(); - $.ajax({ -<<<<<<< HEAD - data: createURL("command=listDomains&id="+rootDomainId+"&response=json"), -======= - data: "command=listDomains&id="+rootDomainId+"&response=json&pageSize=-1", //pageSize=-1 will return all items (no limitation) ->>>>>>> e8446f8... Issue #: 5975 + $.ajax({ + data: "command=listDomains&id="+rootDomainId+"&response=json&pageSize=-1", //pageSize=-1 will return all items (no limitation) dataType: "json", async: false, success: function(json) {