mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-05-30 23:06:11 +02:00
Fix printing mail for Firefox printing issue
This commit is contained in:
parent
8f30c7c25e
commit
80e7ca390c
@ -3181,7 +3181,9 @@ app.classes.mail = AppJS.extend(
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.egw.message('Printing....');
|
this.egw.message('Printing....');
|
||||||
this.egw.window.print();
|
var display = this;
|
||||||
|
// Make sure the print happens after the content is loaded. Seems Firefox can't handle timing for print command correctly
|
||||||
|
setTimeout(function(){display.egw.window.print();},1);
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user