mgechev / angularjs-style-guide

📚 Community-driven set of best practices for AngularJS application development

Home Page:https://mgechev.github.io/angularjs-style-guide/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Issue: Controller example does not follow styleguide

blowsie opened this issue · comments

The following example is missing Ctrl

angular
  .module('app')
  .controller('Homepage', Homepage);

Homepage.$inject = ['$log', '$http', 'ngRoute'];

function Homepage($log, $http, ngRoute) {
  // ...
}