mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
remove webm messages
This commit is contained in:
parent
0cadf2308a
commit
e02f9c8726
4 changed files with 3 additions and 16 deletions
|
@ -32,7 +32,7 @@
|
|||
}
|
||||
|
||||
.posterItemOverlayInner {
|
||||
padding: 13px 13px 10px;
|
||||
padding: 11px 12px 10px;
|
||||
}
|
||||
|
||||
.smallBackdropPosterItem, .smallPosterItem {
|
||||
|
|
|
@ -1170,7 +1170,7 @@
|
|||
if (item.Type == "Channel") {
|
||||
return '';
|
||||
}
|
||||
if (item.Type == "Series" || item.Type == "Season" || item.Type == "BoxSet" || item.MediaType == "Video") {
|
||||
if (item.Type == "Series" || item.Type == "Season" || item.Type == "BoxSet" || item.MediaType == "Video" || item.MediaType == "Game" || item.MediaType == "Book") {
|
||||
if (item.RecursiveUnplayedItemCount) {
|
||||
return '<div class="unplayedIndicator">' + item.RecursiveUnplayedItemCount + '</div>';
|
||||
}
|
||||
|
|
|
@ -21,8 +21,6 @@
|
|||
var timeout;
|
||||
var idleState = true;
|
||||
|
||||
var msieWebmMessage = "For more reliable video playback with Internet Explorer desktop edition, please install google's webm plugin for IE.<br/><br/><a target='_blank' href='https://tools.google.com/dlpage/webmmf'>https://tools.google.com/dlpage/webmmf</a>";
|
||||
|
||||
self.playlist = [];
|
||||
var currentPlaylistIndex = 0;
|
||||
|
||||
|
@ -713,7 +711,6 @@
|
|||
SubtitleStreamIndex: getInitialSubtitleStreamIndex(mediaStreams, user),
|
||||
AudioStreamIndex: getInitialAudioStreamIndex(mediaStreams, user),
|
||||
deviceId: ApiClient.deviceId(),
|
||||
Type: item.Type,
|
||||
Static: false
|
||||
};
|
||||
|
||||
|
@ -904,10 +901,6 @@
|
|||
errorMsg += " Please ensure there is an open tuner availalble.";
|
||||
}
|
||||
|
||||
if ($.browser.msie && !canPlayWebm()) {
|
||||
errorMsg += " " + msieWebmMessage;
|
||||
}
|
||||
|
||||
Dashboard.alert({
|
||||
title: 'Video Error',
|
||||
message: errorMsg
|
||||
|
@ -1090,12 +1083,6 @@
|
|||
return;
|
||||
}
|
||||
}
|
||||
else if ($.browser.msie && videoType && !canPlayWebm()) {
|
||||
|
||||
self.playWithWarning(items, startPosition, user, "iewebmplugin", "Internet Explorer Playback", msieWebmMessage);
|
||||
return;
|
||||
|
||||
}
|
||||
|
||||
self.playInternal(items[0], startPosition, user);
|
||||
self.onPlaybackStarted(items);
|
||||
|
|
|
@ -801,7 +801,7 @@ var Dashboard = {
|
|||
|
||||
var webSocketUrl = "ws://" + location.hostname;
|
||||
|
||||
if (systemInfo.HttpServerPortNumber != systemInfo.WebSocketPortNumber) {
|
||||
if (systemInfo.HttpServerPortNumber == systemInfo.WebSocketPortNumber) {
|
||||
|
||||
if (location.port) {
|
||||
webSocketUrl += ':' + location.port;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue