hi all i am using angularjs editable-number it's only allow number to enter but my need is it's allows decimal also it's not allow to enter decimal values help how to solve this problem
<a href="#" editable-number="user.number"></a>
Set the e-step
attribute to "any"
:
<a href="#" editable-number="user.number" e-step="any">{{user.number || 'Enter number'}}</a>