diff options
author | alecpl <alec@alec.pl> | 2008-05-26 08:40:45 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-05-26 08:40:45 +0000 |
commit | 4da1d7c663d677347496fd8919097bfb34d293e7 (patch) | |
tree | 3ad5e9a98209db7b87c8b4eac1fab72f2b071aff /program/js/app.js | |
parent | ee0da553c8e6d34453379fc8c6842bc453c28783 (diff) |
-small fix for Konqueror (#1484228)
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/program/js/app.js b/program/js/app.js index aabe96b25..808c58597 100644 --- a/program/js/app.js +++ b/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 |