branch develop updated (c91ec94 -> 0ea8613)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository coser. See http://git.codelutin.com/coser.git from c91ec94 [jgitflow-maven-plugin]Updating develop poms back to pre merge state new 0ea8613 fixes #6506: Impossible d'extraire juste les données 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 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 Summary of changes: coser-web/src/main/webapp/WEB-INF/content/search/extract-input.jsp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) -- 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 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>.
participants (1)
-
codelutin.com scm