(node)
| 9368 | } |
| 9369 | |
| 9370 | function handleControlledInputBlur(node) { |
| 9371 | var state = node._wrapperState; |
| 9372 | |
| 9373 | if (!state || !state.controlled || node.type !== 'number') { |
| 9374 | return; |
| 9375 | } |
| 9376 | |
| 9377 | { |
| 9378 | // If controlled, assign the value attribute to the current value on blur |
| 9379 | setDefaultValue(node, 'number', node.value); |
| 9380 | } |
| 9381 | } |
| 9382 | /** |
| 9383 | * This plugin creates an `onChange` event that normalizes change events |
| 9384 | * across form elements. This event fires at a time when it's possible to |
no test coverage detected