diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-04-16 17:38:19 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-04-16 17:38:19 +0000 |
| commit | b75e7bf1127a64861dab03d7a999186a6c740550 (patch) | |
| tree | 02d34a9de4f1ec5a2da81dac54083622e3df58f3 | |
| parent | d1f3dd5cff9c15bc8aa8294ac851e54eb0bccc38 (diff) | |
- Fix debug console on Safari
git-svn-id: https://svn.roundcube.net/trunk@2395 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/CHANGELOG | 1 | ||||
| -rw-r--r-- | roundcubemail/program/js/common.js | 7 |
2 files changed, 3 insertions, 5 deletions
diff --git a/roundcubemail/CHANGELOG b/roundcubemail/CHANGELOG index 3d68b5a5c..18bef3519 100644 --- a/roundcubemail/CHANGELOG +++ b/roundcubemail/CHANGELOG @@ -1,6 +1,7 @@ CHANGELOG RoundCube Webmail =========================== +- Fix debug console on Konqueror and Safari - Fix messagelist focus issue when modifying status of selected messages (#1485807) - Support STARTTLS in IMAP connection (#1485284) - Fix DEL key problem in search boxes (#1485528) diff --git a/roundcubemail/program/js/common.js b/roundcubemail/program/js/common.js index 7ec18f205..bd699d924 100644 --- a/roundcubemail/program/js/common.js +++ b/roundcubemail/program/js/common.js @@ -602,7 +602,6 @@ function getCookie(name) roundcube_browser.prototype.get_cookie = getCookie; - // tiny replacement for Firebox functionality function rcube_console() { @@ -616,7 +615,7 @@ function rcube_console() else msg += '\n--------------------------------------\n'; - // Konqueror (Safari also?) doesn't allows to just change value of hidden element + // Konqueror doesn't allows to just change value of hidden element if (bw.konq) { box.innerText += msg; box.value = box.innerText; @@ -634,9 +633,7 @@ function rcube_console() } var bw = new roundcube_browser(); - -if (!window.console) - console = new rcube_console(); +var console = new rcube_console(); // Add escape() method to RegExp object |
