Skip to content

Instantly share code, notes, and snippets.

@srounce
Last active December 28, 2015 09:19
Show Gist options
  • Select an option

  • Save srounce/7478522 to your computer and use it in GitHub Desktop.

Select an option

Save srounce/7478522 to your computer and use it in GitHub Desktop.
Session.setDefault("Template.myTemp.navigationState", 0)
Template.myTemp.navigationStateClass = function() {
return ["open", "half-open", "closed"][Session.get("Template.myTemp.navigationState")]
}
<template name="myTemp">
<nav>
<ul class="dropdown {{navigationStateClass}}">
<li><a href="{{pathFor 'userhome'}}">Home</a></li>
<li><a href="{{pathFor 'search'}}">Search</a></li>
<li><a href="{{pathFor 'logout'}}">Logout</a></li>
</ul>
</nav>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment