mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
minor dashboard cleanup
This commit is contained in:
parent
0f4e147e72
commit
c24735332f
29 changed files with 285 additions and 197 deletions
58
dashboard-ui/appsplayback.html
Normal file
58
dashboard-ui/appsplayback.html
Normal file
|
@ -0,0 +1,58 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>App Settings</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="appsPlaybackPage" data-role="page" class="page appsPage type-interior">
|
||||
|
||||
<div data-role="content">
|
||||
<div class="content-primary">
|
||||
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
|
||||
<a href="appsplayback.html" data-role="button" class="ui-btn-active">Playback</a>
|
||||
<a href="appsweather.html" data-role="button">Weather</a>
|
||||
</div>
|
||||
<form class="appsPlaybackForm">
|
||||
|
||||
<ul data-role="listview" class="ulForm">
|
||||
<li>
|
||||
<label for="txtMinResumePct">Min resume percentage: </label>
|
||||
<input type="number" id="txtMinResumePct" name="txtMinResumePct" pattern="[0-9]*" required="required" min="0" max="100" />
|
||||
<div class="fieldDescription">
|
||||
Titles are assumed unplayed if stopped before this time
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<label for="txtMaxResumePct">Max resume percentage: </label>
|
||||
<input type="number" id="txtMaxResumePct" name="txtMaxResumePct" pattern="[0-9]*" required="required" min="1" max="100" />
|
||||
<div class="fieldDescription">
|
||||
Titles are assumed fully played if stopped after this time
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<label for="txtMinResumeDuration">Min resume duration (seconds): </label>
|
||||
<input type="number" id="txtMinResumeDuration" name="txtMinResumeDuration" pattern="[0-9]*" required="required" min="0" />
|
||||
<div class="fieldDescription">
|
||||
Titles shorter than this will not be resumable
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<button type="submit" data-theme="b" data-icon="check">
|
||||
Save
|
||||
</button>
|
||||
<button type="button" onclick="Dashboard.navigate('dashboard.html');" data-icon="delete">
|
||||
Cancel
|
||||
</button>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
$('.appsPlaybackForm').off('submit', AppsPlaybackPage.onSubmit).on('submit', AppsPlaybackPage.onSubmit);
|
||||
</script>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue