Skip to content

Commit 3aeff5f

Browse files
authored
Merge pull request #848 from MrRio/tidy-up
[WIP] Tidy up ready for release
2 parents a4de02e + 29de66f commit 3aeff5f

File tree

6 files changed

+22
-9
lines changed

6 files changed

+22
-9
lines changed

dist/jspdf.debug.js

Lines changed: 3 additions & 3 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-25T13:20:45.594Z
16-
* CommitID 76c004c36d
15+
* Version 1.2.61 Built on 2016-09-25T16:41:26.682Z
16+
* CommitID 1f643ba4c4
1717
*
1818
* Copyright (c) 2010-2014 James Hall <[email protected]>, https://github.com/MrRio/jsPDF
1919
* 2010 Aaron Spike, https://github.com/acspike
@@ -2028,7 +2028,7 @@
20282028
* pdfdoc.mymethod() // <- !!!!!!
20292029
*/
20302030
jsPDF.API = { events: [] };
2031-
jsPDF.version = "1.2.61 2016-09-25T13:20:45.594Z:jameshall";
2031+
jsPDF.version = "1.2.61 2016-09-25T16:41:26.682Z:jameshall";
20322032

20332033
if (typeof define === 'function' && define.amd) {
20342034
define('jsPDF', function () {

dist/jspdf.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/js/autoprint.js

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

examples/js/editor.js

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

examples/js/font-size.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ doc.setFontSize(22);
33
doc.text(20, 20, 'This is a title');
44

55
doc.setFontSize(16);
6-
doc.text(20, 30, 'This is some normal sized text underneath.');
6+
doc.text(20, 30, 'This is some normal sized text underneath.');

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,12 +142,12 @@ <h2>License</h2>
142142
<footer>&copy; 2016 James Hall - <a href="https://parall.ax/pages/privacy-policy">Privacy Policy</a></footer>
143143

144144
<!-- Scripts down here -->
145-
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
145+
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
146146
<script src="http://html2canvas.hertzen.com/build/html2canvas.js"></script>
147147

148148
<!-- Code editor -->
149149

150-
<script src="https://cdn.jsdelivr.net/ace/1.1.01/noconflict/ace.js" type="text/javascript" charset="utf-8"></script>
150+
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.2.5/ace.js" type="text/javascript" charset="utf-8"></script>
151151

152152
<!-- Scripts in development mode -->
153153
<script type="text/javascript" src="dist/jspdf.debug.js"></script>

0 commit comments

Comments
 (0)