summaryrefslogtreecommitdiff
path: root/plugins/cordova-plugin-touchid/www/touchid.js
diff options
context:
space:
mode:
authorArjun Roychowdhury <pliablepixels@gmail.com>2015-10-31 08:21:38 -0400
committerArjun Roychowdhury <pliablepixels@gmail.com>2015-10-31 08:21:38 -0400
commit02811010cf62f1b21a06780d1e470d04bb24c50f (patch)
tree0d933789068aac11c810ed4bb169d14ab16c43c6 /plugins/cordova-plugin-touchid/www/touchid.js
parentbca561c1b3989d62a1fba829e0380c6fbf36caf5 (diff)
removed unecessary files from git
Diffstat (limited to 'plugins/cordova-plugin-touchid/www/touchid.js')
-rw-r--r--plugins/cordova-plugin-touchid/www/touchid.js19
1 files changed, 0 insertions, 19 deletions
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();