Skip to content

Instantly share code, notes, and snippets.

@rcy
Created July 23, 2013 19:13
Show Gist options
  • Save rcy/6065263 to your computer and use it in GitHub Desktop.
Save rcy/6065263 to your computer and use it in GitHub Desktop.
bootstrap modal meteor
Template.inviteModal.rendered = function() {
Deps.autorun(function() {
if (Session.equals('invite', true)) {
$('.modal').modal()
.on('hide', function() {
Session.set('invite', false);
});
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment