This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository coser. See http://git.codelutin.com/coser.git commit 0ea8613212f22486df8abc8411dc0ca03dc045a0 Author: Tony CHEMIT <chemit@codelutin.com> Date: Tue Jan 20 15:25:11 2015 +0100 fixes #6506: Impossible d'extraire juste les données --- coser-web/src/main/webapp/WEB-INF/content/search/extract-input.jsp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/coser-web/src/main/webapp/WEB-INF/content/search/extract-input.jsp b/coser-web/src/main/webapp/WEB-INF/content/search/extract-input.jsp index fffebd1..e719817 100644 --- a/coser-web/src/main/webapp/WEB-INF/content/search/extract-input.jsp +++ b/coser-web/src/main/webapp/WEB-INF/content/search/extract-input.jsp @@ -46,8 +46,11 @@ }; var checkSubmitAction = function() { - var valid = $('#selectSpecies option:selected').length > 0; + var valid = true; + if (valid && $('#selectSpecies').is(":visible")) { + valid = $('#selectSpecies option:selected').length > 0; + } if (valid && $('#selectComIndicators').is(":visible")) { valid = $('#selectComIndicators option:selected').length > 0; } -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.