Commit 2c75fb1b9fa93803fdb3cd537a6df7bc115d5546

Authored by Eric Fernandez
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
... ... @@ -4,7 +4,7 @@ angular.module('focaAbmPreciosCondiciones')
4 4 function($routeProvider) {
5 5 $routeProvider.when('/precio-condicion', {
6 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 ])
... ... @@ -13,7 +13,7 @@ angular.module('focaAbmPreciosCondiciones')
13 13 function($routeProvider) {
14 14 $routeProvider.when('/precio-condicion/:id', {
15 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 ]);