diff options
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | program/js/common.js | 7 |
2 files changed, 3 insertions, 5 deletions
@@ -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/program/js/common.js b/program/js/common.js index 7ec18f205..bd699d924 100644 --- a/program/js/common.js +++ b/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 |