@movable/cordova-sdk
Advanced tools
Comparing version 1.2.0 to 1.4.0
{ | ||
"name": "@movable/cordova-sdk", | ||
"version": "1.2.0", | ||
"version": "1.4.0", | ||
"description": "MovableInk Cordova SDK", | ||
@@ -5,0 +5,0 @@ "types": "./types/index.d.ts", |
@@ -119,2 +119,27 @@ var exec = require('cordova/exec'); | ||
MovableInk.prototype.checkPasteboardOnInstall = function (callback) { | ||
exec( | ||
callback, | ||
function (err) { | ||
console.log(err); | ||
}, | ||
"MovableInkClient", | ||
"checkPasteboardOnInstall", | ||
[] | ||
); | ||
} | ||
MovableInk.prototype.showInAppMessage = function (url, callback) { | ||
exec( | ||
callback, | ||
function (err) { | ||
console.log(err); | ||
}, | ||
"MovableInkClient", | ||
"showInAppMessage", | ||
[url] | ||
); | ||
}; | ||
module.exports = new MovableInk(); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
25213
126