Fixed issue when printing in IE11

This commit is contained in:
martin.duveborg
2014-09-22 10:50:23 +02:00
parent 1e547fbc73
commit 0d4afbda06
+5 -1
View File
@@ -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) {