|
12 | 12 |
|
13 | 13 | /** @preserve
|
14 | 14 | * jsPDF - PDF Document creation from JavaScript
|
15 |
| - * Version 1.2.61 Built on 2016-09-25T22:24:54.401Z |
16 |
| - * CommitID f1447de3fa |
| 15 | + * Version 1.2.61 Built on 2016-09-25T22:32:35.622Z |
| 16 | + * CommitID 33aab1469e |
17 | 17 | *
|
18 | 18 | * Copyright (c) 2010-2014 James Hall < [email protected]>, https://github.com/MrRio/jsPDF
|
19 | 19 | * 2010 Aaron Spike, https://github.com/acspike
|
|
2026 | 2026 | * pdfdoc.mymethod() // <- !!!!!!
|
2027 | 2027 | */
|
2028 | 2028 | jsPDF.API = { events: [] };
|
2029 |
| - jsPDF.version = "1.2.61 2016-09-25T22:24:54.401Z:jameshall"; |
| 2029 | + jsPDF.version = "1.2.61 2016-09-25T22:32:35.622Z:jameshall"; |
2030 | 2030 |
|
2031 | 2031 | if (typeof define === 'function' && define.amd) {
|
2032 | 2032 | define('jsPDF', function () {
|
@@ -13023,7 +13023,7 @@ Q\n";
|
13023 | 13023 | doc.close();
|
13024 | 13024 | } catch(ee) {
|
13025 | 13025 | log("createHTMLDocument write not supported, falling back to document.body.innerHTML");
|
13026 |
| - doc.body.innerHTML = html; // ie9 doesn't support writing to documentElement |
| 13026 | + doc.body.innerHTML = html; // ie9 doesnt support writing to documentElement |
13027 | 13027 | }
|
13028 | 13028 | }
|
13029 | 13029 |
|
@@ -13338,7 +13338,7 @@ Q\n";
|
13338 | 13338 | this.images = nodes.reduce(bind(this.findBackgroundImage, this), this.findImages(nodes));
|
13339 | 13339 | this.images.forEach(function(image, index) {
|
13340 | 13340 | image.promise.then(function() {
|
13341 |
| - log("Successfully loaded image #"+ (index+1), image); |
| 13341 | + log("Succesfully loaded image #"+ (index+1), image); |
13342 | 13342 | }, function(e) {
|
13343 | 13343 | log("Failed loading image #"+ (index+1), image, e);
|
13344 | 13344 | });
|
@@ -13855,7 +13855,7 @@ Q\n";
|
13855 | 13855 | var canvasBackground = new NodeContainer(this.renderer.isTransparent(parent.css('backgroundColor')) ? element.ownerDocument.body : element.ownerDocument.documentElement, null);
|
13856 | 13856 | renderer.rectangle(0, 0, renderer.width, renderer.height, canvasBackground.css('backgroundColor'));
|
13857 | 13857 | }
|
13858 |
| - parent.visible = parent.isElementVisible(); |
| 13858 | + parent.visibile = parent.isElementVisible(); |
13859 | 13859 | this.createPseudoHideStyles(element.ownerDocument);
|
13860 | 13860 | this.disableAnimations(element.ownerDocument);
|
13861 | 13861 | this.nodes = flatten([parent].concat(this.getChildren(parent)).filter(function(container) {
|
|
0 commit comments