Repository: cordova-plugin-inappbrowser Updated Branches: refs/heads/master 8fb224443 -> 214763c76
Fixed zIndex issue on Windows 8, 8.1 where InAppBrowser opens behind default app. Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/commit/11a2acfd Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/tree/11a2acfd Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/diff/11a2acfd Branch: refs/heads/master Commit: 11a2acfd7b8c07ece4b03815af7b6f9b0ead318e Parents: ea7e767 Author: aroberson <[email protected]> Authored: Fri Apr 10 08:53:48 2015 -0500 Committer: aroberson <[email protected]> Committed: Fri Apr 10 08:53:48 2015 -0500 ---------------------------------------------------------------------- www/windows8/InAppBrowserProxy.js | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/blob/11a2acfd/www/windows8/InAppBrowserProxy.js ---------------------------------------------------------------------- diff --git a/www/windows8/InAppBrowserProxy.js b/www/windows8/InAppBrowserProxy.js index 944284e..34cc902 100644 --- a/www/windows8/InAppBrowserProxy.js +++ b/www/windows8/InAppBrowserProxy.js @@ -62,6 +62,7 @@ var IAB = { 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 () { --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
