jeluard / hipo

A ClojureScript DOM templating library based on hiccup syntax
100 stars 9 forks source link

Rely on cloneNode for static templates #7

Closed jeluard closed 9 years ago

jeluard commented 9 years ago

Static templates might benefit performance wise from being created once then cloned using cloneNode(true). Doing this in the general case (i.e. with data to fill in) does not seem worth it and would greatly complexify the implementation.

jeluard commented 9 years ago

Not worth it.