We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62edb79 commit d7f9019Copy full SHA for d7f9019
jQuery.print.js
@@ -1,5 +1,5 @@
1
/* @license
2
- * jQuery.print, version 1.3.0
+ * jQuery.print, version 1.3.1
3
* (c) Sathvik Ponangi, Doers' Guild
4
* Licence: CC-By (http://creativecommons.org/licenses/by/3.0/)
5
*--------------------------------------------------------------------------*/
@@ -190,9 +190,9 @@
190
}
191
}, 100);
192
})
193
- .fail(function () {
+ .fail(function (err) {
194
// Use the pop-up method if iframe fails for some reason
195
- console.error("Failed to print from iframe");
+ console.error("Failed to print from iframe", err);
196
printContentInNewWindow(content);
197
198
.always(function () {
0 commit comments