Remove cordova-plugin-inappbrowser plugin because it won't build on iOS

master
Skylar Ittner 3 years ago
parent 48ff63ac31
commit f0e84f0dce

5
package-lock.json generated

@ -652,11 +652,6 @@
"resolved": "https://registry.npmjs.org/cordova-plugin-headercolor/-/cordova-plugin-headercolor-1.0.0.tgz",
"integrity": "sha1-AgrNlDeH7gOdZ/Z56NnqbTiSAxY="
},
"cordova-plugin-inappbrowser": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/cordova-plugin-inappbrowser/-/cordova-plugin-inappbrowser-4.1.0.tgz",
"integrity": "sha512-jPvcwDx2/L5ZbVG69NT2xmlG1E+MljRxkdsFpgj/5aoaF4oPqxg44J/bYxJNWgQtGnRSRWoqCRmU7FgmmMNMxA=="
},
"cordova-plugin-nativestorage": {
"version": "2.3.2",
"resolved": "https://registry.npmjs.org/cordova-plugin-nativestorage/-/cordova-plugin-nativestorage-2.3.2.tgz",

@ -27,8 +27,7 @@
"cordova-plugin-statusbar": {},
"cordova-plugin-headercolor": {},
"cordova-plugin-theme-detection": {},
"cordova-plugin-nativestorage": {},
"cordova-plugin-inappbrowser": {}
"cordova-plugin-nativestorage": {}
},
"platforms": [
"android",

@ -160,7 +160,7 @@ function initCordova() {
}, function (err) {});
}, false);
openBrowser = function (url) {
cordova.InAppBrowser.open(url, '_blank', 'location=yes');
window.open(url, '_system', '');
}
openExternalBrowser = function (url) {

Loading…
Cancel
Save