Last Updated: February 25, 2016
·
1.921K
· cassioscabral

How to make dropdown nav from Twitter Bootstrap 3 work on Meteor

Was looking for and didn't find anything so I just handle the event with:

Template.myTemplate.events({
'click .dropdown-toggle': function (e) {
    e.preventDefault();
    $(e.target).find('.dropdown-menu').toggle();
    }
});