Created
May 28, 2014 02:54
-
-
Save ukyo/941c8b9f04f4bd38fb6f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class AngularBase | |
@inject = (args) -> | |
@$inject = args | |
#アノテーションに見えなくもない | |
class FooController extends AngularBase | |
@inject '$scope', '$http' | |
constructor: ($scope, $http) -> | |
# ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment