mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
#156 - Allow server to run as a service
This commit is contained in:
parent
a2dba21264
commit
5aea7b2c6a
2 changed files with 11 additions and 0 deletions
|
@ -2,6 +2,14 @@
|
|||
|
||||
function loadPage(page, config, systemInfo) {
|
||||
|
||||
var os = systemInfo.OperatingSystem.toLowerCase();
|
||||
|
||||
if (os.indexOf('windows') != -1) {
|
||||
$('#windowsStartupDescription', page).show();
|
||||
} else {
|
||||
$('#windowsStartupDescription', page).hide();
|
||||
}
|
||||
|
||||
if (systemInfo.SupportsNativeWebSocket) {
|
||||
|
||||
$('#fldWebSocketPortNumber', page).hide();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue