Skip to content

Commit 550ad8b

Browse files
authored
2.1.1
1 parent 87aa7aa commit 550ad8b

File tree

101 files changed

+392
-120
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+392
-120
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# jsPDF
1+
# ![jsPDF](https://parall.ax/parallax-2016/img/svg/jspdf-logo.svg)
22

33
[![Build Status](https://saucelabs.com/buildstatus/jspdf)](https://saucelabs.com/beta/builds/526e7fda50bd4f97a854bf10f280305d)
44
[![Code Climate](https://codeclimate.com/repos/57f943855cdc43705e00592f/badges/2665cddeba042dc5191f/gpa.svg)](https://codeclimate.com/repos/57f943855cdc43705e00592f/feed)
@@ -29,7 +29,7 @@ yarn add jspdf
2929
Alternatively, load it from a CDN:
3030

3131
```html
32-
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.1.0/jspdf.umd.min.js"></script>
32+
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.1.1/jspdf.umd.min.js"></script>
3333
```
3434

3535
Or always get latest version via [unpkg](https://unpkg.com/#/)

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jspdf",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"homepage": "https://github.com/mrrio/jspdf",
55
"description": "PDF Document creation from JavaScript",
66
"main": [

dist/jspdf.es.js

+13-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/** @license
22
*
33
* jsPDF - PDF Document creation from JavaScript
4-
* Version 2.1.0 Built on 2020-08-25T16:02:38.141Z
4+
* Version 2.1.1 Built on 2020-09-07T12:58:19.950Z
55
* CommitID 00000000
66
*
77
* Copyright (c) 2010-2020 James Hall <[email protected]>, https://github.com/MrRio/jsPDF
@@ -6385,7 +6385,7 @@ jsPDF.API = {
63856385
* @type {string}
63866386
* @memberof jsPDF#
63876387
*/
6388-
jsPDF.version = "2.1.0";
6388+
jsPDF.version = "2.1.1";
63896389

63906390
/* global jsPDF */
63916391

@@ -19066,15 +19066,24 @@ function Deflater(options) {
1906619066
* @function
1906719067
* @param {HTMLElement|string} source The source HTMLElement or a string containing HTML.
1906819068
* @param {Object} [options] Collection of settings
19069-
* @param {string} [options.callback] The mandatory callback-function gets as first parameter the current jsPDF instance
19069+
* @param {function} [options.callback] The mandatory callback-function gets as first parameter the current jsPDF instance
19070+
* @param {number|array} [options.margin] Array of margins [left, bottom, right, top]
19071+
* @param {string} [options.filename] name of the file
19072+
* @param {HTMLOptionImage} [options.image] image settings when converting HTML to image
19073+
* @param {Html2CanvasOptions} [options.html2canvas] html2canvas options
19074+
* @param {jsPDF} [options.jsPDF] jsPDF instance
19075+
* @param {number} [options.x] x position on the PDF document
19076+
* @param {number} [options.y] y position on the PDF document
1907019077
*
1907119078
* @example
1907219079
* var doc = new jsPDF();
1907319080
*
1907419081
* doc.html(document.body, {
1907519082
* callback: function (doc) {
1907619083
* doc.save();
19077-
* }
19084+
* },
19085+
* x: 10,
19086+
* y: 10
1907819087
* });
1907919088
*/
1908019089
jsPDFAPI.html = function(src, options) {

dist/jspdf.es.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jspdf.es.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jspdf.es.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jspdf.node.js

+13-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/** @license
22
*
33
* jsPDF - PDF Document creation from JavaScript
4-
* Version 2.1.0 Built on 2020-08-25T16:02:38.141Z
4+
* Version 2.1.1 Built on 2020-09-07T12:58:19.950Z
55
* CommitID 00000000
66
*
77
* Copyright (c) 2010-2020 James Hall <[email protected]>, https://github.com/MrRio/jsPDF
@@ -6194,7 +6194,7 @@ jsPDF.API = {
61946194
* @type {string}
61956195
* @memberof jsPDF#
61966196
*/
6197-
jsPDF.version = "2.1.0";
6197+
jsPDF.version = "2.1.1";
61986198

61996199
/* global jsPDF */
62006200

@@ -18894,15 +18894,24 @@ function Deflater(options) {
1889418894
* @function
1889518895
* @param {HTMLElement|string} source The source HTMLElement or a string containing HTML.
1889618896
* @param {Object} [options] Collection of settings
18897-
* @param {string} [options.callback] The mandatory callback-function gets as first parameter the current jsPDF instance
18897+
* @param {function} [options.callback] The mandatory callback-function gets as first parameter the current jsPDF instance
18898+
* @param {number|array} [options.margin] Array of margins [left, bottom, right, top]
18899+
* @param {string} [options.filename] name of the file
18900+
* @param {HTMLOptionImage} [options.image] image settings when converting HTML to image
18901+
* @param {Html2CanvasOptions} [options.html2canvas] html2canvas options
18902+
* @param {jsPDF} [options.jsPDF] jsPDF instance
18903+
* @param {number} [options.x] x position on the PDF document
18904+
* @param {number} [options.y] y position on the PDF document
1889818905
*
1889918906
* @example
1890018907
* var doc = new jsPDF();
1890118908
*
1890218909
* doc.html(document.body, {
1890318910
* callback: function (doc) {
1890418911
* doc.save();
18905-
* }
18912+
* },
18913+
* x: 10,
18914+
* y: 10
1890618915
* });
1890718916
*/
1890818917
jsPDFAPI.html = function(src, options) {

dist/jspdf.node.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jspdf.node.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jspdf.node.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jspdf.umd.js

+13-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/** @license
22
*
33
* jsPDF - PDF Document creation from JavaScript
4-
* Version 2.1.0 Built on 2020-08-25T16:02:38.139Z
4+
* Version 2.1.1 Built on 2020-09-07T12:58:19.948Z
55
* CommitID 00000000
66
*
77
* Copyright (c) 2010-2020 James Hall <[email protected]>, https://github.com/MrRio/jsPDF
@@ -6391,7 +6391,7 @@
63916391
* @type {string}
63926392
* @memberof jsPDF#
63936393
*/
6394-
jsPDF.version = "2.1.0";
6394+
jsPDF.version = "2.1.1";
63956395

63966396
/* global jsPDF */
63976397

@@ -19108,15 +19108,24 @@
1910819108
* @function
1910919109
* @param {HTMLElement|string} source The source HTMLElement or a string containing HTML.
1911019110
* @param {Object} [options] Collection of settings
19111-
* @param {string} [options.callback] The mandatory callback-function gets as first parameter the current jsPDF instance
19111+
* @param {function} [options.callback] The mandatory callback-function gets as first parameter the current jsPDF instance
19112+
* @param {number|array} [options.margin] Array of margins [left, bottom, right, top]
19113+
* @param {string} [options.filename] name of the file
19114+
* @param {HTMLOptionImage} [options.image] image settings when converting HTML to image
19115+
* @param {Html2CanvasOptions} [options.html2canvas] html2canvas options
19116+
* @param {jsPDF} [options.jsPDF] jsPDF instance
19117+
* @param {number} [options.x] x position on the PDF document
19118+
* @param {number} [options.y] y position on the PDF document
1911219119
*
1911319120
* @example
1911419121
* var doc = new jsPDF();
1911519122
*
1911619123
* doc.html(document.body, {
1911719124
* callback: function (doc) {
1911819125
* doc.save();
19119-
* }
19126+
* },
19127+
* x: 10,
19128+
* y: 10
1912019129
* });
1912119130
*/
1912219131
jsPDFAPI.html = function(src, options) {

dist/jspdf.umd.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jspdf.umd.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jspdf.umd.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/polyfills.es.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/polyfills.umd.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/GState.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ <h5>Type:</h5>
458458
<br class="clear">
459459

460460
<footer>
461-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Tue Aug 25 2020 18:02:54 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
461+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Mon Sep 07 2020 14:58:37 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
462462
</footer>
463463

464464
<script>prettyPrint();</script>

docs/Matrix.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1753,7 +1753,7 @@ <h4 class="name" id="toString"><span class="type-signature"></span>toString<span
17531753
<br class="clear">
17541754

17551755
<footer>
1756-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Tue Aug 25 2020 18:02:54 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
1756+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Mon Sep 07 2020 14:58:37 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
17571757
</footer>
17581758

17591759
<script>prettyPrint();</script>

docs/global.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -770,7 +770,7 @@ <h5>Type:</h5>
770770
<br class="clear">
771771

772772
<footer>
773-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Tue Aug 25 2020 18:02:54 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
773+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Mon Sep 07 2020 14:58:37 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
774774
</footer>
775775

776776
<script>prettyPrint();</script>

docs/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ <h2>Install</h2>
7676
yarn add jspdf
7777
</code></pre>
7878
<p>Alternatively, load it from a CDN:</p>
79-
<pre class="prettyprint source lang-html"><code>&lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.1.0/jspdf.umd.min.js&quot;>&lt;/script>
79+
<pre class="prettyprint source lang-html"><code>&lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.1.1/jspdf.umd.min.js&quot;>&lt;/script>
8080
</code></pre>
8181
<p>Or always get latest version via <a href="https://unpkg.com/#/">unpkg</a></p>
8282
<pre class="prettyprint source lang-html"><code>&lt;script src=&quot;https://unpkg.com/jspdf@latest/dist/jspdf.umd.min.js&quot;>&lt;/script>
@@ -291,7 +291,7 @@ <h2>License (MIT)</h2>
291291
<br class="clear">
292292

293293
<footer>
294-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Tue Aug 25 2020 18:02:54 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
294+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Mon Sep 07 2020 14:58:37 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
295295
</footer>
296296

297297
<script>prettyPrint();</script>

docs/jsPDF-API.GState.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ <h5>Parameters:</h5>
219219
<br class="clear">
220220

221221
<footer>
222-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Tue Aug 25 2020 18:02:54 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
222+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Mon Sep 07 2020 14:58:37 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
223223
</footer>
224224

225225
<script>prettyPrint();</script>

docs/jsPDF-API.ShadingPattern.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ <h3 class="subsection-title">Extends</h3>
380380
<br class="clear">
381381

382382
<footer>
383-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Tue Aug 25 2020 18:02:54 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
383+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Mon Sep 07 2020 14:58:37 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
384384
</footer>
385385

386386
<script>prettyPrint();</script>

docs/jsPDF-API.TilingPattern.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ <h3 class="subsection-title">Extends</h3>
378378
<br class="clear">
379379

380380
<footer>
381-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Tue Aug 25 2020 18:02:54 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
381+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Mon Sep 07 2020 14:58:37 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
382382
</footer>
383383

384384
<script>prettyPrint();</script>

docs/jsPDF.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -14851,7 +14851,7 @@ <h4 class="name" id="~RenderTarget"><span class="type-signature">(inner) </span>
1485114851
<br class="clear">
1485214852

1485314853
<footer>
14854-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Tue Aug 25 2020 18:02:54 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
14854+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Mon Sep 07 2020 14:58:37 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
1485514855
</footer>
1485614856

1485714857
<script>prettyPrint();</script>

docs/jspdf.js.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -5961,7 +5961,7 @@ <h1 class="page-title">jspdf.js</h1>
59615961
<br class="clear">
59625962

59635963
<footer>
5964-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Tue Aug 25 2020 18:02:54 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
5964+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Mon Sep 07 2020 14:58:37 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
59655965
</footer>
59665966

59675967
<script>prettyPrint();</script>

docs/libs_BMPDecoder.js.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ <h1 class="page-title">libs/BMPDecoder.js</h1>
335335
<br class="clear">
336336

337337
<footer>
338-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Tue Aug 25 2020 18:02:54 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
338+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Mon Sep 07 2020 14:58:37 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
339339
</footer>
340340

341341
<script>prettyPrint();</script>

docs/libs_Blob.js.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ <h1 class="page-title">libs/Blob.js</h1>
542542
<br class="clear">
543543

544544
<footer>
545-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Tue Aug 25 2020 18:02:54 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
545+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Mon Sep 07 2020 14:58:37 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
546546
</footer>
547547

548548
<script>prettyPrint();</script>

docs/libs_WebPDecoder.js.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -5508,7 +5508,7 @@ <h1 class="page-title">libs/WebPDecoder.js</h1>
55085508
<br class="clear">
55095509

55105510
<footer>
5511-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Tue Aug 25 2020 18:02:54 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
5511+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Mon Sep 07 2020 14:58:37 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
55125512
</footer>
55135513

55145514
<script>prettyPrint();</script>

docs/libs_bidiEngine.js.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2746,7 +2746,7 @@ <h1 class="page-title">libs/bidiEngine.js</h1>
27462746
<br class="clear">
27472747

27482748
<footer>
2749-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Tue Aug 25 2020 18:02:54 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
2749+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Mon Sep 07 2020 14:58:37 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
27502750
</footer>
27512751

27522752
<script>prettyPrint();</script>

docs/libs_rgbcolor.js.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ <h1 class="page-title">libs/rgbcolor.js</h1>
295295
<br class="clear">
296296

297297
<footer>
298-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Tue Aug 25 2020 18:02:54 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
298+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Mon Sep 07 2020 14:58:37 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
299299
</footer>
300300

301301
<script>prettyPrint();</script>

docs/libs_zlib.js.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1072,7 +1072,7 @@ <h1 class="page-title">libs/zlib.js</h1>
10721072
<br class="clear">
10731073

10741074
<footer>
1075-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Tue Aug 25 2020 18:02:54 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
1075+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Mon Sep 07 2020 14:58:37 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
10761076
</footer>
10771077

10781078
<script>prettyPrint();</script>

docs/module-AcroForm-AcroFormButton.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1841,7 +1841,7 @@ <h5>Type:</h5>
18411841
<br class="clear">
18421842

18431843
<footer>
1844-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Tue Aug 25 2020 18:02:54 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
1844+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Mon Sep 07 2020 14:58:37 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
18451845
</footer>
18461846

18471847
<script>prettyPrint();</script>

docs/module-AcroForm-AcroFormCheckBox.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2318,7 +2318,7 @@ <h5>Type:</h5>
23182318
<br class="clear">
23192319

23202320
<footer>
2321-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Tue Aug 25 2020 18:02:54 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
2321+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Mon Sep 07 2020 14:58:37 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
23222322
</footer>
23232323

23242324
<script>prettyPrint();</script>

docs/module-AcroForm-AcroFormChoiceField.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1841,7 +1841,7 @@ <h5>Type:</h5>
18411841
<br class="clear">
18421842

18431843
<footer>
1844-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Tue Aug 25 2020 18:02:54 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
1844+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Mon Sep 07 2020 14:58:37 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
18451845
</footer>
18461846

18471847
<script>prettyPrint();</script>

docs/module-AcroForm-AcroFormComboBox.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2975,7 +2975,7 @@ <h5>Parameters:</h5>
29752975
<br class="clear">
29762976

29772977
<footer>
2978-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Tue Aug 25 2020 18:02:54 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
2978+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Mon Sep 07 2020 14:58:37 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
29792979
</footer>
29802980

29812981
<script>prettyPrint();</script>

docs/module-AcroForm-AcroFormEditBox.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2977,7 +2977,7 @@ <h5>Parameters:</h5>
29772977
<br class="clear">
29782978

29792979
<footer>
2980-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Tue Aug 25 2020 18:02:54 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
2980+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Mon Sep 07 2020 14:58:37 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
29812981
</footer>
29822982

29832983
<script>prettyPrint();</script>

docs/module-AcroForm-AcroFormField.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ <h4 class="name" id="AcroFormField"><span class="type-signature"></span>new Acro
184184
<br class="clear">
185185

186186
<footer>
187-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Tue Aug 25 2020 18:02:54 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
187+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.4</a> on Mon Sep 07 2020 14:58:37 GMT+0200 (Central European Summer Time) using the <a href="https://github.com/clenemt/docdash">docdash</a> theme.
188188
</footer>
189189

190190
<script>prettyPrint();</script>

0 commit comments

Comments
 (0)