toggle() {
this.elem.classList.toggle('open');
+ const expanded = this.elem.classList.contains('open') ? 'true' : 'false';
+ this.toggleButton.setAttribute('aria-expanded', expanded);
}
setActiveTab(tabName, openToolbox = false) {
}
-module.exports = EditorToolbox;
\ No newline at end of file
+export default EditorToolbox;
\ No newline at end of file