cordova-plugin-b
Advanced tools
Comparing version 1.0.2 to 1.1.0
{ | ||
"name": "cordova-plugin-b", | ||
"version": "1.0.2", | ||
"version": "1.1.0", | ||
"description": "Boot Fidelity Cordova Plugin", | ||
@@ -5,0 +5,0 @@ "homepage": "https://www.bluefidelity.com/", |
var exec = require('cordova/exec'); | ||
module.exports = { | ||
getCordovaIntent: function (successCallback, errorCallback) { | ||
exec(successCallback, errorCallback, 'BootFidelity', 'getCordovaIntent', []); | ||
getIntent: function (successCallback, errorCallback) { | ||
exec(successCallback, errorCallback, 'BootFidelity', 'getIntent', []); | ||
}, | ||
setNewIntentHandler: function (method) { | ||
exec(method, null, 'BootFidelity', 'setNewIntentHandler', [method]); | ||
setHandleIntent: function (method) { | ||
exec(method, null, 'BootFidelity', 'setHandleIntent', [method]); | ||
}, | ||
getRealPathFromContentUrl: function (uri, successCallback, errorCallback) { | ||
exec(successCallback, errorCallback, 'BootFidelity', 'getRealPathFromContentUrl', [uri]); | ||
getNativePath: function (uri, successCallback, errorCallback) { | ||
exec(successCallback, errorCallback, 'BootFidelity', 'getNativePath', [uri]); | ||
} | ||
}; |
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
12183