Skip to content

Commit

Permalink
Merge pull request customd#56 from harlanlewis/master
Browse files Browse the repository at this point in the history
Issue customd#27 - allow inputs with no value, instead of filling blank with 0
  • Loading branch information
Sam Sehnert committed Jun 5, 2014
2 parents a362d4b + c8fd1c1 commit 9e5afe1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jquery.number.js
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@
}
else
{
if(val === '')
if(val == '')
{
return el.value = '';
}
Expand Down

0 comments on commit 9e5afe1

Please sign in to comment.