1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/resources/assets/js/vfs.js

14 lines
494 B
JavaScript
Raw Normal View History

2016-01-07 08:08:30 +01:00
window.pdfMake = window.pdfMake || {}; window.pdfMake.vfs = {};
if(window.ninjaFontVfs)ninjaLoadFontVfs();
function ninjaLoadFontVfs(){
jQuery.each(window.ninjaFontVfs, function(font, files){
jQuery.each(files, function(filename, file){
2016-03-23 23:40:42 +01:00
window.pdfMake.vfs['fonts/'+font+'/'+filename] = file;
2016-01-07 08:08:30 +01:00
});
})
2016-03-23 23:40:42 +01:00
}
function ninjaAddVFSDoc(name,content){
window.pdfMake.vfs['docs/'+name] = content;
if(window.refreshPDF)refreshPDF(true);
jQuery(document).trigger('ninjaVFSDocAdded');
2016-01-07 08:08:30 +01:00
}