Kristian Dalgård

Results 92 comments of Kristian Dalgård

I don't think the supported length in `_arity` matters, since it's just a control structure.

I often use a logic helper to mimic a `case` or `switch` statement: ``` jade if is field 'ok' span OK else if is field 'maybe' span Maybe else span...

I've modified a fork of this package to support passing arguments to helpers, together with a few other useful features. The fork has been released as [`dalgard:jade`](https://github.com/dalgard/meteor-jade). I will keep...

I've modified a fork of this package to support passing arguments to attribute helpers, together with a few other useful features. The fork has been released as [`dalgard:jade`](https://github.com/dalgard/meteor-jade). I will...

I've modified a fork of this package to support the missing syntax, requested in this thread, together with a few other important features. The fork has been released as [`dalgard:jade`](https://github.com/dalgard/meteor-jade)....

I think this is mainly a challenge in Blaze land – the templating paradigm used is more or less logicless, which means that the correct thing to do is create...

This is solved in version `0.5.4` of [`dalgard:jade`](https://github.com/dalgard/meteor-jade). Check out the readme for more info about that package's relationship to this one.

I'm not sure embedding javascript in templates is a good idea. Especially for Blaze which is pretty much built on a logicless templating paradigm. I'd actually go so far as...

@webdif: Could you elaborate with an example? There are various patterns for giving an element one or more class names based on a condition.