Skip to content

Instantly share code, notes, and snippets.

@lukaszewczak
Created August 28, 2014 22:11
Show Gist options
  • Save lukaszewczak/62bfcc7376949119c0d1 to your computer and use it in GitHub Desktop.
Save lukaszewczak/62bfcc7376949119c0d1 to your computer and use it in GitHub Desktop.
function AnotherService () {
var AnotherService = {};
AnotherService.someValue = '';
AnotherService.someMethod = function () {
};
return AnotherService;
}
angular
.module('app')
.factory('AnotherService', AnotherService);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment