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

Add recurring donation option

Needs localization
This commit is contained in:
Eric Reed 2014-07-03 14:47:43 -04:00
parent 5bec78f61f
commit 88ea125f3b
2 changed files with 49 additions and 10 deletions

View file

@ -1,11 +1,48 @@
(function () {
$(document).on('pageshow', "#supporterPage", function () {
var SupporterPage = {
onPageShow: function() {
var page = this;
$('#paypalReturnUrl', page).val(ApiClient.getUrl("supporterkey.html"));
$('#cbxRecurring', '#supporterPage').change(function() {
if (this.checked) {
SupporterPage.addRecurringFields();
} else {
SupporterPage.removeRecurringFields();
}
});
},
addRecurringFields: function() {
// Add recurring fields to form
$("<input type='hidden' name='a3' class='pprecurring' />")
.attr('value', $('#donateAmt', '#supporterPage').val())
.appendTo("#payPalForm", '#supporterPage');
$("<input type='hidden' name='p3' value='1' class='pprecurring' />")
.appendTo("#payPalForm", '#supporterPage');
$("<input type='hidden' name='t3' value='M' class='pprecurring' />")
.appendTo("#payPalForm", '#supporterPage');
$("<input type='hidden' name='src' value='1' class='pprecurring' />")
.appendTo("#payPalForm", '#supporterPage');
$("<input type='hidden' name='sra' value='1' class='pprecurring' />")
.appendTo("#payPalForm", '#supporterPage');
});
//change command for subscriptions
$('#ppCmd', '#supporterPage').val('_xclick-subscriptions');
$('#payPalForm', '#supporterPage').trigger('create');
},
removeRecurringFields: function() {
$('.pprecurring', '#supporterPage').remove();
//change command back
$('#ppCmd', '#supporterPage').val('_xclick');
},
};
$(document).on('pageshow', "#supporterPage", SupporterPage.onPageShow);
})();