2018-07-30 14:15:39 -07:00
|
|
|
import { Template } from 'meteor/templating';
|
|
|
|
|
import './Public.html';
|
|
|
|
|
|
|
|
|
|
Template.Public.events({
|
2019-07-28 13:55:58 -07:00
|
|
|
'click .barButton': function(event, template) {
|
|
|
|
|
template.$('.dropMenu').toggle();
|
|
|
|
|
}
|
2018-07-30 14:15:39 -07:00
|
|
|
});
|