From 6b5f0bdbfb621ab3e4ec0f23c000b780d030d47f Mon Sep 17 00:00:00 2001 From: xue <> Date: Mon, 4 Dec 2006 03:15:22 +0000 Subject: merge from 3.0 branch till 1559. --- framework/Web/Javascripts/js/debug/logger.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'framework/Web/Javascripts/js/debug/logger.js') diff --git a/framework/Web/Javascripts/js/debug/logger.js b/framework/Web/Javascripts/js/debug/logger.js index 5d465d56..37e5028e 100644 --- a/framework/Web/Javascripts/js/debug/logger.js +++ b/framework/Web/Javascripts/js/debug/logger.js @@ -200,7 +200,7 @@ LogConsole.prototype = { // Methods // ------- - initialize : function() { + initialize : function(toggleKey) { this.outputCount = 0 this.tagPattern = Cookie.get('tagPattern') || ".*" @@ -283,6 +283,12 @@ LogConsole.prototype = { this.logElement.style.position="fixed"; this.logElement.style.bottom="0px"; } + var self=this; + Event.observe(document, 'keydown', function(e) + { + if((e.altKey==true) && Event.keyCode(e) == toggleKey ) //Alt+J | Ctrl+J + self.toggle(); + }); // Listen to the logger.... Logger.onupdate.addListener(this.logUpdate.bind(this)) @@ -452,12 +458,6 @@ LogConsole.prototype = { } } -// Load the Console when the window loads -var logConsole; -Event.OnLoad(function() { logConsole = new LogConsole()}); - - - // ------------------------- // Helper Functions And Junk -- cgit v1.2.3