Files
angular-demo/script.js
Tommy Parnell 02e6c893f5 init
2016-10-08 09:22:13 -04:00

22 lines
334 B
JavaScript

// Code goes here
(function(){
var app = angular.module('awesome', []);
var mainController = function($scope){
if(!$scope.username){
$scope.username = "defaults brah";
}
$scope.runMe = function(){
alert($scope.username);
}
};
app.controller('awesome', mainController);
})();