SamWM/jQuery-Plugins

Function removeNumeric doesn't have unbind() for "keyup"

Opened this issue · 0 comments

$.fn.removeNumeric = function()
{
return this.data("numeric.decimal", null).data("numeric.negative", null).data("numeric.callback", null)
.unbind("keypress", $.fn.numeric.keypress)
.unbind("keyup", $.fn.numeric.keyup)
.unbind("blur", $.fn.numeric.blur);
};