Skip to content

Instantly share code, notes, and snippets.

@ratul0
Created November 27, 2015 08:37
Show Gist options
  • Select an option

  • Save ratul0/b3908fa84dbe7427fdd7 to your computer and use it in GitHub Desktop.

Select an option

Save ratul0/b3908fa84dbe7427fdd7 to your computer and use it in GitHub Desktop.
Angular Services Example
$provide.provider('books', function () {
this.$get = function(){
var appName = "Book Looger";
return {
appName: appName
};
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment