We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f35960b commit ef1626cCopy full SHA for ef1626c
jspdf.js
@@ -589,12 +589,12 @@ var jsPDF = (function(global) {
589
}
590
var created = new Date();
591
out(['/CreationDate (D:',
592
- created.getFullYear(),
593
- padd2(created.getMonth() + 1),
594
- padd2(created.getDate()),
595
- padd2(created.getHours()),
596
- padd2(created.getMinutes()),
597
- padd2(created.getSeconds()), ')'].join(''));
+ created.getUTCFullYear(),
+ padd2(created.getUTCMonth() + 1),
+ padd2(created.getUTCDate()),
+ padd2(created.getUTCHours()),
+ padd2(created.getUTCMinutes()),
+ padd2(created.getUTCSeconds()), ')'].join(''));
598
},
599
putCatalog = function() {
600
out('/Type /Catalog');
0 commit comments