mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-31 21:08:27 +01:00
Added an Id property to SystemInfo
This commit is contained in:
@@ -6,17 +6,17 @@
|
||||
|
||||
|
||||
pollForInfo: function () {
|
||||
$.getJSON("dashboardInfo").done(AboutPage.renderInfo);
|
||||
ApiClient.getSystemInfo().done(AboutPage.renderInfo);
|
||||
},
|
||||
|
||||
renderInfo: function (dashboardInfo) {
|
||||
AboutPage.renderSystemInfo(dashboardInfo);
|
||||
renderInfo: function (info) {
|
||||
AboutPage.renderSystemInfo(info);
|
||||
},
|
||||
|
||||
|
||||
renderSystemInfo: function (dashboardInfo) {
|
||||
renderSystemInfo: function (info) {
|
||||
var page = $.mobile.activePage;
|
||||
$('#appVersionNumber', page).html(dashboardInfo.SystemInfo.Version);
|
||||
$('#appVersionNumber', page).html(info.Version);
|
||||
},
|
||||
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user