jellyfish-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
})();