Ilya Radchenko

Results 544 comments of Ilya Radchenko

@simov something in the meantime that would be helpful is documentation on how to create/reset the user.

@simov thanks, I just noticed that one myself.

I like the proposed `chess.checkMove` solution. Otherwise getting the value is simple, and would be different based on how you are building your game. Like it would be different for...

Do the following: ``` hbs Toggle pizzas select {{select-2 ... viewName='selectPizzas'}} ``` Might have to do `controller.selectPizzas`..

It's not sending an action to the selected object, but to the component, since we define that specific component as `selectPizzas`. You could have `selectPizzas2`, `selectPizzas3`, etc. and then just...

@Zambonilli can you publish yours to npm and enable issues?

Things like apostrophes (&#8217) or quotes (&#8220 and &#8221), etc.

Basically we are pulling in content from Wordpress via graphql and dynamically set opengraph data. Something like this: ```js afterModel(result) { this.set('headData.ogDescription', result.post.excerpt); this.set( 'headData.ogImage', result.post.featuredImage && result.post.featuredImage.sourceUrl ? result.post.featuredImage.sourceUrl...