mirror of
https://github.com/wahyd4/jQuery.print.git
synced 2026-08-09 04:46:31 +10:00
Merge pull request #10 from duveborg/master
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