We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b70785d commit 098b9a0Copy full SHA for 098b9a0
src/bundle/Resources/public/js/scripts/edit.header.js
@@ -47,7 +47,12 @@
47
headerBottomRowNode.style.width = '100%';
48
}
49
};
50
+ const items = [{ container: headerNode }];
51
+
52
+ if (headerBottomRowNode) {
53
+ items.push({ container: headerBottomRowNode });
54
+ }
55
56
contentNode.addEventListener('scroll', fitHeader, false);
- controlManyZIndexes([{ container: headerNode }, { container: headerBottomRowNode }], headerNode);
57
+ controlManyZIndexes(items, headerNode);
58
})(window, window.document, window.ibexa);
0 commit comments