Created
October 10, 2014 13:55
-
-
Save davidworkman9/a1b9d30f39b551bc2215 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Blaze.registerHelper('isEqual', function (lhs, rhs) { | |
return lhs === rhs; | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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