From 6e55b4f8275767abdfb1d8ca56c947776eb351ff Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Wed, 18 Dec 2019 20:57:35 +0200 Subject: [PATCH] `window.scrollY` isn't supported on IE Replace it with `window.pageYOffset` Signed-off-by: XhmikosR --- scripts/pi-hole/js/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pi-hole/js/index.js b/scripts/pi-hole/js/index.js index 969e6cdc..6406718e 100644 --- a/scripts/pi-hole/js/index.js +++ b/scripts/pi-hole/js/index.js @@ -119,7 +119,7 @@ var customTooltips = function(tooltip) { } tooltipEl.style.opacity = 1; tooltipEl.style.left = position.left + width + "px"; - tooltipEl.style.top = position.top + tooltip.caretY + window.scrollY + "px"; + tooltipEl.style.top = position.top + tooltip.caretY + window.pageYOffset + "px"; tooltipEl.style.fontFamily = tooltip._bodyFontFamily; tooltipEl.style.fontSize = tooltip.bodyFontSize + "px"; tooltipEl.style.fontStyle = tooltip._bodyFontStyle;