Alek Storm

Results 7 comments of Alek Storm

Bump. Is there any update on this?

I think you've misunderstood the templating language. How is only a "small subset" of functions available? The text immediately after the `if` is copied directly into a Javascript `if (cond)`...

As far as I know, yes. Please provide an example on http://jsfiddle.net/ if you find an expression that can't serve as an argument to an `{{if}}` statement (other than something...

Pull request #128 (which I submitted) adds a `{{set}}` tag for variable assignment. In the meantime, you can do `${var a = 0, ''}`. Beyond that, I can't imagine any...

Good question. Every assignment in Javascript returns the value of the right-hand side - the value of `var foo = 5` is `5`, which is why you can do `bar...