diff options
author | thomascube <thomas@roundcube.net> | 2008-08-22 10:37:48 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-08-22 10:37:48 +0000 |
commit | 26f5b0935ef4d8bc01e2b8581f7d7ed3c4508fc2 (patch) | |
tree | 2c5c1388631779ec04234200532aed74bc1b5775 /program/js/app.js | |
parent | 0ced2b9ac03e425750a76dea3ed59156b2709b4c (diff) |
Fix keyboard control of the list widgets and prevent Safari from scrolling (#1485279)
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/js/app.js b/program/js/app.js index df2c8399a..b5073daed 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -1189,7 +1189,7 @@ function rcube_webmail() // start timer for message preview (wait for double click) if (selected && this.env.contentframe && !list.multi_selecting) - this.preview_timer = window.setTimeout(function(){ ref.msglist_get_preview(); }, this.dblclick_time + 10); + this.preview_timer = window.setTimeout(function(){ ref.msglist_get_preview(); }, 200); else if (this.env.contentframe) this.show_contentframe(false); }; @@ -2460,7 +2460,7 @@ function rcube_webmail() var id, frame, ref = this; if (id = list.get_single_selection()) - this.preview_timer = window.setTimeout(function(){ ref.load_contact(id, 'show'); }, this.dblclick_time + 10); + this.preview_timer = window.setTimeout(function(){ ref.load_contact(id, 'show'); }, 200); else if (this.env.contentframe) this.show_contentframe(false); |