Resolved: Too many played cards will cover hand

Fixes #1

Drove me nuts on my friend's version. This worked for a quick fix. Probably a better place to put it, but I can't be bothered to look for it. :p
This commit is contained in:
Akai Alonkai 2015-02-19 02:09:22 -05:00
parent 359c5e1140
commit 4b2f74bf11
1 changed files with 11 additions and 0 deletions

View File

@ -455,5 +455,16 @@ HttpSession hSession = request.getSession(true);
</div>
</div>
<div style="position:absolute; left:-99999px" role="alert" id="aria-notifications"></div>
<script type="text/javascript">
$( ".game_right_side" ).hover(function() {
$( this ).style.zIndex = "1000";
$( ".game_hand_cards" ).style.zIndex = "0";
}
$( ".game_hand_cards" ).hover(function() {
$( this ).style.zIndex = "1000";
$( ".game_right_side" ).style.zIndex = "0";
}
</script>
</body>
</html>