events by day implemented, todo: calendar view to select a day

This commit is contained in:
arnaucode
2017-02-25 00:14:59 +01:00
parent da8c91830e
commit 2dc2105948
6 changed files with 93 additions and 4 deletions

View File

@@ -3,5 +3,7 @@ angular.module('app.calendar', ['pascalprecht.translate'])
.controller('CalendarCtrl', function($scope, $http, $ionicModal, $timeout,
$ionicLoading, $filter) {
$scope.dayClick = function(date) {
window.location="#/app/byDay/" + date;
};
});