Index: trunk/core/kernel/utility/debugger/debugger.js =================================================================== diff -u -r4823 -r4834 --- trunk/core/kernel/utility/debugger/debugger.js (.../debugger.js) (revision 4823) +++ trunk/core/kernel/utility/debugger/debugger.js (.../debugger.js) (revision 4834) @@ -57,15 +57,11 @@ function Debugger() { this.IsQueried = false; this.IsVisible = false; - /*this.DOMViewerURL = '<?php echo constant('DBG_DOMVIEWER'); ?>'; - this.EditorPath = '<?php echo defined('WINDOWS_EDITOR') ? addslashes(WINDOWS_EDITOR) : '' ?>';*/ this.DebuggerDIV = document.getElementById('debug_layer'); this.DebuggerTable = document.getElementById('debug_table'); this.RowCount = 0; - /*this.RowSeparator = '<?php echo $this->rowSeparator; ?>'; - this.DebugURL = '<?php echo addslashes(DEBUG_URL); ?>';*/ -// window.$Debugger = this; // this should be uncommented in case if debugger variable is not $Debugger +// window.$Debugger = this; // this should be uncommented in case if debugger variable is not $Debugger window.onscroll = function(ev) { window.$Debugger.Resize(ev); } window.onresize = function(ev) { window.$Debugger.Resize(ev); } document.onkeydown = function(ev) { window.$Debugger.KeyDown(ev); }