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:
parent
359c5e1140
commit
4b2f74bf11
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue