route.js 269 Bytes
angular.module('focaHojaRuta')
    .config(['$routeProvider', function($routeProvider) {
        $routeProvider.when('/venta-hoja-ruta/lista', {
            controller: 'listaHojaRutaCtrl',
            templateUrl: 'src/views/lista-hoja-ruta.html'
        });
    }]);