Skip to content
Snippets Groups Projects

Move search bar to top nav to test usage changes

Merged Tomas Bulva requested to merge 480341-move-search-bar-to-top-nav-to-test-usage-changes into master
1 unresolved thread
Compare and Show latest version
6 files
+ 193
15
Compare changes
  • Side-by-side
  • Inline
Files
6
@@ -48,3 +48,21 @@ export function getCssClassDimensions(className) {
el.remove();
return { width, height };
}
function isNarrownScreenMediaQuery(elRef) {
const computedStyles = getComputedStyle(elRef);
const largeBreakpointSize = parseInt(computedStyles.getPropertyValue('--breakpoint-lg'), 10);
return window.matchMedia(`(max-width: ${largeBreakpointSize - 1}px)`);
}
export function isNarrowScreen(elRef) {
return isNarrownScreenMediaQuery(elRef).matches;
}
export function isNarrowScreenAddListener(elRef, handlerFn) {
isNarrownScreenMediaQuery(elRef).addEventListener('change', handlerFn);
}
export function isNarrowScreenRemoveListener(elRef, handlerFn) {
isNarrownScreenMediaQuery(elRef).removeEventListener('change', handlerFn);
}
Loading