Skip to content

Instantly share code, notes, and snippets.

@diestrin
Last active August 29, 2015 14:00
Show Gist options
  • Select an option

  • Save diestrin/11385220 to your computer and use it in GitHub Desktop.

Select an option

Save diestrin/11385220 to your computer and use it in GitHub Desktop.
class MyCtrl
$inject: ['$scope', 'aService']
constructor: (@$scope, @aService) ->
@aValue = 5
someAwesomeFunction: (param1) =>
@aService.someCall param1
app.controller 'MyCtrl', MyCtrl
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment