David Lane

Results 4 comments of David Lane

Or, optionally, be able to specify callbacks as tokens and pass the functions a hash of user input: ``` js { controller: $${getControllerName}, link: $${directive} } ``` With a callback:...

I think that would be great! However, I'm having trouble figuring out a clean way to add additional options to this thing because of how restricting the syntax is. So...

A lot of people are into BEM these days... ``` .block { &__elem { width: 200; } &__elem_mod_blue { &:extend(.block__elem); color: blue; } &__elem_mod_green { &:extend(.block__elem); color: green; } }...