component / reactive

Tiny reactive template engine
382 stars 48 forks source link

interpolation: does { @first + ' ' + @last } still work? #69

Closed matthewmueller closed 11 years ago

matthewmueller commented 11 years ago

https://github.com/component/reactive/blame/master/Readme.md#L122

Not seeing any example / source of it. Gave it a shot and got illegal token error.

yields commented 11 years ago

i think @ was deprecated, you can just do { first + ' ' + last }

matthewmueller commented 11 years ago

oh nice, even better. thanks!