Skip to content

Instantly share code, notes, and snippets.

@bernbecht
Created April 6, 2016 16:36
Show Gist options
  • Save bernbecht/133eb5517a12c345546ea11e58e0ea01 to your computer and use it in GitHub Desktop.
Save bernbecht/133eb5517a12c345546ea11e58e0ea01 to your computer and use it in GitHub Desktop.
controller skelleton
(function() {
function ${name}Controller($scope)
}
${name}Controller.$inject = [
'$scope',
];
angular.module('${name}')
.controller('${name}Controller', ${name}Controller);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment