Skip to content

Commit 8b72130

Browse files
author
Sathvik P
committed
Merge branch 'Villentrenmerth-master'
2 parents 6ccdbf1 + 3e9462c commit 8b72130

File tree

5 files changed

+41
-11
lines changed

5 files changed

+41
-11
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ You can submit the options object like:
3535
prepend: null,
3636
manuallyCopyFormValues: true,
3737
deferred: $.Deferred(),
38-
timeout: 250,
38+
timeout: 750,
3939
title: null,
4040
doctype: '<!doctype html>'
4141
});
@@ -93,9 +93,9 @@ Currently this plugin supports the following options:
9393
9494
####timeout
9595
96-
- Default: `250`
96+
- Default: `750`
9797
- Acceptable-Values: Time in Milliseconds for `setTimeout`
98-
- Function: To change the amount of time to wait for the content, etc to load before printing the element from the new window/iframe created
98+
- Function: To change the amount of max time to wait for the content, etc to load before printing the element from the new window/iframe created, as a fallback if the [`load` event](https://developer.mozilla.org/en-US/docs/Web/Events/load) for the new window/iframe has not fired yet
9999
100100
####title
101101

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.4.1",
4+
"version": "1.5.0",
55
"homepage": "https://doersguild.github.io/jQuery.print/",
66
"authors": [
77
"Sathvik P <[email protected]>"

demo/index.html

+23-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ <h3>Element 2</h3>
4747
Some other random text.
4848
</p>
4949
<button class="print-link no-print">
50-
Print this ($.print("#ele2")) and skip the button
50+
Print this ($.print("#ele2")) and skip the button (.no-print)
5151
</button>
5252
</div>
5353
<div id="ele3" class="a">
@@ -64,13 +64,34 @@ <h3 class='avoid-this'>Element 4</h3>
6464
<p>
6565
Some really random text.
6666
</p>
67+
<pre><code>
68+
$("#ele4").find('button').on('click', function() {
69+
//Print ele4 with custom options
70+
$("#ele4").print({
71+
//Use Global styles
72+
globalStyles : false,
73+
//Add link with attrbute media=print
74+
mediaPrint : false,
75+
//Custom stylesheet
76+
stylesheet : "http://fonts.googleapis.com/css?family=Inconsolata",
77+
//Print in a hidden iframe
78+
iframe : false,
79+
//Don't print this
80+
noPrintSelector : ".avoid-this",
81+
//Add this at top
82+
prepend : "Hello World!!!<br/>",
83+
//Add this on bottom
84+
append : "<br/>Buh Bye!"
85+
});
86+
});
87+
</code></pre>
6788
<button class="print-link avoid-this">
6889
Print this in a new window, without this button and the title
6990
</button>
7091
</div>
7192
<br/>
7293
<button class="print-link" onclick="jQuery.print()">
73-
Print page
94+
Print page - jQuery.print()
7495
</button>
7596
</div>
7697
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>

jQuery.print.js

+13-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* @license
2-
* jQuery.print, version 1.4.0
2+
* jQuery.print, version 1.5.0
33
* (c) Sathvik Ponangi, Doers' Guild
44
* Licence: CC-By (http://creativecommons.org/licenses/by/3.0/)
55
*--------------------------------------------------------------------------*/
@@ -30,7 +30,11 @@
3030
}
3131
wdoc.write(content);
3232
wdoc.close();
33-
setTimeout(function () {
33+
var printed = false;
34+
function callPrint() {
35+
if(printed) {
36+
return;
37+
}
3438
// Fix for IE : Allow it to render the iframe
3539
frameWindow.focus();
3640
try {
@@ -43,8 +47,13 @@
4347
frameWindow.print();
4448
}
4549
frameWindow.close();
50+
printed = true;
4651
def.resolve();
47-
}, options.timeout);
52+
}
53+
// Print once the frame window loads - seems to work for the new-window option but unreliable for the iframe
54+
$(frameWindow).on("load", callPrint);
55+
// Fallback to printing directly if the frame doesn't fire the load event for whatever reason
56+
setTimeout(callPrint, options.timeout);
4857
} catch (err) {
4958
def.reject(err);
5059
}
@@ -151,7 +160,7 @@
151160
prepend: null,
152161
manuallyCopyFormValues: true,
153162
deferred: $.Deferred(),
154-
timeout: 250,
163+
timeout: 750,
155164
title: null,
156165
doctype: '<!doctype html>'
157166
};

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.4.1",
4+
"version": "1.5.0",
55
"homepage": "https://doersguild.github.io/jQuery.print/",
66
"authors": [
77
"Sathvik P <[email protected]>"

0 commit comments

Comments
 (0)