Skip to content

Commit

Permalink
fix #376
Browse files Browse the repository at this point in the history
  • Loading branch information
basvasilich committed Jun 6, 2014
1 parent 4f7abc8 commit ac4e4db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blocks/input/input.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ nb.define('input', {
}.bind(this);

// IE 9/10 Enter Key causing Form Submit / Button Click
this.$control.keypress(function(e) {
/* this.$control.keypress(function(e) {
if (e.which == 13) {
e.preventDefault();
}
});
}); */

$(document).on('mousedown', this._onmousedown);
$(document).on('touchstart', this._onmousedown);
Expand Down

0 comments on commit ac4e4db

Please sign in to comment.