CB-7784 Exit event is not fired after InAppBrowser closing

This commit is contained in:
daserge 2014-10-15 03:54:41 +04:00 committed by sgrebnov
parent 3056997c78
commit e785533ab4

View File

@ -119,7 +119,7 @@ var IAB = {
browserWrap.onclick = function () {
setTimeout(function () {
IAB.close();
IAB.close(win);
}, 0);
};
@ -191,7 +191,7 @@ var IAB = {
closeButton.innerText = "x";
closeButton.addEventListener("click", function (e) {
setTimeout(function () {
IAB.close();
IAB.close(win);
}, 0);
});