David Idol

Results 76 comments of David Idol

No prob! Yeah, I realize the virtual getters would be a breaking change. You could always support both types, but that may be overkill. Personally (and I realize it is...

I believe there should be [a **controlled** `value` prop](https://facebook.github.io/react/docs/forms.html#controlled-components) for this component _in addition to_ a `defaultValue` (uncontrolled) prop. As it is right now, there is no good way to...

I would even go so far as to request the support of a `valueLink` prop to use with [ReactLink](https://facebook.github.io/react/docs/two-way-binding-helpers.html) on controlled components, but this is just nice sugar on top...

+1 on this. I got a workaround going with the following: ``` js React.createClass({ getInitialState() { return { activated: false }; }, _activate() { if (!this.state.activated) { this.setState({ activated: true...

I'm seeing this issue as well, although no "YouTube has crashed" error. Just getting hit with the onboarding screens for Return YouTube Dislike etc. on (what seems like) every other...

I'd prefer to have this be optional