Arthur Gunn

Results 18 comments of Arthur Gunn

@tuvistavie yes I think you're right that always firing `onchange` would be inconsistent. The reason I was thinking that is because of [React's onChange attribute](https://facebook.github.io/react/docs/forms.html). Here's a very simple test-case...

I would like to see support for streaming data from node as it is unparsed as per #568 and #652.

See the conversation at http://discuss.emberjs.com/t/ember-auto-nicer-properties-with-less-this-get-junk/2896/10

Great idea! With almost every rails project I want the same set of things - launch the server, tail the logs, open a console, start autotest etc. My suggestion for...

I'm not getting it in chrome either. Just an error - `Uncaught TypeError: Object false has no method 'play'`

Ah, figured it out - I had flash block enabled. With no flash, `soundManager.setVolume("ringing", 50)` returns `false` which was causing the problem.

A fully flexible approach that works more like DatePicker's `shouldDisableDate` option: ```javascript const allowHours = ({hours})=> hours >=9 && hours ( (hours==9 && minutes>=50) || (hours==16 && minutes

@leMaik agreed on the first option. The point of the second option is to allow this: ```javascript const officeHours = [{from: '9:00', to: '12:00'}, {from: '13:00', to: '17:00'}] return ```

Hi @limitall, In the example from your commit comment: ```js gStore.subscribe((setState)=>{ setState({isLogin: gStore.getState().isLogdin}) }, this.setState); ``` Could be written currently as just: ```js gStore.subscribe(()=> { this.setState({isLogin: gStore.state.isLogdin}) }); ``` Also,...

Hi @RobMaple sorry, I missed your comment somehow. Many smaller apps in the react world will actually render the entire app every update which is possible because react's v-dom diffing...