Skip to content

Commit c17cda2

Browse files
author
jessica
committed
resolve failed merge markers
1 parent 65b9f29 commit c17cda2

2 files changed

Lines changed: 6 additions & 26 deletions

File tree

ui/content/tab_storage.html

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -611,11 +611,7 @@ <h3>
611611
<div class="grid_headertitles">
612612
Name</div>
613613
</div>
614-
<<<<<<< HEAD
615-
<div class="grid_genheader_cell" style="width: 10%;">
616-
=======
617614
<div class="grid_genheader_cell" style="width: 15%;">
618-
>>>>>>> 418f895... Issue #: 5986
619615
<div class="grid_headertitles">
620616
Type</div>
621617
</div>
@@ -707,11 +703,7 @@ <h3>
707703
<div class="netgrid_celltitles" id="volume_name">
708704
Name</div>
709705
</div>
710-
<<<<<<< HEAD
711-
<div class="grid_smallgenrow_cell" style="width: 10%;">
712-
=======
713706
<div class="grid_smallgenrow_cell" style="width: 15%;">
714-
>>>>>>> 418f895... Issue #: 5986
715707
<div class="netgrid_celltitles" id="volume_type">
716708
Type</div>
717709
</div>

ui/scripts/cloud.core.domains.js

Lines changed: 6 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,8 @@ function showDomainsTab() {
6565
}
6666

6767
function drawTree(id, level, container) {
68-
$.ajax({
69-
<<<<<<< HEAD
70-
data: createURL("command=listDomainChildren&id="+id+"&response=json"),
71-
=======
72-
data: "command=listDomainChildren&id="+id+"&response=json&pageSize=-1",
73-
>>>>>>> e8446f8... Issue #: 5975
68+
$.ajax({
69+
data: "command=listDomainChildren&id="+id+"&response=json&pageSize=-1",
7470
dataType: "json",
7571
async: false,
7672
success: function(json) {
@@ -324,12 +320,8 @@ function showDomainsTab() {
324320
rightPanelDetailContent.hide();
325321
rightPanelSearchResult.show();
326322
var keyword = searchInput.val();
327-
$.ajax({
328-
<<<<<<< HEAD
329-
data: createURL("command=listDomains&keyword="+keyword+"&response=json"+maxPageSize),
330-
=======
331-
data: "command=listDomains&keyword="+keyword+"&response=json&pageSize=-1", //pageSize=-1 will return all items (no limitation)
332-
>>>>>>> e8446f8... Issue #: 5975
323+
$.ajax({
324+
data: "command=listDomains&keyword="+keyword+"&response=json&pageSize=-1", //pageSize=-1 will return all items (no limitation)
333325
dataType: "json",
334326
async: false,
335327
success: function(json) {
@@ -357,12 +349,8 @@ function showDomainsTab() {
357349
//draw root node
358350
function drawRootNode(rootDomainId) {
359351
treeContentBox.empty();
360-
$.ajax({
361-
<<<<<<< HEAD
362-
data: createURL("command=listDomains&id="+rootDomainId+"&response=json"),
363-
=======
364-
data: "command=listDomains&id="+rootDomainId+"&response=json&pageSize=-1", //pageSize=-1 will return all items (no limitation)
365-
>>>>>>> e8446f8... Issue #: 5975
352+
$.ajax({
353+
data: "command=listDomains&id="+rootDomainId+"&response=json&pageSize=-1", //pageSize=-1 will return all items (no limitation)
366354
dataType: "json",
367355
async: false,
368356
success: function(json) {

0 commit comments

Comments
 (0)