jellyfin-web/dashboard-ui/scripts/supporterpage.js

11 lines
212 B
JavaScript
Raw Normal View History

2014-04-13 10:27:13 -07:00
(function () {
2013-02-20 18:33:05 -07:00
2014-04-13 10:27:13 -07:00
$(document).on('pageshow', "#supporterPage", function () {
2013-02-20 18:33:05 -07:00
2014-04-13 10:27:13 -07:00
var page = this;
$('#paypalReturnUrl', page).val(ApiClient.getUrl("supporterkey.html"));
2013-02-20 18:33:05 -07:00
2014-04-13 10:27:13 -07:00
});
2013-02-20 18:33:05 -07:00
2014-04-13 10:27:13 -07:00
})();