Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions dist/jspdf.debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@

/** @preserve
* jsPDF - PDF Document creation from JavaScript
* Version 1.2.61 Built on 2016-09-25T13:20:45.594Z
* CommitID 76c004c36d
* Version 1.2.61 Built on 2016-09-25T16:41:26.682Z
* CommitID 1f643ba4c4
*
* Copyright (c) 2010-2014 James Hall <james@parall.ax>, https://github.com/MrRio/jsPDF
* 2010 Aaron Spike, https://github.com/acspike
Expand Down Expand Up @@ -2028,7 +2028,7 @@
* pdfdoc.mymethod() // <- !!!!!!
*/
jsPDF.API = { events: [] };
jsPDF.version = "1.2.61 2016-09-25T13:20:45.594Z:jameshall";
jsPDF.version = "1.2.61 2016-09-25T16:41:26.682Z:jameshall";

if (typeof define === 'function' && define.amd) {
define('jsPDF', function () {
Expand Down
2 changes: 1 addition & 1 deletion dist/jspdf.min.js

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions examples/js/autoprint.js

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions examples/js/editor.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/js/font-size.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ doc.setFontSize(22);
doc.text(20, 20, 'This is a title');

doc.setFontSize(16);
doc.text(20, 30, 'This is some normal sized text underneath.');
doc.text(20, 30, 'This is some normal sized text underneath.');
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -142,12 +142,12 @@ <h2>License</h2>
<footer>&copy; 2016 James Hall - <a href="https://parall.ax/pages/privacy-policy">Privacy Policy</a></footer>

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

<!-- Code editor -->

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

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