I've been looking all over, but can not understand what's wrong with my program. I had no problems with Xcode 5. Now I'm running Cordova 3.5 with InAppBrowser 0.5.1 through Xcode 6 beta 7, and can't get InAppBrowser to do anything on iOS7.
I'm open to a bug in my JavaScript, but so far the plugin's values are set in the config.xml (added automatically by Cordova):
<feature name="InAppBrowser">
<param name="ios-package" value="CDVInAppBrowser" />
</feature>
values are set properly in ios/www/cordova_plugins.js:
{
"file": "plugins/org.apache.cordova.inappbrowser/www/inappbrowser.js",
"id": "org.apache.cordova.inappbrowser.inappbrowser",
"clobbers": [
"window.open"
]
}
and
module.exports.metadata = {
"org.apache.cordova.inappbrowser": "0.5.1"
}
the javascript file is loaded when app starts. I added logs to module.exports inside InAppBrowser.js, and if I call "window.open" InAppBrowser responds (message logged to console), but nothing is happening on screen!
What am I missing?