mirror of
https://github.com/lukevella/rallly.git
synced 2025-05-02 11:46:03 +02:00
8 lines
209 B
JavaScript
8 lines
209 B
JavaScript
angular.module('rallly')
|
|
.controller('HomeCtrl', function($scope, $state, Title){
|
|
Title.set('Rallly - Collaborative Scheduling')
|
|
|
|
$scope.newEvent = function(){
|
|
$state.go('newevent');
|
|
}
|
|
});
|