1
0
Fork 0
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:
Luke Pulverenti 2016-04-05 22:18:56 -04:00
parent 3d7ee79192
commit 2412089b0a
3 changed files with 8 additions and 2 deletions

View file

@ -23,6 +23,8 @@
<div class="fieldDescription paperCheckboxFieldDescription">${ImportFavoriteChannelsHelp}</div>
</div>
<br />
<p>${DrmChannelsNotImported}</p>
<br />
<div>
<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>

View file

@ -552,6 +552,7 @@
function destroyCustomTrack(videoElement, isPlaying) {
window.removeEventListener('resize', onVideoResize);
window.removeEventListener('orientationchange', onVideoResize);
var videoSubtitlesElem = document.querySelector('.videoSubtitles');
if (videoSubtitlesElem) {
@ -630,6 +631,8 @@
renderer.resize(videoElement.offsetWidth, videoElement.offsetHeight, 0, 0);
window.removeEventListener('resize', onVideoResize);
window.addEventListener('resize', onVideoResize);
window.removeEventListener('orientationchange', onVideoResize);
window.addEventListener('orientationchange', onVideoResize);
//clock.pause();
}
catch (ex) {

View file

@ -2351,7 +2351,7 @@
"CoverArt": "Cover Art",
"ButtonOff": "Off",
"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",
"ButtonLocalRefresh": "Local refresh",
"ButtonAddMissingData": "Add missing data only",
@ -2368,5 +2368,6 @@
"TabResumeSettings": "Resume Settings",
"HowDidYouPay": "How did you pay?",
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app"
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported."
}