미디어위키:Gadget-Vector.js: 두 판 사이의 차이
식물 vs 좀비 위키
편집 요약 없음 |
편집 요약 없음 |
||
| 184번째 줄: | 184번째 줄: | ||
} else { | } else { | ||
initTopSearch(); | initTopSearch(); | ||
} | |||
}()); | |||
(function () { | |||
'use strict'; | |||
function syncSearchLeft() { | |||
var content = document.querySelector('.skin-vector-legacy #content'); | |||
var left; | |||
if (!content) { | |||
return; | |||
} | |||
left = content.getBoundingClientRect().left + window.scrollX; | |||
document.documentElement.style.setProperty('--pvz-content-left', left + 'px'); | |||
} | |||
function initSearchAlignment() { | |||
syncSearchLeft(); | |||
window.addEventListener('resize', syncSearchLeft, { passive: true }); | |||
window.addEventListener('orientationchange', syncSearchLeft, { passive: true }); | |||
} | |||
if (document.readyState === 'loading') { | |||
document.addEventListener('DOMContentLoaded', initSearchAlignment, { once: true }); | |||
} else { | |||
initSearchAlignment(); | |||
} | } | ||
}()); | }()); | ||
