ensl_gathers/app/javascripts/components/menubar.js
2016-04-19 00:59:05 +01:00

17 lines
335 B
JavaScript

const MenubarMixin = exports.MenubarMixin = {
getInitialState() {
return {
show: false
}
},
toggleShow() {
this.setState({ show: !this.state.show });
},
componentClass() {
let componentClass = ["dropdown", "messages-menu"];
if (this.state.show) componentClass.push("open");
return componentClass.join(" ");
}
};