aboutsummaryrefslogtreecommitdiffstats
path: root/public/scripts/controllers.js
diff options
context:
space:
mode:
Diffstat (limited to 'public/scripts/controllers.js')
-rw-r--r--public/scripts/controllers.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/public/scripts/controllers.js b/public/scripts/controllers.js
index 048853e..0dccb56 100644
--- a/public/scripts/controllers.js
+++ b/public/scripts/controllers.js
@@ -12,6 +12,15 @@ angular.module('app.controllers', [])
['$scope', '$routeParams', '$http',
function($scope, $routeParams, $http) {
$scope.title='Home'
+ $scope.events = [
+ {
+ 'name': 'Mixed Drinks at Roosters 6pm tomorrow'
+ }, {
+ 'name': 'Wine Flights at Vino X 8pm Tuesday'
+ }, {
+ 'name': 'Craft Beer Tasting at Mad Tree Brewers 6pm Friday'
+ }
+ ]
}])
.controller('newController',
['$scope', '$routeParams', '$http',