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:
Ingo Schommer 2010-08-03 04:32:09 +00:00
parent e65b892e31
commit 0d66807586
2 changed files with 1 additions and 2 deletions

View File

@ -128,7 +128,7 @@
allowed = selectedNode.hints.allowedChildren;
} else {
// Fallback to globals
allowed = siteTreeHints['Root'].allowedChildren;
allowed = (typeof siteTreeHints !== 'undefined') ? siteTreeHints['Root'].allowedChildren : [];
}
// Re-add all allowed <option> to the dropdown

View File

@ -69,7 +69,6 @@ var ss_MainLayout;
var timerID = "timerLeftAndMainResize";
if (window[timerID]) clearTimeout(window[timerID]);
window[timerID] = setTimeout(function() {
console.debug(self._resizeChildren);
self._resizeChildren();
}, 200);
});