mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
improve identify feature
This commit is contained in:
parent
3d7ee79192
commit
2412089b0a
3 changed files with 8 additions and 2 deletions
|
@ -23,6 +23,8 @@
|
||||||
<div class="fieldDescription paperCheckboxFieldDescription">${ImportFavoriteChannelsHelp}</div>
|
<div class="fieldDescription paperCheckboxFieldDescription">${ImportFavoriteChannelsHelp}</div>
|
||||||
</div>
|
</div>
|
||||||
<br />
|
<br />
|
||||||
|
<p>${DrmChannelsNotImported}</p>
|
||||||
|
<br />
|
||||||
<div>
|
<div>
|
||||||
<button type="submit" data-role="none" class="clearButton">
|
<button type="submit" data-role="none" class="clearButton">
|
||||||
<paper-button raised class="submit block"><iron-icon icon="check"></iron-icon><span>${ButtonSave}</span></paper-button>
|
<paper-button raised class="submit block"><iron-icon icon="check"></iron-icon><span>${ButtonSave}</span></paper-button>
|
||||||
|
|
|
@ -552,6 +552,7 @@
|
||||||
function destroyCustomTrack(videoElement, isPlaying) {
|
function destroyCustomTrack(videoElement, isPlaying) {
|
||||||
|
|
||||||
window.removeEventListener('resize', onVideoResize);
|
window.removeEventListener('resize', onVideoResize);
|
||||||
|
window.removeEventListener('orientationchange', onVideoResize);
|
||||||
|
|
||||||
var videoSubtitlesElem = document.querySelector('.videoSubtitles');
|
var videoSubtitlesElem = document.querySelector('.videoSubtitles');
|
||||||
if (videoSubtitlesElem) {
|
if (videoSubtitlesElem) {
|
||||||
|
@ -630,6 +631,8 @@
|
||||||
renderer.resize(videoElement.offsetWidth, videoElement.offsetHeight, 0, 0);
|
renderer.resize(videoElement.offsetWidth, videoElement.offsetHeight, 0, 0);
|
||||||
window.removeEventListener('resize', onVideoResize);
|
window.removeEventListener('resize', onVideoResize);
|
||||||
window.addEventListener('resize', onVideoResize);
|
window.addEventListener('resize', onVideoResize);
|
||||||
|
window.removeEventListener('orientationchange', onVideoResize);
|
||||||
|
window.addEventListener('orientationchange', onVideoResize);
|
||||||
//clock.pause();
|
//clock.pause();
|
||||||
}
|
}
|
||||||
catch (ex) {
|
catch (ex) {
|
||||||
|
|
|
@ -2351,7 +2351,7 @@
|
||||||
"CoverArt": "Cover Art",
|
"CoverArt": "Cover Art",
|
||||||
"ButtonOff": "Off",
|
"ButtonOff": "Off",
|
||||||
"TitleHardwareAcceleration": "Hardware Acceleration",
|
"TitleHardwareAcceleration": "Hardware Acceleration",
|
||||||
"HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.",
|
"HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.",
|
||||||
"HeaderSelectCodecIntrosPath": "Select Codec Intros Path",
|
"HeaderSelectCodecIntrosPath": "Select Codec Intros Path",
|
||||||
"ButtonLocalRefresh": "Local refresh",
|
"ButtonLocalRefresh": "Local refresh",
|
||||||
"ButtonAddMissingData": "Add missing data only",
|
"ButtonAddMissingData": "Add missing data only",
|
||||||
|
@ -2368,5 +2368,6 @@
|
||||||
"TabResumeSettings": "Resume Settings",
|
"TabResumeSettings": "Resume Settings",
|
||||||
"HowDidYouPay": "How did you pay?",
|
"HowDidYouPay": "How did you pay?",
|
||||||
"IHaveEmbyPremiere": "I have Emby Premiere",
|
"IHaveEmbyPremiere": "I have Emby Premiere",
|
||||||
"IPurchasedThisApp": "I purchased this app"
|
"IPurchasedThisApp": "I purchased this app",
|
||||||
|
"DrmChannelsNotImported": "Channels with DRM will not be imported."
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue