summaryrefslogtreecommitdiff
path: root/program/js
diff options
context:
space:
mode:
authorsvncommit <devs@roundcube.net>2006-12-28 15:43:10 +0000
committersvncommit <devs@roundcube.net>2006-12-28 15:43:10 +0000
commit068f6a4920bc36ab73105c6cafb05479c0673509 (patch)
treeaba102c6e439216d6289942fee954c7494b887b0 /program/js
parent0712a392dc6a1514a72c5766e8d511788e27a379 (diff)
Display draft messages in preview pane (closes #1484173).
Diffstat (limited to 'program/js')
-rw-r--r--program/js/app.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/program/js/app.js b/program/js/app.js
index 50c6b58cc..1f89bd71e 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -1091,13 +1091,13 @@ function rcube_webmail()
{
this.enable_command('show', 'reply', 'reply-all', 'forward', 'print', selected);
this.enable_command('delete', 'moveto', list.selection.length>0 ? true : false);
-
- // start timer for message preview (wait for double click)
- if (selected && this.env.contentframe)
- this.preview_timer = setTimeout(function(){ ref.msglist_get_preview(); }, this.dblclick_time + 10);
- else if (this.env.contentframe)
- this.show_messageframe(false);
}
+
+ // start timer for message preview (wait for double click)
+ if (selected && this.env.contentframe)
+ this.preview_timer = setTimeout(function(){ ref.msglist_get_preview(); }, this.dblclick_time + 10);
+ else if (this.env.contentframe)
+ this.show_messageframe(false);
};