mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00

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)
5 lines
No EOL
123 B
JavaScript
5 lines
No EOL
123 B
JavaScript
Template.mobile_nav.events({
|
|
'click .mobile-nav a':function(event){
|
|
$('body').toggleClass('mobile-nav-open');
|
|
}
|
|
}); |