Skip to content

Instantly share code, notes, and snippets.

@alejandroiglesias
Created September 16, 2013 00:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alejandroiglesias/6575514 to your computer and use it in GitHub Desktop.
Save alejandroiglesias/6575514 to your computer and use it in GitHub Desktop.
// <div ng-controller="MyCtrl"></div>
function MyCtrl ($scope) {
// my init code here
}
// <div ng-controller="MyCtrl" ng-init="initialize()"></div>
function MyCtrl ($scope) {
$scope.initialize = function () {
// my init code here
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment