Fix 3 minor errors in jsp files
- Add a missing `$` in dlnaSettings - Add a missing taglib import in homePage.jsp - Add a missing `=` in playQueue.jsp's css
This commit is contained in:
@@ -35,7 +35,7 @@
|
||||
<sec:csrfInput />
|
||||
|
||||
<div>
|
||||
<input type="checkbox" name="dlnaEnabled" id="dlnaEnabled" {model.dlnaEnabled? "checked": ""}/>
|
||||
<input type="checkbox" name="dlnaEnabled" id="dlnaEnabled" ${model.dlnaEnabled? "checked": ""}/>
|
||||
<label for="dlnaEnabled"><fmt:message key="dlnasettings.enabled"/></label>
|
||||
</div>
|
||||
<p class="detail" style="width:60%;white-space:normal">
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
||||
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
|
||||
<%@ taglib uri="http://www.springframework.org/tags" prefix="spring"%>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<c:if test="${not empty model.musicFolder}">
|
||||
|
||||
@@ -692,7 +692,7 @@
|
||||
<c:if test="${model.player.web}">
|
||||
<td>
|
||||
<div id="player" style="width:340px; height:40px;padding-right:10px">
|
||||
<audio id="audioPlayer" class="mejs__player" data-mejsoptions='{"alwaysShowControls": true, "enableKeyboard": false}' width="340px" height"40px" tabindex="-1" />
|
||||
<audio id="audioPlayer" class="mejs__player" data-mejsoptions='{"alwaysShowControls": true, "enableKeyboard": false}' width="340px" height="40px" tabindex="-1" />
|
||||
</div>
|
||||
<div id="castPlayer" style="display: none">
|
||||
<div style="float:left">
|
||||
|
||||
Reference in New Issue
Block a user