From bddf86c3cefd9d787876d15e771beb499e43eb2f Mon Sep 17 00:00:00 2001 From: Jesse MacFadyen Date: Wed, 9 Apr 2014 12:26:47 -0700 Subject: [PATCH] CB-6402 [WP8] pass empty string instead of null for [optional] windowFeatures string --- www/inappbrowser.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/www/inappbrowser.js b/www/inappbrowser.js index ebcfa24..3535b6f 100644 --- a/www/inappbrowser.js +++ b/www/inappbrowser.js @@ -90,6 +90,8 @@ module.exports = function(strUrl, strWindowName, strWindowFeatures) { iab._eventHandler(eventname); }; + strWindowFeatures = strWindowFeatures || ""; + exec(cb, cb, "InAppBrowser", "open", [strUrl, strWindowName, strWindowFeatures]); return iab; };