(function(){ angular.module('medico', ['ngRoute', 'servicios','controladores', 'componentes', 'directivas']) .config(['$routeProvider', '$locationProvider', function($routeProvider, $locationProvider){ $routeProvider.when('/',{ templateUrl: 'archivos/r/' + parseInt(Math.random() * 1000) + '/inicio.html', controller: 'InicioController' }).when('/inicio',{ templateUrl: 'archivos/r/' + parseInt(Math.random() * 1000) + '/inicio.html', controller: 'InicioController' }).when('/pago',{ templateUrl: 'archivos/r/' + parseInt(Math.random() * 1000) + '/pago.html', controller: 'PagoController' }).when('/disponibilidad',{ templateUrl: 'archivos/r/' + parseInt(Math.random() * 1000) + '/disponibilidad.html', controller: 'DisponibilidadController' }).when('/transaccion',{ templateUrl: 'archivos/r/' + parseInt(Math.random() * 1000) + '/transaccion.html', controller: 'TransaccionController' }).when('/transaccion_rechazada',{ templateUrl: 'archivos/r/' + parseInt(Math.random() * 1000) + '/transaccion_rechazada.html', controller: 'TransaccionRechazadaController' }).when('/terminos',{ templateUrl: 'archivos/r/' + parseInt(Math.random() * 1000) + '/terminos.html', controller: 'TerminosController' }).when('/error',{ templateUrl: 'archivos/r/' + parseInt(Math.random() * 1000) + '/error.html', controller: 'ErrorController' }).otherwise({ redirectTo: '/error' }); $locationProvider.html5Mode(true).hashPrefix('!'); }]) })();