Skip to content

Instantly share code, notes, and snippets.

@gnschenker
Created February 27, 2014 04:35
Show Gist options
  • Save gnschenker/9244474 to your computer and use it in GitHub Desktop.
Save gnschenker/9244474 to your computer and use it in GitHub Desktop.
Service with dependency
var app = angular.module('app', []);
app.service('some-service', ['$location', function($location){
// code…
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment