summaryrefslogtreecommitdiff
path: root/StoneIsland/plugins/cordova-plugin-inappbrowser/www
diff options
context:
space:
mode:
Diffstat (limited to 'StoneIsland/plugins/cordova-plugin-inappbrowser/www')
-rw-r--r--StoneIsland/plugins/cordova-plugin-inappbrowser/www/inappbrowser.js66
-rw-r--r--StoneIsland/plugins/cordova-plugin-inappbrowser/www/windows8/InAppBrowserProxy.js124
2 files changed, 37 insertions, 153 deletions
diff --git a/StoneIsland/plugins/cordova-plugin-inappbrowser/www/inappbrowser.js b/StoneIsland/plugins/cordova-plugin-inappbrowser/www/inappbrowser.js
index 25f62711..f93626cb 100644
--- a/StoneIsland/plugins/cordova-plugin-inappbrowser/www/inappbrowser.js
+++ b/StoneIsland/plugins/cordova-plugin-inappbrowser/www/inappbrowser.js
@@ -19,72 +19,80 @@
*
*/
-(function() {
- // special patch to correctly work on Ripple emulator (CB-9760)
- if (window.parent && !!window.parent.ripple) { // https://gist.github.com/triceam/4658021
- module.exports = window.open.bind(window); // fallback to default window.open behaviour
- return;
- }
-
+(function () {
var exec = require('cordova/exec');
var channel = require('cordova/channel');
var modulemapper = require('cordova/modulemapper');
var urlutil = require('cordova/urlutil');
- function InAppBrowser() {
- this.channels = {
+ function InAppBrowser () {
+ this.channels = {
+ 'beforeload': channel.create('beforeload'),
'loadstart': channel.create('loadstart'),
- 'loadstop' : channel.create('loadstop'),
- 'loaderror' : channel.create('loaderror'),
- 'exit' : channel.create('exit')
- };
+ 'loadstop': channel.create('loadstop'),
+ 'loaderror': channel.create('loaderror'),
+ 'exit': channel.create('exit'),
+ 'customscheme': channel.create('customscheme'),
+ 'message': channel.create('message')
+ };
}
InAppBrowser.prototype = {
_eventHandler: function (event) {
if (event && (event.type in this.channels)) {
- this.channels[event.type].fire(event);
+ if (event.type === 'beforeload') {
+ this.channels[event.type].fire(event, this._loadAfterBeforeload);
+ } else {
+ this.channels[event.type].fire(event);
+ }
}
},
+ _loadAfterBeforeload: function (strUrl) {
+ strUrl = urlutil.makeAbsolute(strUrl);
+ exec(null, null, 'InAppBrowser', 'loadAfterBeforeload', [strUrl]);
+ },
close: function (eventname) {
- exec(null, null, "InAppBrowser", "close", []);
+ exec(null, null, 'InAppBrowser', 'close', []);
},
show: function (eventname) {
- exec(null, null, "InAppBrowser", "show", []);
+ exec(null, null, 'InAppBrowser', 'show', []);
+ },
+ hide: function (eventname) {
+ exec(null, null, 'InAppBrowser', 'hide', []);
},
- addEventListener: function (eventname,f) {
+ addEventListener: function (eventname, f) {
if (eventname in this.channels) {
this.channels[eventname].subscribe(f);
}
},
- removeEventListener: function(eventname, f) {
+ removeEventListener: function (eventname, f) {
if (eventname in this.channels) {
this.channels[eventname].unsubscribe(f);
}
},
- executeScript: function(injectDetails, cb) {
+ executeScript: function (injectDetails, cb) {
if (injectDetails.code) {
- exec(cb, null, "InAppBrowser", "injectScriptCode", [injectDetails.code, !!cb]);
+ exec(cb, null, 'InAppBrowser', 'injectScriptCode', [injectDetails.code, !!cb]);
} else if (injectDetails.file) {
- exec(cb, null, "InAppBrowser", "injectScriptFile", [injectDetails.file, !!cb]);
+ exec(cb, null, 'InAppBrowser', 'injectScriptFile', [injectDetails.file, !!cb]);
} else {
throw new Error('executeScript requires exactly one of code or file to be specified');
}
},
- insertCSS: function(injectDetails, cb) {
+ insertCSS: function (injectDetails, cb) {
if (injectDetails.code) {
- exec(cb, null, "InAppBrowser", "injectStyleCode", [injectDetails.code, !!cb]);
+ exec(cb, null, 'InAppBrowser', 'injectStyleCode', [injectDetails.code, !!cb]);
} else if (injectDetails.file) {
- exec(cb, null, "InAppBrowser", "injectStyleFile", [injectDetails.file, !!cb]);
+ exec(cb, null, 'InAppBrowser', 'injectStyleFile', [injectDetails.file, !!cb]);
} else {
throw new Error('insertCSS requires exactly one of code or file to be specified');
}
}
};
- module.exports = function(strUrl, strWindowName, strWindowFeatures, callbacks) {
+ module.exports = function (strUrl, strWindowName, strWindowFeatures, callbacks) {
// Don't catch calls that write to existing frames (e.g. named iframes).
if (window.frames && window.frames[strWindowName]) {
var origOpenFunc = modulemapper.getOriginalSymbol(window, 'open');
@@ -99,13 +107,13 @@
iab.addEventListener(callbackName, callbacks[callbackName]);
}
- var cb = function(eventname) {
- iab._eventHandler(eventname);
+ var cb = function (eventname) {
+ iab._eventHandler(eventname);
};
- strWindowFeatures = strWindowFeatures || "";
+ strWindowFeatures = strWindowFeatures || '';
- exec(cb, cb, "InAppBrowser", "open", [strUrl, strWindowName, strWindowFeatures]);
+ exec(cb, cb, 'InAppBrowser', 'open', [strUrl, strWindowName, strWindowFeatures]);
return iab;
};
})();
diff --git a/StoneIsland/plugins/cordova-plugin-inappbrowser/www/windows8/InAppBrowserProxy.js b/StoneIsland/plugins/cordova-plugin-inappbrowser/www/windows8/InAppBrowserProxy.js
deleted file mode 100644
index ed954770..00000000
--- a/StoneIsland/plugins/cordova-plugin-inappbrowser/www/windows8/InAppBrowserProxy.js
+++ /dev/null
@@ -1,124 +0,0 @@
-/*
- *
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- *
- */
-
-/*jslint sloppy:true */
-/*global Windows:true, require, document, setTimeout, window, module */
-
-var browserWrap;
-
-var IAB = {
-
- close: function (win, lose) {
- if (browserWrap) {
- browserWrap.parentNode.removeChild(browserWrap);
- browserWrap = null;
- }
- },
- show: function (win, lose) {
- /* empty block, ran out of bacon?
- if (browserWrap) {
-
- }*/
- },
- open: function (win, lose, args) {
- var strUrl = args[0],
- target = args[1],
- url,
- elem;
-
- if (target === "_system") {
- url = new Windows.Foundation.Uri(strUrl);
- Windows.System.Launcher.launchUriAsync(url);
- } else if (target === "_blank") {
- if (!browserWrap) {
- browserWrap = document.createElement("div");
- browserWrap.style.position = "absolute";
- browserWrap.style.width = (window.innerWidth - 80) + "px";
- browserWrap.style.height = (window.innerHeight - 80) + "px";
- browserWrap.style.borderWidth = "40px";
- browserWrap.style.borderStyle = "solid";
- browserWrap.style.borderColor = "rgba(0,0,0,0.25)";
- browserWrap.style.zIndex = "9999999";
-
- browserWrap.onclick = function () {
- setTimeout(function () {
- IAB.close();
- }, 0);
- };
-
- document.body.appendChild(browserWrap);
- }
- var localFile = (strUrl.indexOf('ms-appdata:///') > -1);
- if (localFile) {
- elem = document.createElement("x-ms-webview");
- elem.style.width = (window.innerWidth - 80) + "px";
- elem.style.height = (window.innerHeight - 80) + "px";
- elem.style.borderWidth = "0px";
- elem.name = "targetFrame";
- elem.src = strUrl;
-
- window.addEventListener("resize", function () {
- if (browserWrap && elem) {
- elem.style.width = (window.innerWidth - 80) + "px";
- elem.style.height = (window.innerHeight - 80) + "px";
- }
- });
-
- } else {
- elem = document.createElement("iframe");
- elem.style.width = (window.innerWidth - 80) + "px";
- elem.style.height = (window.innerHeight - 80) + "px";
- elem.style.borderWidth = "0px";
- elem.name = "targetFrame";
- elem.src = strUrl;
-
-
- window.addEventListener("resize", function () {
- if (browserWrap && elem) {
- elem.style.width = (window.innerWidth - 80) + "px";
- elem.style.height = (window.innerHeight - 80) + "px";
- }
- });
- }
-
- browserWrap.appendChild(elem);
- } else {
- window.location = strUrl;
- }
-
- //var object = new WinJS.UI.HtmlControl(elem, { uri: strUrl });
-
- },
-
- injectScriptCode: function (code, bCB) {
-
- // "(function(d) { var c = d.createElement('script'); c.src = %@; d.body.appendChild(c); })(document)"
- },
-
- injectScriptFile: function (file, bCB) {
-
- }
-};
-
-module.exports = IAB;
-
-
-require("cordova/exec/proxy").add("InAppBrowser", module.exports);