Skip to content

Instantly share code, notes, and snippets.

@xcarpentier
Created September 29, 2014 12:27
Show Gist options
  • Save xcarpentier/ef096ab2dd3e77947b2f to your computer and use it in GitHub Desktop.
Save xcarpentier/ef096ab2dd3e77947b2f to your computer and use it in GitHub Desktop.
/**
* À éviter
*/
angular
.module('app')
.controller('Dashboard', function () { });
.factory('logger', function () { });
/**
* Recommandé
*/
// dashboard.js
angular
.module('app')
.controller('Dashboard', Dashboard);
function Dashboard () { }
// logger.js
angular
.module('app')
.factory('logger', logger);
function logger () { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment