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

11 lines
212 B
JavaScript
Raw Normal View History

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