Fix javascript error when window name (for window.open()) in IE8 contains a dot

pull/62/head
Aleksander Machniak 11 years ago
parent 4d1fe2d230
commit 6228e3784f

@ -857,7 +857,7 @@ function rcube_webmail()
// open attachment in frame if it's of a supported mimetype
if (command != 'download-attachment' && mimetype && this.env.mimetypes && $.inArray(mimetype, this.env.mimetypes) >= 0) {
var attachment_win = window.open(this.env.comm_path+'&_action=get&'+qstring+'&_frame=1', 'rcubemailattachment'+this.env.uid+props);
var attachment_win = window.open(this.env.comm_path+'&_action=get&'+qstring+'&_frame=1', this.html_identifier('rcubemailattachment'+this.env.uid+props));
if (attachment_win) {
setTimeout(function(){ attachment_win.focus(); }, 10);
break;

Loading…
Cancel
Save