Created
December 5, 2013 19:58
-
-
Save sunkibaek/7812804 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
// '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