summaryrefslogtreecommitdiff
path: root/plugins/org.apache.cordova.file/src/blackberry10
diff options
context:
space:
mode:
authorPliablePixels <pliablepixels@gmail.com>2015-06-25 16:10:07 -0400
committerPliablePixels <pliablepixels@gmail.com>2015-06-25 16:10:07 -0400
commit65e7255c868bed3bb950e7e36ab786934edc559f (patch)
tree085a58a4bc4a55111803dde9ab412dec9e9a8bb1 /plugins/org.apache.cordova.file/src/blackberry10
parent855a0e8ddc273b58066530a1b55a946021dfc56e (diff)
https now works with self-signed certificates (needs provisioning though)
Diffstat (limited to 'plugins/org.apache.cordova.file/src/blackberry10')
-rw-r--r--plugins/org.apache.cordova.file/src/blackberry10/index.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/plugins/org.apache.cordova.file/src/blackberry10/index.js b/plugins/org.apache.cordova.file/src/blackberry10/index.js
deleted file mode 100644
index 914d9663..00000000
--- a/plugins/org.apache.cordova.file/src/blackberry10/index.js
+++ /dev/null
@@ -1,10 +0,0 @@
-module.exports = {
- setSandbox : function (success, fail, args, env) {
- require("lib/webview").setSandbox(JSON.parse(decodeURIComponent(args[0])));
- new PluginResult(args, env).noResult(false);
- },
-
- isSandboxed : function (success, fail, args, env) {
- new PluginResult(args, env).ok(require("lib/webview").getSandbox() === "1");
- }
-};