Commit 2c75fb1b9fa93803fdb3cd537a6df7bc115d5546
1 parent
cb07507264
Exists in
master
agrego dirección para correr modulo unitariamente
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/js/route.js
1 | angular.module('focaAbmPreciosCondiciones') | 1 | angular.module('focaAbmPreciosCondiciones') |
2 | .config([ | 2 | .config([ |
3 | '$routeProvider', | 3 | '$routeProvider', |
4 | function($routeProvider) { | 4 | function($routeProvider) { |
5 | $routeProvider.when('/precio-condicion', { | 5 | $routeProvider.when('/precio-condicion', { |
6 | controller: 'focaAbmPreciosCondicionesController', | 6 | controller: 'focaAbmPreciosCondicionesController', |
7 | templateUrl: 'foca-abm-precios-condiciones-listado.html' | 7 | templateUrl: 'src/views/foca-abm-precios-condiciones-listado.html' |
8 | }); | 8 | }); |
9 | } | 9 | } |
10 | ]) | 10 | ]) |
11 | .config([ | 11 | .config([ |
12 | '$routeProvider', | 12 | '$routeProvider', |
13 | function($routeProvider) { | 13 | function($routeProvider) { |
14 | $routeProvider.when('/precio-condicion/:id', { | 14 | $routeProvider.when('/precio-condicion/:id', { |
15 | controller: 'focaAbmPrecioCondicionController', | 15 | controller: 'focaAbmPrecioCondicionController', |
16 | templateUrl: 'foca-abm-precios-condiciones-item.html' | 16 | templateUrl: 'src/views/foca-abm-precios-condiciones-item.html' |
17 | }); | 17 | }); |
18 | } | 18 | } |
19 | ]); | 19 | ]); |
20 | 20 |