Skip to content

Instantly share code, notes, and snippets.

@ciwolsey
Created July 9, 2014 20:05
Show Gist options
  • Save ciwolsey/edcd8e4bdab36a080838 to your computer and use it in GitHub Desktop.
Save ciwolsey/edcd8e4bdab36a080838 to your computer and use it in GitHub Desktop.
<template name="UserStatusList">
<div id="UserStatusList">
{{#each onlineUser}}
<div class="username" style="background-color: {{profile.textcolor}}">
{{ profile.username}}
</div>
{{>foo}}
{{/each}}
</div>
</template>
<template name="foo">
hello
</template>
-----------------------
Template.foo.rendered = function(){
console.log("im only getting called once :(");
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment