window.scrollY isn't supported on IE

Replace it with `window.pageYOffset`

Signed-off-by: XhmikosR <xhmikosr@gmail.com>
This commit is contained in:
XhmikosR
2019-12-18 20:57:35 +02:00
parent 03b3a1d604
commit 6e55b4f827

View File

@@ -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;