Skip to content

Instantly share code, notes, and snippets.

@xcarpentier
Created October 26, 2014 14:32
Show Gist options
  • Save xcarpentier/9d44f0cf2d0b2d62ad2c to your computer and use it in GitHub Desktop.
Save xcarpentier/9d44f0cf2d0b2d62ad2c to your computer and use it in GitHub Desktop.
/* à éviter */
angular
.module('app')
.controller('Dashboard',
['$location', '$routeParams', 'common', 'dataservice', Dashboard]);
function Dashboard($location, $routeParams, common, dataservice) {
}
/* Recommandé */
angular
.module('app')
.controller('Dashboard', Dashboard);
Dashboard.$inject = ['$location', '$routeParams', 'common', 'dataservice'];
function Dashboard($location, $routeParams, common, dataservice) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment