From 9709ae88d8a2403ee69a291cf331cbbd7091141f Mon Sep 17 00:00:00 2001 From: Abhishek Anand Date: Sat, 8 Oct 2016 15:47:35 +0530 Subject: [PATCH] Fixed incorrect prop(onCloseResetsInput) in Readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 455c8a0ef4..03f0be4d27 100644 --- a/README.md +++ b/README.md @@ -371,7 +371,7 @@ function onInputKeyDown(event) { onBlurResetsInput | bool | true | whether to clear input on blur or not onChange | func | undefined | onChange handler: `function(newValue) {}` onClose | func | undefined | handler for when the menu closes: `function () {}` - onCloseResetInput | bool | true | whether to clear input when closing the menu through the arrow + onCloseResetsInput | bool | true | whether to clear input when closing the menu through the arrow onFocus | func | undefined | onFocus handler: `function(event) {}` onInputChange | func | undefined | onInputChange handler: `function(inputValue) {}` onInputKeyDown | func | undefined | input keyDown handler; call `event.preventDefault()` to override default `Select` behavior: `function(event) {}`