1
0
Fork 0
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:
Luke Pulverenti 2013-04-04 00:46:14 -04:00
parent c83eb94a90
commit 2fab9770a7
2 changed files with 2 additions and 4 deletions

View file

@ -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>

View file

@ -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);