ohif-viewer/Packages/lesiontracker/client/components/toolbarSectionButton/toolbarSectionButton.js
2016-07-22 11:08:27 +02:00

14 lines
340 B
JavaScript

Template.toolbarSectionButton.helpers({
activeClass() {
const instance = Template.instance();
// Check if the current tool is the active one
if (instance.data.id === Session.get('ToolManagerActiveTool')) {
// Return the active class
return 'active';
}
return;
}
});