diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-05-26 08:40:45 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-05-26 08:40:45 +0000 |
| commit | 824b86fafbeb47cb306927b3376e66bc99cd1551 (patch) | |
| tree | be995c1c9b169638d82a1683c7d32bf4f9c3e75f /roundcubemail/program/js | |
| parent | f77c9184582746a06d3190c57e59369a85174b7f (diff) | |
-small fix for Konqueror (#1484228)
git-svn-id: https://svn.roundcube.net/trunk@1422 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js')
| -rw-r--r-- | roundcubemail/program/js/app.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index aabe96b25..808c58597 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/program/js/app.js @@ -2973,7 +2973,7 @@ function rcube_webmail() var button, obj; if(!a_buttons || !a_buttons.length) - return; + return false; for(var n=0; n<a_buttons.length; n++) { @@ -3041,7 +3041,7 @@ function rcube_webmail() var button, img; if(!a_buttons || !a_buttons.length) - return; + return false; for(var n=0; n<a_buttons.length; n++) { @@ -3053,6 +3053,7 @@ function rcube_webmail() img.src = button.over; } } + }; // mouse down on button |
