Skip to content

Instantly share code, notes, and snippets.

@ronapelbaum
Last active August 7, 2016 17:26
Show Gist options
  • Save ronapelbaum/41b3911721edd9f3c388278f9cdc84f3 to your computer and use it in GitHub Desktop.
Save ronapelbaum/41b3911721edd9f3c388278f9cdc84f3 to your computer and use it in GitHub Desktop.
improve your angular 1.x code style (3)
(function () {
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