Commit a1f6c3a47192b644fd8ab5b0d8842302e0b71fb0

Authored by Nicolás Guarnieri
Exists in master and in 1 other branch develop

Merge branch 'master' into 'master'

Master

See merge request !2
src/js/controller.js
... ... @@ -25,5 +25,15 @@ angular.module('focaInformes')
25 25 }
26 26 );
27 27 };
  28 + $scope.seleccionarChoferes = function() {
  29 + $uibModal.open(
  30 + {
  31 + ariaLabelledBy: 'Informes de choferes',
  32 + templateUrl: 'modal-informe-chofer.html',
  33 + controller: 'focaModalInformeChoferController',
  34 + size: 'lg'
  35 + }
  36 + );
  37 + };
28 38 }
29 39 ]);
... ... @@ -6,6 +6,10 @@ angular.module('focaInformes')
6 6 {
7 7 label: 'Hojas de ruta',
8 8 image: 'cliente.png'
  9 + },
  10 + {
  11 + label: 'Choferes',
  12 + image: 'chofer.png'
9 13 }
10 14 ];
11 15 return result;