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

Display client version in the dashboard

This commit is contained in:
Luke Pulverenti 2013-07-09 12:11:16 -04:00
parent 04142091d9
commit 1200f8284d
4 changed files with 11 additions and 8 deletions

View file

@ -94,7 +94,9 @@
html += '</td>';
html += '<td>';
html += connection.DeviceName;
html += '<div>' + connection.Client + '</div>';
html += '<div>' + connection.ApplicationVersion + '</div>';
html += '<div>' + connection.DeviceName + '</div>';
html += '</td>';
html += '<td>';
@ -291,7 +293,7 @@
}
$('#programDataPath', page).html(dashboardInfo.SystemInfo.ProgramDataPath);
var host = ApiClient.serverHostName();
var url = "http://" + host + ":" + port + "/mediabrowser";