Created
July 2, 2014 20:45
-
-
Save craigshoemaker/eb051978117ebf345f17 to your computer and use it in GitHub Desktop.
Controller Definition from Official AngularJS Help Documentation
This file contains 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
// from: https://docs.angularjs.org/guide/controller | |
myApp.controller('GreetingController', ['$scope', function($scope) { | |
$scope.greeting = 'Hola!'; | |
}]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment