File tree 3 files changed +17
-15
lines changed
3 files changed +17
-15
lines changed Original file line number Diff line number Diff line change 12
12
13
13
/** @preserve
14
14
* jsPDF - PDF Document creation from JavaScript
15
- * Version 1.2.61 Built on 2016-09-26T11:22:48.682Z
16
- * CommitID bd60b2f4b9
15
+ * Version 1.2.61 Built on 2016-09-28T10:02:07.788Z
16
+ * CommitID 925dfe8d18
17
17
*
18
18
* Copyright (c) 2010-2014 James Hall <james@parall.ax>, 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-26T11:22:48.682Z :jameshall";
2029
+ jsPDF.version = "1.2.61 2016-09-28T10:02:07.788Z :jameshall";
2030
2030
2031
2031
if (typeof define === 'function' && define.amd) {
2032
2032
define('jsPDF', function () {
@@ -7155,7 +7155,8 @@ Q\n";
7155
7155
}
7156
7156
}
7157
7157
// Only add the text if the text node is in the body element
7158
- if (cn.ownerDocument.body.contains(cn)) {
7158
+ // Add compatibility with IE11
7159
+ if (!!(cn.ownerDocument.body.compareDocumentPosition(cn) & 16)) {
7159
7160
renderer.addText(value, fragmentCSS);
7160
7161
}
7161
7162
} else if (typeof cn === "string") {
You can’t perform that action at this time.
0 commit comments