diff options
| author | cmcnulty <cmcnulty@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2006-02-19 20:21:58 +0000 |
|---|---|---|
| committer | cmcnulty <cmcnulty@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2006-02-19 20:21:58 +0000 |
| commit | b220f9ddd35b5096ad4f4cf2115d443ac9dc50d4 (patch) | |
| tree | b828c42e8c888264f8cb2d25377718077cee7853 | |
| parent | d914ddf59517ba6960d39c9a59273b74a399fef0 (diff) | |
fix bug in safari browsers
git-svn-id: https://svn.roundcube.net/trunk@144 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/js/app.js | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index 715bad0fd..3914fd318 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/program/js/app.js @@ -265,7 +265,6 @@ function rcube_webmail() this.in_message_list = true; e.cancelBubble = true; - if (e.stopPropagation) e.stopPropagation(); }; // reset last clicked if user clicks on anything other than the message table @@ -293,7 +292,7 @@ function rcube_webmail() } if (!new_row) return false; scroll_to = new_row.offsetTop; - } else {return false}; + } else {return true;} if (mod_key != CONTROL_KEY) this.select_row(new_row.uid,mod_key); @@ -2658,7 +2657,7 @@ function rcube_webmail() { if (!this.gui_objects.mailboxlist) return false; - + var item, reg, text_obj; mbox = String(mbox).toLowerCase().replace(this.mbox_expression, ''); item = document.getElementById('rcmbx'+mbox); @@ -2681,7 +2680,7 @@ function rcube_webmail() } // set unread count to window title - if ((set_title || mbox==this.env.mailbox) && document.title) + if ((set_title || mbox==this.env.mailbox) && document.title) { var doc_title = String(document.title); reg = /^\([0-9]+\)\s+/i; |
