Commit 80a34bfc41f5d4ad7ebde77bc62bb2a610e06398

Authored by Eric Fernandez
1 parent 2a6ce45a7f
Exists in master

ok jshint

Showing 1 changed file with 3 additions and 2 deletions   Show diff stats
src/js/controller.js
... ... @@ -7,7 +7,8 @@ angular.module('focaModalDomicilio')
7 7 '$uibModalInstance',
8 8 'idCliente',
9 9 'focaModalDomicilioService',
10   - function($timeout, $filter, $scope, $uibModalInstance, idCliente, focaModalDomicilioService) {
  10 + function($timeout, $filter, $scope, $uibModalInstance, idCliente,
  11 + focaModalDomicilioService) {
11 12  
12 13 $scope.buscar = function() {
13 14 focaModalDomicilioService
... ... @@ -87,7 +88,7 @@ angular.module('focaModalDomicilio')
87 88  
88 89 $scope.busquedaPress = function(key) {
89 90 if (key === 13) {
90   - $scope.search(true)
  91 + $scope.search(true);
91 92 }
92 93 };
93 94