6 lines
191 B
CoffeeScript
6 lines
191 B
CoffeeScript
lunchControllers = angular.module 'lunchControllers', []
|
|
|
|
lunchControllers.controller 'RunsCtrl', ['$scope', '$http', ($scope, $http) ->
|
|
$scope.helloMsg = 'hello there boys and girls!'
|
|
]
|