meteor-editable-text
meteor-editable-text copied to clipboard
type="number" turns everything into an integer value
What about using something like parseFloat instead of parseInt?
At this point in time, all my fields that are editable "number"s are ints. I actually use parseInt when using forms to collect these numbers. If your switched "number"s to use parseFloat instead, it would be an issue for me. maybe you could have type="float" type="int" options instead?
Good point. I won't change parseInt to parseFloat.