xsanisty / calx.js

jQuery Calx - a jQuery plugin for creating formula-based calculation form
http://www.xsanisty.com/project/calx2
MIT License
198 stars 72 forks source link

error on defaultFormat #61

Open redmagi opened 5 years ago

redmagi commented 5 years ago

i used defaultFormat option with Numeral-js lastest version. you can found error "unformat" beacuse Numeral-js remove it in version 2 2.0.0

vipinmangalkar commented 5 years ago

Change Line no. 5938 from numeral().unformat(text); to return numeral(text).value();

Change Line no. 8422 from numeral().unformat($value); to numeral($value).value();

Change Line no. 8843 from var rawValue = numeral().unformat(elValue); to var rawValue = numeral(elValue).value();

Change Line no. 9813 from rawValue = numeral().unformat(newVal); to rawValue = numeral(newVal).value();