ffffng/app/scripts/app.js

48 lines
1.2 KiB
JavaScript
Raw Normal View History

2014-05-12 20:08:19 +02:00
'use strict';
angular.module('ffffng', [
'ngSanitize',
'ngRoute',
'ng',
'leaflet-directive'
])
.config(function ($routeProvider) {
$routeProvider
.when('/', {
templateUrl: 'views/main.html',
controller: 'MainCtrl',
title: 'Willkommen'
})
.when('/new', {
templateUrl: 'views/newNodeForm.html',
controller: 'NewNodeCtrl',
title: 'Neuen Knoten anmelden'
})
.when('/update', {
templateUrl: 'views/updateNodeForm.html',
controller: 'UpdateNodeCtrl',
title: 'Knotendaten ändern'
})
.otherwise({
redirectTo: '/'
});
})
.service('Navigator', function ($location) {
return {
home: function () {
$location.url('/');
},
newNode: function () {
$location.url('/new');
},
updateNode: function () {
$location.url('/update');
}
};
})
.run(['$location', '$rootScope', function ($location, $rootScope) {
$rootScope.$on('$routeChangeSuccess', function (event, current) {
$rootScope.title = current.$$route.title;
});
}]);