aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.WebDashboard/Html/scripts/aboutPage.js
blob: c9a275d9b203786ea09556173082cde701e0486f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
var AboutPage = {

    onPageShow: function () {
        AboutPage.pollForInfo();
    },


    pollForInfo: function () {
        $.getJSON("dashboardInfo").done(AboutPage.renderInfo);
    },

    renderInfo: function (dashboardInfo) {
        AboutPage.renderSystemInfo(dashboardInfo);
    },


    renderSystemInfo: function (dashboardInfo) {
        var page = $.mobile.activePage;
        $('#appVersionNumber', page).html(dashboardInfo.SystemInfo.Version);
    },

};

$(document).on('pageshow', "#aboutPage", AboutPage.onPageShow);