CB-6402 [WP8] pass empty string instead of null for [optional] windowFeatures string

This commit is contained in:
Jesse MacFadyen 2014-04-09 12:26:47 -07:00
parent 25f306d11e
commit bddf86c3ce

View File

@ -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;
};