Ming Liu

Results 41 comments of Ming Liu

> jQuery has since removed the GPL2 license and is offered only under the terms of an MIT license. Future versions of Touch Punch will reflect this change. Maybe now...

Your web framework should be doing this. For example, expressjs allows you to specify 'view options', which will be passed to the view's compile as options argument.

Any better way to organize this? Obviously we can't list every Ember add-on ever created. Many add-ons can be found on emberaddons.com. Awesome pages are supposed to showcase the best...

That's on v0.3.0 :) We're on v0.1.2 right now and it's broken. > On Sep 23, 2015, at 12:53 PM, intuitivepixel [email protected] wrote: > > @ming-codes it is in dependencies...

:+1: I think class methods can be defined on prototype. But with JavaScript there's not real way to say whether a function is a class method or property of type...

Also game engines like phaser js, which are usually more optimized.

I think we can totally do this with AST transforms. Transform from this. ``` // Component.hbs {{#to-elsewhere named="my-right-sidebar"}} {{this.model}} {{/to-elsewhere}} ``` To this ``` // Component.hbs {{to-elsewhere named="my-right-sidebar" send=(component "Component$1"...

Here's a very crude POC of that https://github.com/ming-codes/ember-elsewhere-block-form

I'm getting the same error. Did you find a solution?

I think the `where` statement can make better styling when used appropriately. ``` promise.then resolve, resolve where resolve = (fate) -> # vs. resolve = (fate) -> promise.then resolve, resolve...