Skip to content

Instantly share code, notes, and snippets.

@sunkibaek
Created December 5, 2013 19:58
Show Gist options
  • Save sunkibaek/7812804 to your computer and use it in GitHub Desktop.
Save sunkibaek/7812804 to your computer and use it in GitHub Desktop.
// 'angular way' to create a controller (prevent minification error)
// source: http://weblogs.asp.net/dwahlin/archive/2013/12/01/structuring-angularjs-code.aspx
angular.module('moduleName').controller('MainController', ['$scope', function($scope) {
//Code goes here
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment