mirror of
https://github.com/wahyd4/jQuery.print.git
synced 2026-08-20 18:28:07 +10:00
Fixed issue when printing in IE11
This commit is contained in:
+5
-1
@@ -128,7 +128,11 @@
|
||||
setTimeout(function() {
|
||||
// Fix for IE : Allow it to render the iframe
|
||||
w.focus();
|
||||
w.print();
|
||||
try {
|
||||
w.document.execCommand('print', false, null);
|
||||
} catch(e) {
|
||||
w.print();
|
||||
}
|
||||
setTimeout(function() {
|
||||
// Fix for IE
|
||||
if (iframeCount === 0) {
|
||||
|
||||
Reference in New Issue
Block a user