Skip to content

Instantly share code, notes, and snippets.

@davidworkman9
Created October 10, 2014 13:55
Show Gist options
  • Save davidworkman9/a1b9d30f39b551bc2215 to your computer and use it in GitHub Desktop.
Save davidworkman9/a1b9d30f39b551bc2215 to your computer and use it in GitHub Desktop.
Blaze.registerHelper('isEqual', function (lhs, rhs) {
return lhs === rhs;
});
<template name="template">
{{#each things}}
<li class="thing {{#if isEqual selectedEl this._id}}active{{/if}}"></li>
{{/each}}
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment