Skip to content

Instantly share code, notes, and snippets.

@dburles
Created May 1, 2014 12:53
Show Gist options
  • Save dburles/1d8c69d9149d78de4b3c to your computer and use it in GitHub Desktop.
Save dburles/1d8c69d9149d78de4b3c to your computer and use it in GitHub Desktop.
Template.layout.events({
'click .terms-modal': function() {
Session.set('showTermsModal', true);
}
});
Template.layout.helpers({
termsModalOpen: function() {
return !!Session.get('showTermsModal');
}
});
Template.termsModal.events({
'click .close': function() {
Session.set('showTermsModal', false);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment