mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-27 02:14:45 +01:00
* Mail: Fix issue download an attachment from mail preview, crashes Chrome
This commit is contained in:
parent
f8d2aa0364
commit
2741ebc959
@ -302,6 +302,12 @@ var et2_split = et2_DOMWidget.extend([et2_IResizeable,et2_IPrint],
|
|||||||
|
|
||||||
// Ok, update children
|
// Ok, update children
|
||||||
self.iterateOver(function(widget) {
|
self.iterateOver(function(widget) {
|
||||||
|
// Extra resize would cause stalling chrome
|
||||||
|
// as resize might confilict with bottom download bar
|
||||||
|
// in chrome which does a window resize, so better to not
|
||||||
|
// trigger second resize and leave that to an application
|
||||||
|
// if it is neccessary.
|
||||||
|
|
||||||
// Above forcing is not enough for Firefox, defer
|
// Above forcing is not enough for Firefox, defer
|
||||||
window.setTimeout(jQuery.proxy(function() {this.resize();},widget),200);
|
window.setTimeout(jQuery.proxy(function() {this.resize();},widget),200);
|
||||||
},self,et2_IResizeable);
|
},self,et2_IResizeable);
|
||||||
|
Loading…
Reference in New Issue
Block a user