Created
October 26, 2014 14:32
-
-
Save xcarpentier/9d44f0cf2d0b2d62ad2c to your computer and use it in GitHub Desktop.
This file contains hidden or 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
/* à é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