From 40f707e0b18f0225d22f64040f77da8be0c5efb6 Mon Sep 17 00:00:00 2001 From: Matt Brookes Date: Wed, 7 Oct 2015 15:49:05 +0100 Subject: [PATCH] Expand details for time-picker onChange callback docs To match DatePicker docs. --- docs/src/app/components/pages/components/time-picker.jsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/src/app/components/pages/components/time-picker.jsx b/docs/src/app/components/pages/components/time-picker.jsx index 6140a4feaa2138..11b1a6f8383b25 100644 --- a/docs/src/app/components/pages/components/time-picker.jsx +++ b/docs/src/app/components/pages/components/time-picker.jsx @@ -60,7 +60,10 @@ let TimePickerPage = React.createClass({ name: 'onChange', header: 'function(null, time)', desc: 'Callback function that is fired when the time value ' + - 'changes. The time value is passed in a Date Object.' + 'changes. The time value is passed in a Date Object.' + + 'Since there is no particular event associated with ' + + 'the change the first argument will always be null and the second ' + + 'argument will be the new Date instance.' }, { name: 'onFocus',