diff --git a/src/components/Footer.jsx b/src/components/Footer.jsx index ceca280..fcc6860 100644 --- a/src/components/Footer.jsx +++ b/src/components/Footer.jsx @@ -20,7 +20,13 @@ class JS13K extends Component { ? (this.props.codeSize / 1024).toFixed(2) : 0; return ( -
+
JS13K Games logo{' '} +
); } @@ -42,13 +54,21 @@ export default class Footer extends Component { constructor(props) { super(props); this.state = { - isKeyboardShortcutsModalOpen: false + isKeyboardShortcutsModalOpen: false, + isJs13kDropdownOpen: false }; } layoutBtnClickhandler(layoutId) { this.props.layoutBtnClickHandler(layoutId); } + js13kClickHandler() { + // console.log(999); + this.setState({ + isJs13kDropdownOpen: !this.state.isJs13kDropdownOpen + }); + } + render() { return (