branch develop updated (550f80e -> 0cf001c)
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 550f80e Merge branch 'develop' of https://git.codelutin.com/coselmar into develop new 0cf001c fixes #6433 fix form validation when adding new keyword/theme 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 0cf001c3bca062cdf906bbaedac7e71e13b98d5a Author: Yannick Martel <martel@©odelutin.com> Date: Thu Jan 29 11:43:52 2015 +0100 fixes #6433 fix form validation when adding new keyword/theme Summary of changes: coselmar-ui/src/main/webapp/views/documents/editDocument.html | 2 +- coselmar-ui/src/main/webapp/views/documents/newdocument.html | 4 ++-- coselmar-ui/src/main/webapp/views/questions/editquestion.html | 2 +- 3 files changed, 4 insertions(+), 4 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 0cf001c3bca062cdf906bbaedac7e71e13b98d5a Author: Yannick Martel <martel@©odelutin.com> Date: Thu Jan 29 11:43:52 2015 +0100 fixes #6433 fix form validation when adding new keyword/theme --- coselmar-ui/src/main/webapp/views/documents/editDocument.html | 2 +- coselmar-ui/src/main/webapp/views/documents/newdocument.html | 4 ++-- coselmar-ui/src/main/webapp/views/questions/editquestion.html | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/coselmar-ui/src/main/webapp/views/documents/editDocument.html b/coselmar-ui/src/main/webapp/views/documents/editDocument.html index 61bd0f9..d398776 100644 --- a/coselmar-ui/src/main/webapp/views/documents/editDocument.html +++ b/coselmar-ui/src/main/webapp/views/documents/editDocument.html @@ -150,7 +150,7 @@ </div> <div class="col-md-1"> - <button class="btn btn-primary" value="add" + <button type="button" class="btn btn-primary" value="add" ng-click="addKeyword(toAddKeyword); toAddKeyword=''">{{ 'common.button.add' | translate }}</button> </div> diff --git a/coselmar-ui/src/main/webapp/views/documents/newdocument.html b/coselmar-ui/src/main/webapp/views/documents/newdocument.html index 24c8b57..e73cd89 100644 --- a/coselmar-ui/src/main/webapp/views/documents/newdocument.html +++ b/coselmar-ui/src/main/webapp/views/documents/newdocument.html @@ -167,8 +167,8 @@ </div> <div class="col-md-1"> - <button class="btn btn-primary" value="add" - ng-click="addKeyword(toAddKeyword); toAddKeyword=''">{{ 'common.button.add' | translate }}</button> + <button type="button" class="btn btn-primary" + ng-click="addKeyword(toAddKeyword); toAddKeyword='';">{{ 'common.button.add' | translate }}</button> </div> diff --git a/coselmar-ui/src/main/webapp/views/questions/editquestion.html b/coselmar-ui/src/main/webapp/views/questions/editquestion.html index 21c670b..fd8b99e 100644 --- a/coselmar-ui/src/main/webapp/views/questions/editquestion.html +++ b/coselmar-ui/src/main/webapp/views/questions/editquestion.html @@ -130,7 +130,7 @@ </datalist> <div class="col-md-1"> - <button class="btn btn-primary" value="add" ng-click="addTheme(toAddTheme); toAddTheme=''">{{ 'common.button.add' | translate }}</button> + <button type="button" class="btn btn-primary" value="add" ng-click="addTheme(toAddTheme); toAddTheme=''">{{ 'common.button.add' | translate }}</button> </div> -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm