POSTS
Partial Templates With Underscore Js
We’re doing some pretty advanced stuff at my company using underscore.js and to simplify some of it I wanted to use partial templates in my templates.
For example, we have different kind of tooltips all over our application. The structure is similar but the text and a few classes might change.
Underscore allows you to add your own functions using _.mixin(). And within an underscore template, all the underscore functions are still available.
So here’s the simple code: