Skip to content

Instantly share code, notes, and snippets.

@tonyjoanes
Created November 13, 2015 16:12
Show Gist options
  • Save tonyjoanes/5ab97df6f10e86300475 to your computer and use it in GitHub Desktop.
Save tonyjoanes/5ab97df6f10e86300475 to your computer and use it in GitHub Desktop.
Extremely simple angular controller
(function () {
'use strict';
angular
.module('SampleApp')
.controller('HomeController', HomeController);
function HomeController() {
var vm = this;
vm.sampleText = "Hey this is from the controller";
vm.pageTitle = "Hello from AngularJS";
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment