Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bookmarklet.js « bookmarklet « src - github.com/CSS-Tricks/The-Printliminator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 04a02e9c1b615d01cc1323634e9e2fca8e08248c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
Don't wrap this code in a self-executing anonymous function, i.e.
  (function(){ CODE })();
because uglify changes it into
  !function(){ CODE }();
and Firefox does not work with that format!
*/
// uncompressed bookmarklet code
function loadScript(url, callback) {
	var script = document.createElement('script'),
		head = document.getElementsByTagName('head')[0],
		done = false;
	script.type = 'text/javascript';
	script.src = url;
	script.onload = script.onreadystatechange = function() {
		if ( !done && ( !this.readyState || this.readyState == 'loaded' || this.readyState == 'complete' ) ) {
			done = true;
			callback();
		}
	};
	head.appendChild(script);
}
// dev = src/printliminator.js
// production = //css-tricks.github.io/The-Printliminator/printliminator.min.js
loadScript('{printliminator}', function() {
	thePrintliminator.init();
});