remove webm messages
This commit is contained in:
@@ -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
|
||||
};
|
||||
|
||||
@@ -903,10 +900,6 @@
|
||||
if (item.Type == "Channel") {
|
||||
errorMsg += " Please ensure there is an open tuner availalble.";
|
||||
}
|
||||
|
||||
if ($.browser.msie && !canPlayWebm()) {
|
||||
errorMsg += " " + msieWebmMessage;
|
||||
}
|
||||
|
||||
Dashboard.alert({
|
||||
title: 'Video Error',
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user