Skip to content

Instantly share code, notes, and snippets.

@xcarpentier
Last active August 29, 2015 14:07
Show Gist options
  • Save xcarpentier/a11dc5479ee55650c7c3 to your computer and use it in GitHub Desktop.
Save xcarpentier/a11dc5479ee55650c7c3 to your computer and use it in GitHub Desktop.
/**
* À éviter
*/
var app = angular.module('app', [
'ngAnimate',
'ngRoute',
'app.shared',
'app.dashboard'
]);
/**
* Recommandé : utiliser simplement la syntaxe "Setter"
*/
angular
.module('app', [
'ngAnimate',
'ngRoute',
'app.shared',
'app.dashboard'
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment