Fix world info screen and bump application.js version

This commit is contained in:
Gnome Ann 2021-09-28 19:00:23 -04:00
parent c44946f216
commit 8447ec44ab
3 changed files with 9 additions and 2 deletions

View File

@ -466,6 +466,7 @@ function enterWiMode() {
hide([button_actback, button_actmem, button_actretry, game_text]); hide([button_actback, button_actmem, button_actretry, game_text]);
show([wi_menu]); show([wi_menu]);
disableSendBtn(); disableSendBtn();
$("#gamescreen").addClass("wigamescreen");
} }
function exitWiMode() { function exitWiMode() {
@ -474,6 +475,7 @@ function exitWiMode() {
hide([wi_menu]); hide([wi_menu]);
show([button_actback, button_actmem, button_actretry, game_text]); show([button_actback, button_actmem, button_actretry, game_text]);
enableSendBtn(); enableSendBtn();
$("#gamescreen").removeClass("wigamescreen");
scrollToBottom(); scrollToBottom();
} }

View File

@ -77,6 +77,11 @@ chunk.editing, chunk.editing * {
font-family: "Helvetica"; font-family: "Helvetica";
} }
#gamescreen.wigamescreen {
padding: 10px;
overflow-y: scroll;
}
#gamescreen span { #gamescreen span {
align-self: flex-end; align-self: flex-end;
} }

View File

@ -6,14 +6,14 @@
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<script src="static/jquery-3.6.0.min.js"></script> <script src="static/jquery-3.6.0.min.js"></script>
<script src="static/socket.io.min.js"></script> <script src="static/socket.io.min.js"></script>
<script src="static/application.js?ver=0.15.0g"></script> <script src="static/application.js?ver=1.16.1a"></script>
<script src="static/bootstrap.min.js"></script> <script src="static/bootstrap.min.js"></script>
<script src="static/bootstrap-toggle.min.js"></script> <script src="static/bootstrap-toggle.min.js"></script>
<script src="static/rangy-core.min.js"></script> <script src="static/rangy-core.min.js"></script>
<link rel="stylesheet" href="static/bootstrap.min.css"> <link rel="stylesheet" href="static/bootstrap.min.css">
<link rel="stylesheet" href="static/bootstrap-toggle.min.css"> <link rel="stylesheet" href="static/bootstrap-toggle.min.css">
<link rel="stylesheet" href="static/custom.css?ver=0.15.0g"> <link rel="stylesheet" href="static/custom.css?ver=1.16.1a">
<link rel="stylesheet" href="static/open-iconic-bootstrap.min.css"> <link rel="stylesheet" href="static/open-iconic-bootstrap.min.css">
</head> </head>
<body> <body>