You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- class IHKLinkCollection {
- constructor(div) {
- const observer = new ResizeObserver((entries) => {
- entries.map((entry) => {
- const w = entry.borderBoxSize[0].inlineSize;
- if (w < 1000) {
- div.dataset.cols = '1';
- } else {
- div.dataset.cols = '2';
- }
- })
- })
- observer.observe(div);
- }
- }
-
- export default IHKLinkCollection;
|