@@ -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