mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
add ie11 playback message
This commit is contained in:
parent
c5ccae28b5
commit
ea34f6f28d
2 changed files with 8 additions and 1 deletions
|
@ -997,6 +997,13 @@
|
||||||
|
|
||||||
self.playVideo = function (item, mediaSource, startPosition, callback) {
|
self.playVideo = function (item, mediaSource, startPosition, callback) {
|
||||||
|
|
||||||
|
if (browserInfo.msie && !browserInfo.mobile) {
|
||||||
|
|
||||||
|
if (navigator.userAgent.indexOf('Windows NT 6.1;') != -1 || !mediaSource.RunTimeTicks) {
|
||||||
|
alert('Playback of this content is not supported in Internet Explorer. For a better experience, please try a modern browser such as Google Chrome, Firefox, Opera, or Microsoft Edge.');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// TODO: remove dependency on nowplayingbar
|
// TODO: remove dependency on nowplayingbar
|
||||||
requirejs(['videorenderer', 'css!css/nowplayingbar.css', 'css!css/mediaplayer-video.css', 'emby-slider'], function () {
|
requirejs(['videorenderer', 'css!css/nowplayingbar.css', 'css!css/mediaplayer-video.css', 'emby-slider'], function () {
|
||||||
|
|
||||||
|
|
|
@ -1721,7 +1721,7 @@
|
||||||
"StatusSuccess": "Success",
|
"StatusSuccess": "Success",
|
||||||
"MessageFileWillBeDeleted": "The following file will be deleted:",
|
"MessageFileWillBeDeleted": "The following file will be deleted:",
|
||||||
"MessageSureYouWishToProceed": "Are you sure you wish to proceed?",
|
"MessageSureYouWishToProceed": "Are you sure you wish to proceed?",
|
||||||
"MessageDuplicatesWillBeDeleted": "In addition the following dupliates will be deleted:",
|
"MessageDuplicatesWillBeDeleted": "In addition the following duplicates will be deleted:",
|
||||||
"MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:",
|
"MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:",
|
||||||
"MessageDestinationTo": "to:",
|
"MessageDestinationTo": "to:",
|
||||||
"HeaderSelectWatchFolder": "Select Watch Folder",
|
"HeaderSelectWatchFolder": "Select Watch Folder",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue