diff options
Diffstat (limited to 'client/src/standalone/videos/embed.html')
-rw-r--r-- | client/src/standalone/videos/embed.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/client/src/standalone/videos/embed.html b/client/src/standalone/videos/embed.html index 3455b4aa4..8ec03d199 100644 --- a/client/src/standalone/videos/embed.html +++ b/client/src/standalone/videos/embed.html | |||
@@ -44,5 +44,31 @@ | |||
44 | 44 | ||
45 | <div id="placeholder-preview"></div> | 45 | <div id="placeholder-preview"></div> |
46 | 46 | ||
47 | <script type="text/javascript"> | ||
48 | // Can be called in embed.ts | ||
49 | window.displayIncompatibleBrowser = function () { | ||
50 | const text = 'The player is not compatible with your web browser. Please try latest Firefox version.' | ||
51 | |||
52 | document.title = 'Sorry' + ' - ' + text | ||
53 | |||
54 | const errorBlock = document.getElementById('error-block') | ||
55 | errorBlock.style.display = 'flex' | ||
56 | |||
57 | const errorTitle = document.getElementById('error-title') | ||
58 | errorTitle.innerHTML = 'Sorry' | ||
59 | |||
60 | const errorText = document.getElementById('error-content') | ||
61 | errorText.innerHTML = text | ||
62 | } | ||
63 | |||
64 | window.onerror = function () { | ||
65 | window.displayIncompatibleBrowser() | ||
66 | } | ||
67 | |||
68 | if (/MSIE|Trident/.test(window.navigator.userAgent) ) { | ||
69 | window.displayIncompatibleBrowser() | ||
70 | } | ||
71 | </script> | ||
72 | |||
47 | </body> | 73 | </body> |
48 | </html> | 74 | </html> |