Skip to content

Commit 50e028d

Browse files
committed
Don't fix 3rd party libs
1 parent 33aab14 commit 50e028d

File tree

8 files changed

+20
-20
lines changed

8 files changed

+20
-20
lines changed

dist/jspdf.debug.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212

1313
/** @preserve
1414
* 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
1717
*
1818
* Copyright (c) 2010-2014 James Hall <[email protected]>, https://github.com/MrRio/jsPDF
1919
* 2010 Aaron Spike, https://github.com/acspike
@@ -2026,7 +2026,7 @@
20262026
* pdfdoc.mymethod() // <- !!!!!!
20272027
*/
20282028
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";
20302030

20312031
if (typeof define === 'function' && define.amd) {
20322032
define('jsPDF', function () {
@@ -13023,7 +13023,7 @@ Q\n";
1302313023
doc.close();
1302413024
} catch(ee) {
1302513025
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
1302713027
}
1302813028
}
1302913029

@@ -13338,7 +13338,7 @@ Q\n";
1333813338
this.images = nodes.reduce(bind(this.findBackgroundImage, this), this.findImages(nodes));
1333913339
this.images.forEach(function(image, index) {
1334013340
image.promise.then(function() {
13341-
log("Successfully loaded image #"+ (index+1), image);
13341+
log("Succesfully loaded image #"+ (index+1), image);
1334213342
}, function(e) {
1334313343
log("Failed loading image #"+ (index+1), image, e);
1334413344
});
@@ -13855,7 +13855,7 @@ Q\n";
1385513855
var canvasBackground = new NodeContainer(this.renderer.isTransparent(parent.css('backgroundColor')) ? element.ownerDocument.body : element.ownerDocument.documentElement, null);
1385613856
renderer.rectangle(0, 0, renderer.width, renderer.height, canvasBackground.css('backgroundColor'));
1385713857
}
13858-
parent.visible = parent.isElementVisible();
13858+
parent.visibile = parent.isElementVisible();
1385913859
this.createPseudoHideStyles(element.ownerDocument);
1386013860
this.disableAnimations(element.ownerDocument);
1386113861
this.nodes = flatten([parent].concat(this.getChildren(parent)).filter(function(container) {

dist/jspdf.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libs/html2canvas/dist/html2canvas.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -759,7 +759,7 @@ function documentFromHTML(src) {
759759
doc.close();
760760
} catch(ee) {
761761
log("createHTMLDocument write not supported, falling back to document.body.innerHTML");
762-
doc.body.innerHTML = html; // ie9 doesn't support writing to documentElement
762+
doc.body.innerHTML = html; // ie9 doesnt support writing to documentElement
763763
}
764764
}
765765

@@ -1074,7 +1074,7 @@ ImageLoader.prototype.fetch = function(nodes) {
10741074
this.images = nodes.reduce(bind(this.findBackgroundImage, this), this.findImages(nodes));
10751075
this.images.forEach(function(image, index) {
10761076
image.promise.then(function() {
1077-
log("Successfully loaded image #"+ (index+1), image);
1077+
log("Succesfully loaded image #"+ (index+1), image);
10781078
}, function(e) {
10791079
log("Failed loading image #"+ (index+1), image, e);
10801080
});
@@ -1591,7 +1591,7 @@ function NodeParser(element, renderer, support, imageLoader, options) {
15911591
var canvasBackground = new NodeContainer(this.renderer.isTransparent(parent.css('backgroundColor')) ? element.ownerDocument.body : element.ownerDocument.documentElement, null);
15921592
renderer.rectangle(0, 0, renderer.width, renderer.height, canvasBackground.css('backgroundColor'));
15931593
}
1594-
parent.visible = parent.isElementVisible();
1594+
parent.visibile = parent.isElementVisible();
15951595
this.createPseudoHideStyles(element.ownerDocument);
15961596
this.disableAnimations(element.ownerDocument);
15971597
this.nodes = flatten([parent].concat(this.getChildren(parent)).filter(function(container) {

libs/html2canvas/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Skip lint and tests and simply build from source:
6464

6565
The library has two sets of tests. The first set is a number of qunit tests that check that different values parsed by browsers are correctly converted in html2canvas. To run these tests with grunt you'll need [phantomjs](http://phantomjs.org/).
6666

67-
The other set of tests run Firefox, Chrome and Internet Explorer with [webdriver](https://github.com/niklasvh/webdriver.js). The selenium standalone server (runs on Java) is required for these tests and can be downloaded from [here](http://code.google.com/p/selenium/downloads/list). They capture an actual screenshot from the test pages and compare the image to the screenshot created by html2canvas and calculate the percentage differences. These tests generally aren't expected to provide 100% matches, but while committing changes, these should generally not go decrease from the baseline values.
67+
The other set of tests run Firefox, Chrome and Internet Explorer with [webdriver](https://github.com/niklasvh/webdriver.js). The selenium standalone server (runs on Java) is required for these tests and can be downloaded from [here](http://code.google.com/p/selenium/downloads/list). They capture an actual screenshot from the test pages and compare the image to the screenshot created by html2canvas and calculate the percentage differences. These tests generally aren't expected to provide 100% matches, but while commiting changes, these should generally not go decrease from the baseline values.
6868

6969
Start by downloading the dependencies:
7070

libs/html2canvas/src/core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ function documentFromHTML(src) {
191191
doc.close();
192192
} catch(ee) {
193193
log("createHTMLDocument write not supported, falling back to document.body.innerHTML");
194-
doc.body.innerHTML = html; // ie9 doesn't support writing to documentElement
194+
doc.body.innerHTML = html; // ie9 doesnt support writing to documentElement
195195
}
196196
}
197197

libs/html2canvas/src/imageloader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ ImageLoader.prototype.fetch = function(nodes) {
116116
this.images = nodes.reduce(bind(this.findBackgroundImage, this), this.findImages(nodes));
117117
this.images.forEach(function(image, index) {
118118
image.promise.then(function() {
119-
log("Successfully loaded image #"+ (index+1), image);
119+
log("Succesfully loaded image #"+ (index+1), image);
120120
}, function(e) {
121121
log("Failed loading image #"+ (index+1), image, e);
122122
});

libs/html2canvas/src/nodeparser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function NodeParser(element, renderer, support, imageLoader, options) {
1212
var canvasBackground = new NodeContainer(this.renderer.isTransparent(parent.css('backgroundColor')) ? element.ownerDocument.body : element.ownerDocument.documentElement, null);
1313
renderer.rectangle(0, 0, renderer.width, renderer.height, canvasBackground.css('backgroundColor'));
1414
}
15-
parent.visible = parent.isElementVisible();
15+
parent.visibile = parent.isElementVisible();
1616
this.createPseudoHideStyles(element.ownerDocument);
1717
this.disableAnimations(element.ownerDocument);
1818
this.nodes = flatten([parent].concat(this.getChildren(parent)).filter(function(container) {

test/libs/qunit.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ var QUnit = {
299299
},
300300

301301
/**
302-
* Specify the number of expected assertions to guarantee that failed test (no assertions are run at all) don't slip through.
302+
* Specify the number of expected assertions to gurantee that failed test (no assertions are run at all) don't slip through.
303303
*/
304304
expect: function(asserts) {
305305
config.current.expected = asserts;
@@ -330,7 +330,7 @@ var QUnit = {
330330
* Checks that the first two arguments are equal, with an optional message.
331331
* Prints out both actual and expected values.
332332
*
333-
* Preferred to ok( actual == expected, message )
333+
* Prefered to ok( actual == expected, message )
334334
*
335335
* @example equal( format("Received {0} bytes.", 2), "Received 2 bytes." );
336336
*
@@ -1171,7 +1171,7 @@ QUnit.equiv = function () {
11711171
loop = false;
11721172
for (j = 0; j < parents.length; j++) {
11731173
if (parents[j] === a[i]) {
1174-
loop = true;// don't rewalk array
1174+
loop = true;// dont rewalk array
11751175
}
11761176
}
11771177
if (!loop && !innerEquiv(a[i], b[i])) {
@@ -1185,7 +1185,7 @@ QUnit.equiv = function () {
11851185

11861186
"object" : function(b, a) {
11871187
var i, j, loop;
1188-
var eq = true; // unless we can prove it
1188+
var eq = true; // unless we can proove it
11891189
var aProperties = [], bProperties = []; // collection of
11901190
// strings
11911191

0 commit comments

Comments
 (0)