Skip to content

Instantly share code, notes, and snippets.

@EmmanuelDemey
Created July 10, 2015 12:45
Show Gist options
  • Select an option

  • Save EmmanuelDemey/b8c6c0036cea705cf758 to your computer and use it in GitHub Desktop.

Select an option

Save EmmanuelDemey/b8c6c0036cea705cf758 to your computer and use it in GitHub Desktop.
angular.module('module')
.factory('MyFactory', function(){
return {
method: function(){};
};
});
angular.module('module')
.service('MyFactory', function(){
this.method: function(){};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment