Beginning angular

This commit is contained in:
Ben Ramey
2014-03-08 20:50:33 -06:00
parent 81346d05e7
commit a2b54b7a17
12 changed files with 953 additions and 9164 deletions

View File

@@ -0,0 +1,5 @@
lunchControllers = angular.module 'lunchControllers', []
lunchControllers.controller 'RunsCtrl', ['$scope', '$http', ($scope, $http) ->
$scope.helloMsg = 'hello there boys and girls!'
]