From 02811010cf62f1b21a06780d1e470d04bb24c50f Mon Sep 17 00:00:00 2001 From: Arjun Roychowdhury Date: Sat, 31 Oct 2015 08:21:38 -0400 Subject: removed unecessary files from git --- plugins/cordova-plugin-touchid/www/touchid.js | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 plugins/cordova-plugin-touchid/www/touchid.js (limited to 'plugins/cordova-plugin-touchid/www') diff --git a/plugins/cordova-plugin-touchid/www/touchid.js b/plugins/cordova-plugin-touchid/www/touchid.js deleted file mode 100644 index 020d5f89..00000000 --- a/plugins/cordova-plugin-touchid/www/touchid.js +++ /dev/null @@ -1,19 +0,0 @@ - -var exec = require("cordova/exec"); - -var TouchID = function () { - this.name = "TouchID"; -}; - -TouchID.prototype.authenticate = function (successCallback, errorCallback, text) { - if (!text) { - text = "Please authenticate via TouchID to proceed"; - } - exec(successCallback, errorCallback, "TouchID", "authenticate", [text]); -}; - -TouchID.prototype.checkSupport = function (successCallback, errorCallback) { - exec(successCallback, errorCallback, "TouchID", "checkSupport"); -}; - -module.exports = new TouchID(); -- cgit v1.2.3