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

fix fullscreen button with IE

This commit is contained in:
Luke Pulverenti 2015-05-17 21:27:48 -04:00
parent c5802fc5ab
commit 3114742ab7
18 changed files with 125 additions and 176 deletions

View file

@ -1,7 +1,7 @@
window.RegistrationServices = {
renderPluginInfo: function (page, pkg, pluginSecurityInfo) {
if (pkg.isPremium) {
$('.premiumPackage', page).show();
@ -82,8 +82,8 @@
}
},
addRecurringFields: function(page, period) {
addRecurringFields: function (page, period) {
var formSelector = '.supporterForm';
// Add recurring fields to form
@ -107,6 +107,12 @@
$('#ppCmd', page).val('_xclick-subscriptions');
$(formSelector, page).trigger('create');
}
},
initSupporterForm: function (page) {
$('.supporterForm', page).attr('action', 'https://www.paypal.com/cgi-bin/webscr');
$('.recurringSubscriptionCancellationHelp', page).html(Globalize.translate('LabelRecurringDonationCanBeCancelledHelp'));
}
};