intelicoreact 0.1.96 → 0.1.97
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -189,10 +189,10 @@ var NumericInput = function NumericInput(_ref) {
|
|
|
189
189
|
if (onKeyUp) onKeyUp(e.keyCode, e.target.value);
|
|
190
190
|
},
|
|
191
191
|
decrement: function decrement(e) {
|
|
192
|
-
handle.change(+intMemoVal - +numStep);
|
|
192
|
+
handle.change(+intMemoVal.toString().replace(/,/g, '') - +numStep);
|
|
193
193
|
},
|
|
194
194
|
increment: function increment(e) {
|
|
195
|
-
handle.change(+intMemoVal + +numStep);
|
|
195
|
+
handle.change(+intMemoVal.toString().replace(/,/g, '') + +numStep);
|
|
196
196
|
}
|
|
197
197
|
}; //Check Outside Click
|
|
198
198
|
|