mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Fix #185
This commit is contained in:
parent
03a19ef190
commit
d1f01ba55c
1 changed files with 2 additions and 2 deletions
|
@ -77,7 +77,7 @@
|
||||||
$('#regInfo', page).html(pkg.regInfo || "");
|
$('#regInfo', page).html(pkg.regInfo || "");
|
||||||
if (pkg.price > 0) {
|
if (pkg.price > 0) {
|
||||||
// Fill in PayPal info
|
// Fill in PayPal info
|
||||||
$('premiumHasPrice', page).show();
|
$('.premiumHasPrice', page).show();
|
||||||
$('#featureId', page).val(pkg.featureId);
|
$('#featureId', page).val(pkg.featureId);
|
||||||
$('#featureName', page).val(pkg.name);
|
$('#featureName', page).val(pkg.name);
|
||||||
$('#amount', page).val(pkg.price);
|
$('#amount', page).val(pkg.price);
|
||||||
|
@ -94,7 +94,7 @@
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
// Supporter-only feature
|
// Supporter-only feature
|
||||||
$('premiumHasPrice', page).hide();
|
$('.premiumHasPrice', page).hide();
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$('#regInfo', page).html("You must be a <a href='supporter.html'>Media Browser Supporter</a> in order to gain access to this feature.").trigger('create');
|
$('#regInfo', page).html("You must be a <a href='supporter.html'>Media Browser Supporter</a> in order to gain access to this feature.").trigger('create');
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue