Merge branch 'master' of https://github.com/ABB-Austin/cordova-plugin-inappbrowser
This commit is contained in:
commit
214763c76b
@ -23,7 +23,6 @@
|
|||||||
/*global Windows:true, require, document, setTimeout, window, module */
|
/*global Windows:true, require, document, setTimeout, window, module */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
var cordova = require('cordova'),
|
var cordova = require('cordova'),
|
||||||
channel = require('cordova/channel');
|
channel = require('cordova/channel');
|
||||||
|
|
||||||
@ -62,6 +61,7 @@ var IAB = {
|
|||||||
browserWrap.style.borderWidth = "40px";
|
browserWrap.style.borderWidth = "40px";
|
||||||
browserWrap.style.borderStyle = "solid";
|
browserWrap.style.borderStyle = "solid";
|
||||||
browserWrap.style.borderColor = "rgba(0,0,0,0.25)";
|
browserWrap.style.borderColor = "rgba(0,0,0,0.25)";
|
||||||
|
browserWrap.style.zIndex = "9999999";
|
||||||
|
|
||||||
browserWrap.onclick = function () {
|
browserWrap.onclick = function () {
|
||||||
setTimeout(function () {
|
setTimeout(function () {
|
||||||
@ -71,8 +71,9 @@ var IAB = {
|
|||||||
|
|
||||||
document.body.appendChild(browserWrap);
|
document.body.appendChild(browserWrap);
|
||||||
}
|
}
|
||||||
|
var localFile = (strUrl.indexOf('ms-appdata:///') > -1);
|
||||||
elem = document.createElement("iframe");
|
if (localFile) {
|
||||||
|
elem = document.createElement("x-ms-webview");
|
||||||
elem.style.width = (window.innerWidth - 80) + "px";
|
elem.style.width = (window.innerWidth - 80) + "px";
|
||||||
elem.style.height = (window.innerHeight - 80) + "px";
|
elem.style.height = (window.innerHeight - 80) + "px";
|
||||||
elem.style.borderWidth = "0px";
|
elem.style.borderWidth = "0px";
|
||||||
@ -86,6 +87,23 @@ var IAB = {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
} 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);
|
browserWrap.appendChild(elem);
|
||||||
} else {
|
} else {
|
||||||
window.location = strUrl;
|
window.location = strUrl;
|
||||||
|
Loading…
Reference in New Issue
Block a user