jellyfin-web/dashboard-ui/appsplayback.html

59 lines
2.7 KiB
HTML
Raw Normal View History

2013-02-20 18:33:05 -07:00
<!DOCTYPE html>
<html>
<head>
2013-12-25 20:44:26 -07:00
<title>App Settings</title>
2013-02-20 18:33:05 -07:00
</head>
<body>
2013-12-25 20:44:26 -07:00
<div id="appsPlaybackPage" data-role="page" class="page appsPage type-interior">
2013-02-20 18:33:05 -07:00
<div data-role="content">
<div class="content-primary">
2013-12-25 20:44:26 -07:00
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
2014-01-08 13:29:09 -07:00
<a href="#" data-role="button" class="ui-btn-active">Resume</a>
2013-12-25 20:44:26 -07:00
<a href="appsweather.html" data-role="button">Weather</a>
</div>
<form class="appsPlaybackForm">
2013-02-20 18:33:05 -07:00
<ul data-role="listview" class="ulForm">
<li>
<label for="txtMinResumePct">Min resume percentage: </label>
2013-04-16 21:58:32 -07:00
<input type="number" id="txtMinResumePct" name="txtMinResumePct" pattern="[0-9]*" required="required" min="0" max="100" />
2013-02-20 18:33:05 -07:00
<div class="fieldDescription">
2013-12-25 20:44:26 -07:00
Titles are assumed unplayed if stopped before this time
2013-02-20 18:33:05 -07:00
</div>
</li>
<li>
<label for="txtMaxResumePct">Max resume percentage: </label>
2013-04-16 21:58:32 -07:00
<input type="number" id="txtMaxResumePct" name="txtMaxResumePct" pattern="[0-9]*" required="required" min="1" max="100" />
2013-02-20 18:33:05 -07:00
<div class="fieldDescription">
2013-12-25 20:44:26 -07:00
Titles are assumed fully played if stopped after this time
2013-02-20 18:33:05 -07:00
</div>
</li>
<li>
<label for="txtMinResumeDuration">Min resume duration (seconds): </label>
2013-04-16 21:58:32 -07:00
<input type="number" id="txtMinResumeDuration" name="txtMinResumeDuration" pattern="[0-9]*" required="required" min="0" />
2013-02-20 18:33:05 -07:00
<div class="fieldDescription">
Titles shorter than this will not be resumable
</div>
</li>
2013-04-16 21:58:32 -07:00
<li>
2013-12-24 11:37:29 -07:00
<button type="submit" data-theme="b" data-icon="check">
2013-02-20 18:33:05 -07:00
Save
</button>
2013-04-16 21:58:32 -07:00
<button type="button" onclick="Dashboard.navigate('dashboard.html');" data-icon="delete">
Cancel
</button>
2013-02-20 18:33:05 -07:00
</li>
</ul>
</form>
</div>
</div>
<script type="text/javascript">
2013-12-25 20:44:26 -07:00
$('.appsPlaybackForm').off('submit', AppsPlaybackPage.onSubmit).on('submit', AppsPlaybackPage.onSubmit);
2013-02-20 18:33:05 -07:00
</script>
</div>
</body>
</html>