branch develop updated (d1ef702 -> da0b12c)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository coselmar. See http://git.codelutin.com/coselmar.git from d1ef702 [jgitflow-maven-plugin]Updating develop poms back to pre merge state new da0b12c fixes #6425 fix search on documents The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit da0b12ca38cbf3eb7b0dfde9f1d3157875fe613d Author: Yannick Martel <martel@©odelutin.com> Date: Mon Jan 12 08:23:42 2015 +0100 fixes #6425 fix search on documents Summary of changes: coselmar-ui/src/main/webapp/js/coselmar-controllers.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
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>.
participants (1)
-
codelutin.com scm