mirror of
https://github.com/arnaucube/openEventsPlatformApp.git
synced 2026-02-07 03:36:44 +01:00
calendar started
This commit is contained in:
@@ -18,6 +18,7 @@ angular.module('app', [
|
||||
'app.byCategory',
|
||||
'app.place',
|
||||
'app.byPlace',
|
||||
'app.calendar',
|
||||
'app.users',
|
||||
'app.user',
|
||||
'app.login',
|
||||
@@ -142,6 +143,15 @@ angular.module('app', [
|
||||
}
|
||||
}
|
||||
})
|
||||
.state('app.calendar', {
|
||||
url: '/calendar',
|
||||
views: {
|
||||
'menuContent': {
|
||||
templateUrl: 'templates/calendar.html',
|
||||
controller: 'CalendarCtrl'
|
||||
}
|
||||
}
|
||||
})
|
||||
.state('app.users', {
|
||||
url: '/users',
|
||||
views: {
|
||||
|
||||
5
www/js/calendar.js
Normal file
5
www/js/calendar.js
Normal file
@@ -0,0 +1,5 @@
|
||||
angular.module('app.calendar', ['pascalprecht.translate', 'ui.rCalendar'])
|
||||
|
||||
.controller('CalendarCtrl', function($scope, $http, $ionicModal, $timeout, $ionicLoading, $filter) {
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user