11 lines
207 B
JavaScript
Executable File
11 lines
207 B
JavaScript
Executable File
|
|
angular.module('htmlToPdfSave')
|
|
.service('$pdfStorage' , function() {
|
|
this.pdfSaveButtons = [] ;
|
|
this.pdfSaveContents = [] ;
|
|
})
|
|
.service('pdfSaveConfig' , function() {
|
|
this.pdfName = "default.pdf";
|
|
})
|
|
|