This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository coselmar. See http://git.codelutin.com/coselmar.git commit da0b12ca38cbf3eb7b0dfde9f1d3157875fe613d Author: Yannick Martel <martel@©odelutin.com> Date: Mon Jan 12 08:23:42 2015 +0100 fixes #6425 fix search on documents --- coselmar-ui/src/main/webapp/js/coselmar-controllers.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/coselmar-ui/src/main/webapp/js/coselmar-controllers.js b/coselmar-ui/src/main/webapp/js/coselmar-controllers.js index 627db7d..1d0e8af 100644 --- a/coselmar-ui/src/main/webapp/js/coselmar-controllers.js +++ b/coselmar-ui/src/main/webapp/js/coselmar-controllers.js @@ -83,7 +83,7 @@ coselmarControllers.controller("DocumentsCtrl", ['$scope', '$route', '$routePara $scope.searchKeywords.push(keywords); } - documentService.getDocuments([], function(documents) { + documentService.getDocuments($scope.searchKeywords, function(documents) { $scope.documents = documents; }); @@ -777,7 +777,7 @@ coselmarControllers.controller('ModalSearchDocumentsCtrl', function ($scope, $mo $scope.searchKeywords = []; - documentService.getDocuments([], function(documents) { + documentService.getDocuments($scope.searchKeywords, function(documents) { $scope.documents = documents; }); -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.