Skip to content

Commit

Permalink
Merge pull request #385 from kagemomiji/issue381-recover-now-playing-…
Browse files Browse the repository at this point in the history
…view

#381 recover NowPlaying View at right column
  • Loading branch information
kagemomiji authored Feb 28, 2024
2 parents 492f8c0 + 264a85d commit d32198c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions airsonic-main/src/main/resources/templates/right.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<th:block th:replace="jquery" />
<script type="text/javascript" th:src="@{/script/utils.js}"></script>

<script type="text/javascript">
<script type="text/javascript" th:inline="javascript">
function scanningStatus(msg) {
var scanInfo = JSON.parse(msg.body);
$("#scanCount").text(scanInfo.count);
Expand Down Expand Up @@ -83,7 +83,7 @@
html += "<span class='songTitle'>" + status.title + "</span></a><br/>";
if (status.lyricsUrl != null) {
html += "<span class='forward'><a href='" + status.lyricsUrl + "' onclick=\"return popupSize(this, 'lyrics', 500, 550)\">" +
"[[#{main.lyrics}]]" + "</a></span>";
/*[[#{main.lyrics}]]*/ "Lyrics" + "</a></span>";
}
html += "</td><td>" +
"<a title='" + status.tooltip + "' target='main' href='" + status.albumUrl + "'>" +
Expand Down

0 comments on commit d32198c

Please sign in to comment.