diff options
author | alecpl <alec@alec.pl> | 2009-07-07 17:23:55 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-07-07 17:23:55 +0000 |
commit | c1e9b0306166c80da4d3cddb170dece838780d5a (patch) | |
tree | 60a0411ba613bf000043f62329dd33c329788f02 | |
parent | 8bc018a72f03ad645a10628b507ce91b04085a45 (diff) |
- fix debug console
-rw-r--r-- | program/js/common.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/js/common.js b/program/js/common.js index 1fd10c255..627d238d3 100644 --- a/program/js/common.js +++ b/program/js/common.js @@ -580,7 +580,7 @@ function rcube_console() { this.log = function(msg) { - var box = rcube_find_object('console'); + var box = rcube_find_object('dbgconsole'); if (box) { if (msg.charAt(msg.length-1)=='\n') @@ -599,7 +599,7 @@ function rcube_console() this.reset = function() { - var box = rcube_find_object('console'); + var box = rcube_find_object('dbgconsole'); if (box) box.innerText = box.value = ''; }; |