diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-07-07 17:23:55 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-07-07 17:23:55 +0000 |
| commit | bf2b542bbb78d5a77a7edf942807f0755233c967 (patch) | |
| tree | 16c2036fc5f8c21302a4548a4c70b3207ce06d49 | |
| parent | 9e0b48fb75994f2c98c39a866d6b743e506ccee4 (diff) | |
- fix debug console
git-svn-id: https://svn.roundcube.net/trunk@2721 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/js/common.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/js/common.js b/roundcubemail/program/js/common.js index 1fd10c255..627d238d3 100644 --- a/roundcubemail/program/js/common.js +++ b/roundcubemail/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 = ''; }; |
