cordova-pdf-generator
Advanced tools
Comparing version 0.9.5 to 0.9.6
{ | ||
"name": "cordova-pdf-generator", | ||
"version": "0.9.5", | ||
"version": "0.9.6", | ||
"description": "is a HTML to PDF (offline) Generator.", | ||
@@ -5,0 +5,0 @@ "cordova": { |
@@ -5,5 +5,5 @@ /*global cordova, module*/ | ||
htmlToPDF: function (options, successCallback, errorCallback) { | ||
if(!options.url && !options.data) throw "No URL or HTML Data found."; | ||
var url = options.url; | ||
@@ -14,5 +14,5 @@ var data = options.data; | ||
var type = options.type || "base64"; | ||
cordova.exec(successCallback, errorCallback, "PDFService", "htmlToPDF", [ url, data, docSize, landscape, type ]); | ||
cordova.exec(successCallback, errorCallback, "PDFGenerator", "htmlToPDF", [ url, data, docSize, landscape, type ]); | ||
} | ||
}; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2279700
16