From 536de02f7ad38a2ef1433b489da91b139e824fb7 Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Fri, 9 Jan 2015 14:54:46 -0700 Subject: [PATCH] Documentation for input onFocus and onBlur --- docs/src/app/components/pages/components/inputs.jsx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/src/app/components/pages/components/inputs.jsx b/docs/src/app/components/pages/components/inputs.jsx index 485aff6dbaf8e1..f58ef688ac8560 100644 --- a/docs/src/app/components/pages/components/inputs.jsx +++ b/docs/src/app/components/pages/components/inputs.jsx @@ -167,6 +167,16 @@ var InputsPage = React.createClass({ name: 'onChange', header: 'function(e, value)', desc: 'Fired when the input is changed.' + }, + { + name: 'onFocus', + header: 'function(e)', + desc: 'Fired when the input has received focus.' + }, + { + name: 'onBlur', + header: 'function(e)', + desc: 'Fired when the input has lost focus.' } ] }