Skip to content

Instantly share code, notes, and snippets.

@danmatthews
Created February 5, 2016 18:19
Show Gist options
  • Save danmatthews/3ed7498240e776cf7597 to your computer and use it in GitHub Desktop.
Save danmatthews/3ed7498240e776cf7597 to your computer and use it in GitHub Desktop.
Native Service
MyApp.factory('NativeService', [function(){
return {
run: function(nativeCallback, browserCallback) {
var dev = ionic.Platform.device();
if ('available' in dev) {
nativeCallback();
} else {
browserCallback();
}
}
};
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment