Currently Browsing "Javascript"

Global Events in Meteor

Unlike template helpers which can be added globally via registerHelpers, in Meteor, global events are DIY. While adding tooltips to our upcoming web app, we needed to add click events to multiple templates and Template.body.events wasn’t going to work for our setup. So, we did a simple little workaround and used a jQuery plugin. jQuery […]
Continue Reading