-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
34 lines (32 loc) · 994 Bytes
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
var miAppAngular = angular.module('navegacion', ['ngRoute'] );
miAppAngular.config( [ '$routeProvider' , function($routeProvider) {
$routeProvider.when('/' , {
templateUrl: 'vista/home.html',
controller: 'inicio'
})
.when('/inicio', {
templateUrl: 'vista/inicio.html',
controller: 'inicio'
})
.when('/detalles/:indice', {
templateUrl: 'vista/detalles.html',
controller: 'detalles'
})
.when('/opendata', {
templateUrl: 'vista/opendata.html',
controller: 'opendata'
})
.when('/404', {
templateUrl: 'vista/404.html',
controller: 'inicio'
})
.otherwise({
redirectTo: '/404'
})
}]);
miAppAngular.constant('configuracionGlobal' , {
nombreApp:'3Dictvs',
subtitulo:'Todas las notificaciones a tu alcance',
nombreDelSitio:'Anuncios Ayto. Gijón',
api_url1: 'data/anuncios.json'
});