From 3f9af4fd88ebcb7b29487d26768e3f392d5d9285 Mon Sep 17 00:00:00 2001 From: Andrew Grieve Date: Tue, 7 Jan 2014 10:52:44 -0500 Subject: [PATCH] Remove _alive from InAppBrowser.js since it didn't catch the case where the browser is closed by the user. --- www/InAppBrowser.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/www/InAppBrowser.js b/www/InAppBrowser.js index 3fe9261..ebcfa24 100644 --- a/www/InAppBrowser.js +++ b/www/InAppBrowser.js @@ -31,7 +31,6 @@ function InAppBrowser() { 'loaderror' : channel.create('loaderror'), 'exit' : channel.create('exit') }; - this._alive = true; } InAppBrowser.prototype = { @@ -41,10 +40,7 @@ InAppBrowser.prototype = { } }, close: function (eventname) { - if (this._alive) { - this._alive = false; - exec(null, null, "InAppBrowser", "close", []); - } + exec(null, null, "InAppBrowser", "close", []); }, show: function (eventname) { exec(null, null, "InAppBrowser", "show", []);