1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Change catalog filter to "Free Only"

This commit is contained in:
Eric Reed 2013-08-26 15:15:44 -04:00
parent 58742183c1
commit fffc06da70
2 changed files with 2 additions and 2 deletions

View file

@ -50,7 +50,7 @@
<h3>Pricing:</h3>
</legend>
<input class="chkPremiumFilter" type="checkbox" name="chkPremium" id="chkPremium" data-theme="c" data-filter="IsPremium">
<label for="chkPremium">Premium</label>
<label for="chkPremium">Free Only</label>
</fieldset>
</form>
</div>

View file

@ -105,7 +105,7 @@
$('.chkPremiumFilter', page).on('change', function () {
if (this.checked) {
query.IsPremium = true;
query.IsPremium = false;
} else {
query.IsPremium = null;
}