1 $this.closest('form').on('reset.autoNumeric', function () {
2 holder = getHolder($this);
3 if (holder) {
4 $this.autoNumeric('wipe');
5 var reSet = function() {
6 $this.autoNumeric('set', $this.val());
7 };
8 setTimeout(reSet, 100);
9 }
10 });
11