diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2014-04-25 18:13:32 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2014-04-25 18:13:32 +0200 |
commit | 8dc87e62fbc13246d6f95219b4d9253f4fa9d385 (patch) | |
tree | 3835ea38cf48e563c74a8dacf91695fed30bfd7f /skins/classic/functions.js | |
parent | a54cff4c569f74f7ec1b2ab8379b7ad1820a8af9 (diff) |
Avoid popupmenus being closed when scrollbar is clicked (#1489832)
Diffstat (limited to 'skins/classic/functions.js')
-rw-r--r-- | skins/classic/functions.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/skins/classic/functions.js b/skins/classic/functions.js index 7445dba80..39dd96e3b 100644 --- a/skins/classic/functions.js +++ b/skins/classic/functions.js @@ -416,6 +416,7 @@ body_mouseup: function(evt, p) for (i in this.popups) { if (this.popups[i].obj.is(':visible') && target != rcube_find_object(i+'link') && !this.popups[i].toggle + && target != this.popups[i].obj.get(0) // check if scroll bar was clicked (#1489832) && (!this.popups[i].editable || !this.target_overlaps(target, this.popups[i].id)) && (!this.popups[i].sticky || !rcube_mouse_is_over(evt, rcube_find_object(this.popups[i].id))) && !$(target).is('.folder-selector-link') && !$(target).children('.folder-selector-link').length |