mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
limit videos for keyframe extraction
This commit is contained in:
parent
1f556561c6
commit
e9daebe89d
50 changed files with 1801 additions and 211 deletions
11
dashboard-ui/cordova/registrationservices.js
vendored
11
dashboard-ui/cordova/registrationservices.js
vendored
|
@ -136,6 +136,12 @@
|
|||
html += '<p>';
|
||||
html += '<paper-button raised class="secondary block btnAppUnlock"><iron-icon icon="check"></iron-icon><span>' + unlockText + '</span></paper-button>';
|
||||
html += '</p>';
|
||||
|
||||
if (IapManager.restorePurchase) {
|
||||
html += '<p>';
|
||||
html += '<paper-button raised class="secondary block btnRestorePurchase" style="background-color: #673AB7;"><iron-icon icon="check"></iron-icon><span>' + Globalize.translate('ButtonRestorePreviousPurchase') + '</span></paper-button>';
|
||||
html += '</p>';
|
||||
}
|
||||
}
|
||||
|
||||
if (info.enableSupporterUnlock) {
|
||||
|
@ -183,6 +189,11 @@
|
|||
IapManager.beginPurchase(info.id);
|
||||
});
|
||||
|
||||
$('.btnRestorePurchase', elem).on('click', function () {
|
||||
|
||||
IapManager.restorePurchase(info.id);
|
||||
});
|
||||
|
||||
$('.btnCancel', elem).on('click', function () {
|
||||
|
||||
clearCurrentDisplayingInfo();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue