1234567891011121314151617181920212223242526272829 |
- 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);
|