Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dist/react-numeric-input.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ return /******/ (function(modules) { // webpackBootstrap
var KEYCODE_DOWN = 40;
var IS_BROWSER = typeof document != 'undefined';
var RE_NUMBER = /^[+-]?((\.\d+)|(\d+(\.\d+)?))$/;
var RE_INCOMPLETE_NUMBER = /^([+-]|\.0*|[+-]\.0*|[+-]?\d+\.)?$/;
var RE_INCOMPLETE_NUMBER = /^([+-]|[0-9]*\.0*|[+-]\.0*|[+-]?\d+\.)?$/;

/**
* Just a simple helper to provide support for older IEs. This is not exactly a
Expand Down
2 changes: 1 addition & 1 deletion docs/react-numeric-input.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ return /******/ (function(modules) { // webpackBootstrap
var KEYCODE_DOWN = 40;
var IS_BROWSER = typeof document != 'undefined';
var RE_NUMBER = /^[+-]?((\.\d+)|(\d+(\.\d+)?))$/;
var RE_INCOMPLETE_NUMBER = /^([+-]|\.0*|[+-]\.0*|[+-]?\d+\.)?$/;
var RE_INCOMPLETE_NUMBER = /^([+-]|[0-9]*\.0*|[+-]\.0*|[+-]?\d+\.)?$/;

/**
* Just a simple helper to provide support for older IEs. This is not exactly a
Expand Down