Skip to content

Instantly share code, notes, and snippets.

@shumbo
Created December 12, 2015 10:07
Show Gist options
  • Save shumbo/9462f0c1f675725384dd to your computer and use it in GitHub Desktop.
Save shumbo/9462f0c1f675725384dd to your computer and use it in GitHub Desktop.
isInAppBrowserInstalled: function(cordovaMetadata) {
var inAppBrowserNames = ["cordova-plugin-inappbrowser", "org.apache.cordova.inappbrowser"];
return inAppBrowserNames.some(function(name) {
return cordovaMetadata.hasOwnProperty(name);
});
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment