Skip to content

Commit c72dd0f

Browse files
committed
Move old tests
1 parent ae95de3 commit c72dd0f

39 files changed

Lines changed: 1544 additions & 481 deletions

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.3.0 Built on 2016-09-29T11:21:56.977Z
16-
* CommitID 899bfb5d23
15+
* Version 1.3.0 Built on 2016-09-29T16:05:45.013Z
16+
* CommitID ae95de3c53
1717
*
1818
* Copyright (c) 2010-2014 James Hall <james@parall.ax>, 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.3.0 2016-09-29T11:21:56.977Z:jameshall";
2029+
jsPDF.version = "1.3.0 2016-09-29T16:05:45.013Z:jameshall";
20302030

20312031
if (typeof define === 'function' && define.amd) {
20322032
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/canvg_context2d/bar_graph_with_text_and_lines.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -664,6 +664,11 @@ <h1>Bar Graph With Text And Lines</h1>
664664
var c = pdf.canvas;
665665
c.width = 1000;
666666
c.height = 500;
667+
var ctx = c.getContext('2d')
668+
ctx.ignoreClearRect = true;
669+
ctx.fillStyle = 'green';
670+
ctx.fillRect(0, 0, 1200, 700);
671+
667672

668673
//load a svg snippet in the canvas with id = 'drawingArea'
669674
canvg(c, document.getElementById('svg').outerHTML, {

0 commit comments

Comments
 (0)