Skip to content

Instantly share code, notes, and snippets.

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