Skip to content

Commit 69c4b39

Browse files
author
Sathvik P
committed
Merge branch 'sesubash-master'
2 parents 8bc6de2 + 66ca777 commit 69c4b39

File tree

5 files changed

+15
-9
lines changed

5 files changed

+15
-9
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Currently this plugin supports the following options:
8989
9090
- Default: `$.Deferred()`
9191
- Acceptable-Values: Any valid `jQuery.Deferred` object
92-
- Function: A jQuery.Deferred object that is resolved once the print function is called
92+
- Function: A jQuery.Deferred object that is resolved once the print function is called. Can be used [to setup callbacks - see wiki](https://github.com/DoersGuild/jQuery.print/wiki/Using-the-deferred-option-to-set-up-a-callback-after-printing)
9393
9494
####timeout
9595

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jQuery.print",
33
"main": "jQuery.print.js",
4-
"version": "1.5.0",
4+
"version": "1.5.1",
55
"homepage": "https://doersguild.github.io/jQuery.print/",
66
"authors": [
77
"Sathvik P <[email protected]>"

demo/index.html

+8-4
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,9 @@ <h3 class='avoid-this'>Element 4</h3>
8181
//Add this at top
8282
prepend : "Hello World!!!<br/>",
8383
//Add this on bottom
84-
append : "<br/>Buh Bye!"
84+
append : "<br/>Buh Bye!",
85+
//Log to console when printing is done via a deffered callback
86+
deferred: $.Deferred().done(function() { console.log('Printing done', arguments); })
8587
});
8688
});
8789
</code></pre>
@@ -94,14 +96,14 @@ <h3 class='avoid-this'>Element 4</h3>
9496
Print page - jQuery.print()
9597
</button>
9698
</div>
97-
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
99+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
98100
<script>
99101
window.jQuery || document.write('<script src="../bower_components/jquery/dist/jquery.min.js"><\/script>')
100102
</script>
101103
<script src="../jQuery.print.js"></script>
102104
<script type='text/javascript'>
103105
//<![CDATA[
104-
$(function() {
106+
jQuery(function($) { 'use strict';
105107
$("#ele2").find('.print-link').on('click', function() {
106108
//Print ele2 with default options
107109
$.print("#ele2");
@@ -122,7 +124,9 @@ <h3 class='avoid-this'>Element 4</h3>
122124
//Add this at top
123125
prepend : "Hello World!!!<br/>",
124126
//Add this on bottom
125-
append : "<br/>Buh Bye!"
127+
append : "<br/>Buh Bye!",
128+
//Log to console when printing is done via a deffered callback
129+
deferred: $.Deferred().done(function() { console.log('Printing done', arguments); })
126130
});
127131
});
128132
// Fork https://github.com/sathvikp/jQuery.print for the full list of options

jQuery.print.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* @license
2-
* jQuery.print, version 1.5.0
2+
* jQuery.print, version 1.5.1
33
* (c) Sathvik Ponangi, Doers' Guild
44
* Licence: CC-By (http://creativecommons.org/licenses/by/3.0/)
55
*--------------------------------------------------------------------------*/
@@ -43,6 +43,8 @@
4343
// document.execCommand returns false if it failed -http://stackoverflow.com/a/21336448/937891
4444
frameWindow.print();
4545
}
46+
// focus body as it is losing focus in iPad and content not getting printed
47+
$('body').focus();
4648
} catch (e) {
4749
frameWindow.print();
4850
}
@@ -83,7 +85,7 @@
8385
// Destroy the iframe if created here
8486
$iframe.remove();
8587
}
86-
}, 100);
88+
}, 1000);
8789
})
8890
.fail(function (err) {
8991
// Use the pop-up method if iframe fails for some reason

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jQuery.print",
33
"filename": "jQuery.print.min.js",
4-
"version": "1.5.0",
4+
"version": "1.5.1",
55
"homepage": "https://doersguild.github.io/jQuery.print/",
66
"authors": [
77
"Sathvik P <[email protected]>"

0 commit comments

Comments
 (0)