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

added dlna icon

This commit is contained in:
LukePulverenti 2013-03-04 21:32:14 -05:00
parent 32d40690e9
commit 5e990bf5b5
2 changed files with 4 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -138,6 +138,10 @@
return "<img src='css/images/clients/windowsphone.png' alt='Windows Phone' title='Windows Phone' />"; return "<img src='css/images/clients/windowsphone.png' alt='Windows Phone' title='Windows Phone' />";
} }
if (connection.ClientType == "Dlna") {
return "<img src='css/images/clients/dlna.png' alt='Dlna' title='Dlna' />";
}
return connection.ClientType; return connection.ClientType;
}, },