Bump version to 1.5.0.24 and update changelog for recent changes
All checks were successful
Auto Release Plugin / build-and-release (push) Successful in 52s
All checks were successful
Auto Release Plugin / build-and-release (push) Successful in 52s
This commit is contained in:
@@ -2705,7 +2705,8 @@ const SlideshowManager = {
|
||||
}
|
||||
|
||||
const activeElement = document.activeElement;
|
||||
const isTvMode = window.layoutManager && window.layoutManager.tv;
|
||||
// Check if we're in TV mode (checking class on html or body is more reliable)
|
||||
const isTvMode = document.documentElement.classList.contains('layout-tv') || document.body.classList.contains('layout-tv') || (window.layoutManager && window.layoutManager.tv);
|
||||
const isSlideshowFocused = container.contains(activeElement) || activeElement === container || (!isTvMode && activeElement === document.body);
|
||||
|
||||
const isInputElement = activeElement && (activeElement.tagName === 'INPUT' || activeElement.tagName === 'TEXTAREA' || activeElement.isContentEditable);
|
||||
|
||||
Reference in New Issue
Block a user