Update help window tabs to activate on mouse down instead of up

This commit is contained in:
Ryan Huffman 2016-10-05 22:54:39 -07:00
parent 0e3e2b8a9a
commit 246a816b80

View file

@ -62,9 +62,9 @@
<body>
<div id="image_area">
<img id="main_image" src="img/controls-help-keyboard.jpg"></img>
<a href="#" id="kbm_button" onclick="showKbm()"></a>
<a href="#" id="hand_controllers_button" onclick="showHandControllers()"></a>
<a href="#" id="game_controller_button" onclick="showGameController()"></a>
<a href="#" id="kbm_button" onmousedown="showKbm()"></a>
<a href="#" id="hand_controllers_button" onmousedown="showHandControllers()"></a>
<a href="#" id="game_controller_button" onmousedown="showGameController()"></a>
</div>
</body>