Hans Smit
Hans Smit
I resolved this issue for my purposes by adding an additional if statement in the _checkValue function: ``` if (Number(val).toString() !== returnval.toString()) { if (originalinput.val() === returnval) { return; }...
I found a temporary work around, $(this).TouchSpin({ .... , forcestepdivisibility: null, ....}); By default the `forcestepdivisibility` is set to `round` which converts the value to a float. The problem arises...
I created a pull request. See: https://github.com/istvan-ujjmeszaros/bootstrap-touchspin/pull/132
For my purposes the problem is resolved. If tab is pressed when the numeric input field is focused, the `change` event is only triggered when the value is modified (good)....