machty / emblem.js

Emblem.js - Ember-friendly, indented syntax alternative for Handlebars.js
http://emblemjs.com
MIT License
1.04k stars 81 forks source link

each-in in ember 2 #253

Closed mmahalwy closed 8 years ago

mmahalwy commented 8 years ago

Does emblem now support each-in that's new in ember 2?

spinlock99 commented 8 years ago

What was the resolution to this? I just ran into it myself.

Thanks

coladarci commented 8 years ago

Works for me:

each-in myHash as |key value|
  h1 #{key}: #{value}
spinlock99 commented 8 years ago

Thanks!