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>.