UNPKG

cordova-plugin-pressure-signosoft

Version:

Cordova SignoSoft Plugin. Simple plugin that returns x, y and pressure from signing pen.

17 lines (13 loc) 376 B
/*global cordova, module*/ function start(success, error, opts) { if(!opts || !opts.length) { error("Error, something was wrong with the input string. =>" + opts); } else { success(opts + " echo"); } } module.exports = { start: start }; require("cordova/exec/proxy").add("SignoSoft", module.exports);