percolatestudio / meteor-momentum

Reactive animation package for Meteorjs
https://atmospherejs.com/percolate/momentum
MIT License
166 stars 21 forks source link

compatibility with Jade templates #34

Open sunstorymvp opened 9 years ago

sunstorymvp commented 9 years ago
if showContentTags
  .tags
    each tags
      a.brandTag(href="#")=name

Hi, I can't understand how to wrap jade code with momentum helper? Could you explain? Thanks!

tmeasday commented 9 years ago

I'm not sure. How does Jade do template includes? Can they have sub content? Does it work with Spacebars?

jazeee commented 9 years ago

Just for completeness, Spacebar templates are compatible with the Jade package as documented. https://github.com/mquandalle/meteor-jade#templates

Typically, you would use:

+momentum plugin='X'
  .your-div  your content, etc...
sunstorymvp commented 9 years ago

thanks!