CB-7690 InAppBrowser loadstart/loadstop events issues

Subscribing to events before navigating
This commit is contained in:
daserge
2014-10-15 03:23:26 +04:00
committed by sgrebnov
parent 71b43d39a4
commit 3f80b0b59c
3 changed files with 22 additions and 13 deletions
+3 -3
View File
@@ -120,14 +120,14 @@ var IAB = {
popup.style.width = "100%";
popup.style.height = "100%";
// start listening for navigation events
attachNavigationEvents(popup, win);
if (isWebViewAvailable) {
strUrl = strUrl.replace("ms-appx://", "ms-appx-web://");
}
popup.src = strUrl;
// start listening for navigation events
attachNavigationEvents(popup, win);
browserWrap.appendChild(popup);
}
},