mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
MINOR Removed debug coe
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@108837 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
e65b892e31
commit
0d66807586
@ -128,7 +128,7 @@
|
|||||||
allowed = selectedNode.hints.allowedChildren;
|
allowed = selectedNode.hints.allowedChildren;
|
||||||
} else {
|
} else {
|
||||||
// Fallback to globals
|
// Fallback to globals
|
||||||
allowed = siteTreeHints['Root'].allowedChildren;
|
allowed = (typeof siteTreeHints !== 'undefined') ? siteTreeHints['Root'].allowedChildren : [];
|
||||||
}
|
}
|
||||||
|
|
||||||
// Re-add all allowed <option> to the dropdown
|
// Re-add all allowed <option> to the dropdown
|
||||||
|
@ -69,7 +69,6 @@ var ss_MainLayout;
|
|||||||
var timerID = "timerLeftAndMainResize";
|
var timerID = "timerLeftAndMainResize";
|
||||||
if (window[timerID]) clearTimeout(window[timerID]);
|
if (window[timerID]) clearTimeout(window[timerID]);
|
||||||
window[timerID] = setTimeout(function() {
|
window[timerID] = setTimeout(function() {
|
||||||
console.debug(self._resizeChildren);
|
|
||||||
self._resizeChildren();
|
self._resizeChildren();
|
||||||
}, 200);
|
}, 200);
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user