Skip to content

Instantly share code, notes, and snippets.

@ronapelbaum
Last active August 7, 2016 17:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ronapelbaum/70ed5ca295a7837e585cdbfa20e8c5c8 to your computer and use it in GitHub Desktop.
Save ronapelbaum/70ed5ca295a7837e585cdbfa20e8c5c8 to your computer and use it in GitHub Desktop.
improve your angular 1.x code style (2)
function MyService(OtherService) {
this.foo = function () {
OtherService.goo();
}
}
MyService.$inject = ['OtherService'];
angular.module('app').service('MyService', MyService);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment