why520crazy / angular-w5c-validator

a simple plugin for angular.js form validation
http://why520crazy.github.io/angular-w5c-validator
468 stars 162 forks source link

修正个bug #50

Closed realskyzou closed 8 years ago

realskyzou commented 8 years ago

在某些不是基于textarea开发的文本编辑器中,按回车会自动提交。 修改了下 if (ctrl.needBindKeydown) { form.bind("keydown keypress", function (event) { if (event.which === 13) { var currentInput = document.activeElement; if (currentInput.type&&currentInput.type !== "textarea") {

增加currentInput.type&&判断,就不会自动提交表单了。

why520crazy commented 8 years ago

好的

why520crazy commented 8 years ago

你能直接 提交 pull request 吗?

realskyzou commented 8 years ago

已pull

why520crazy commented 8 years ago

升级到 v2.4.12 即可