Updates to Event Form

This commit is contained in:
Luke Vella 2015-01-19 13:18:27 +01:00
parent f776756798
commit e61ef151f6
43 changed files with 736 additions and 484 deletions

View file

@ -1,5 +1,7 @@
angular.module('rallly')
.controller('HomeCtrl', function($scope, $state){
.controller('HomeCtrl', function($scope, $state, Title){
Title.set('Rallly - Collaborative Scheduling')
$scope.newEvent = function(){
$state.go('newevent');
}