Skip to content

Commit

Permalink
SAK-29303 : tab key is also out of js filter
Browse files Browse the repository at this point in the history
  • Loading branch information
sinmsinm committed May 7, 2015
1 parent 981bf54 commit ad6c621
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions signup/tool/src/webapp/signup/organizer/userDefTsBlocks.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@
* check input is only numeric
*/
jQuery(".numericOnly").keydown(function(event) {
// Allow only backspace and delete
if ( event.keyCode == 46 || event.keyCode == 8 ) {
// Allow only backspace, delete and tab
if ( event.keyCode == 46 || event.keyCode == 8 || event.keyCode == 9) {
// let it happen, don't do anything
}
else {
Expand Down

0 comments on commit ad6c621

Please sign in to comment.