10 lines
297 B
JavaScript
10 lines
297 B
JavaScript
import { Template } from 'meteor/templating';
|
|
|
|
Template.toolbarSectionTools.events({
|
|
'click .expandable'(event, instance) {
|
|
const $target = $(event.currentTarget);
|
|
const isExpanded = $target.hasClass('expanded');
|
|
$target.toggleClass('expanded', !isExpanded);
|
|
}
|
|
});
|