You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
833 B
30 lines
833 B
var SupporterPage = {
|
|
|
|
onPageShow: function () {
|
|
SupporterPage.load();
|
|
},
|
|
|
|
onPageHide: function () {
|
|
|
|
},
|
|
|
|
load: function() {
|
|
Dashboard.showLoadingMsg();
|
|
var page = $.mobile.activePage;
|
|
|
|
ApiClient.getPluginSecurityInfo().done(function (info) {
|
|
$('#txtSupporterKey', page).val(info.SupporterKey);
|
|
if (info.IsMBSupporter) {
|
|
$('.supporterOnly', page).show();
|
|
} else {
|
|
$('.supporterOnly', page).hide();
|
|
}
|
|
$('#paypalReturnUrl', page).val(ApiClient.getCustomUrl("dashboard/supporterKey.html"));
|
|
Dashboard.hideLoadingMsg();
|
|
});
|
|
}
|
|
};
|
|
|
|
$(document).on('pageshow', "#supporterPage", SupporterPage.onPageShow)
|
|
.on('pagehide', "#supporterPage", SupporterPage.onPageHide);
|