Vulcan/client/views/common/mobile_nav.js
Tarang Patel 39eb1c8e0a Update Events
Move from using depreciated event declaration style. Still supported
not sure if future proof (see
https://github.com/meteor/meteor/blob/devel/packages/templating/deftempl
ate.js#L184)
2013-11-24 16:13:53 +02:00

5 lines
No EOL
123 B
JavaScript

Template.mobile_nav.events({
'click .mobile-nav a':function(event){
$('body').toggleClass('mobile-nav-open');
}
});