Skip to content

Instantly share code, notes, and snippets.

@hectorgool
Created September 12, 2014 13:43
Show Gist options
  • Save hectorgool/71b309dc78d57759ac89 to your computer and use it in GitHub Desktop.
Save hectorgool/71b309dc78d57759ac89 to your computer and use it in GitHub Desktop.
AngularJs - Controller Template
function MyController($scope, $resource) {
}
MyController.$inject = ['$scope', '$resource'];
myAppModule.controller('MyController', ['$scope','$resource', function($scope, $resource) {
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment