Commit f7b32803c859c905ee3d6db431ee90a04b8e513b

Authored by Nicolás Guarnieri
Exists in master

Merge branch 'master' into 'master'

Master(efernandez)

See merge request !1
src/js/controller.js
... ... @@ -21,7 +21,7 @@ angular.module('focaModalBanco')
21 21 $scope.busquedaPress = function(key) {
22 22 if (key === 13) {
23 23 $scope.searchLoading = true;
24   - focaModalBancoService.getBancos($scope.filters).then(
  24 + focaModalBancoService.getBancos().then(
25 25 function(res) {
26 26 $scope.searchLoading = false;
27 27 $scope.primerBusqueda = true;
... ... @@ -2,6 +2,7 @@ angular.module('focaModalBanco')
2 2 .factory('focaModalBancoService', ['$http', 'API_ENDPOINT', function($http, API_ENDPOINT) {
3 3 return {
4 4 getBancos: function() {
  5 + //TODO: Pasar filtro
5 6 return $http.get(API_ENDPOINT.URL + '/banco');
6 7 }
7 8 };