mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
added pricing header
This commit is contained in:
parent
c83eb94a90
commit
2fab9770a7
2 changed files with 2 additions and 4 deletions
|
@ -39,7 +39,7 @@
|
||||||
|
|
||||||
<fieldset data-role="controlgroup">
|
<fieldset data-role="controlgroup">
|
||||||
<legend>
|
<legend>
|
||||||
<h3></h3>
|
<h3>Pricing:</h3>
|
||||||
</legend>
|
</legend>
|
||||||
<input class="chkPremiumFilter" type="checkbox" name="chkPremium" id="chkPremium" data-theme="c" data-filter="IsPremium">
|
<input class="chkPremiumFilter" type="checkbox" name="chkPremium" id="chkPremium" data-theme="c" data-filter="IsPremium">
|
||||||
<label for="chkPremium">Premium</label>
|
<label for="chkPremium">Premium</label>
|
||||||
|
|
|
@ -2,8 +2,6 @@
|
||||||
|
|
||||||
// The base query options
|
// The base query options
|
||||||
var query = {
|
var query = {
|
||||||
IsPremium: false,
|
|
||||||
TargetSystems: ""
|
|
||||||
};
|
};
|
||||||
|
|
||||||
function reloadList(page) {
|
function reloadList(page) {
|
||||||
|
@ -102,7 +100,7 @@
|
||||||
if (this.checked) {
|
if (this.checked) {
|
||||||
query.IsPremium = true;
|
query.IsPremium = true;
|
||||||
} else {
|
} else {
|
||||||
query.IsPremium = false;
|
query.IsPremium = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
reloadList(page);
|
reloadList(page);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue