(function () { $(document).on('pagebeforeshow', "#logPage", function () { var page = this; var apiClient = ApiClient; apiClient.getJSON(apiClient.getUrl('System/Logs')).done(function (logs) { var html = ''; html += ''; $('.serverLogs', page).html(html).trigger('create'); }); }); })();