1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

lowercase dashboard filenames

This commit is contained in:
Luke Pulverenti 2013-03-26 15:09:50 -04:00
parent f1b011fa18
commit ac31d33c0c
132 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,24 @@
var AboutPage = {
onPageShow: function () {
AboutPage.pollForInfo();
},
pollForInfo: function () {
ApiClient.getSystemInfo().done(AboutPage.renderInfo);
},
renderInfo: function (info) {
AboutPage.renderSystemInfo(info);
},
renderSystemInfo: function (info) {
var page = $.mobile.activePage;
$('#appVersionNumber', page).html(info.Version);
},
};
$(document).on('pageshow', "#aboutPage", AboutPage.onPageShow);