@annalib/anna-core 12.3.1 → 12.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +5 -1
- package/fesm2015/annalib-anna-core.mjs +4 -0
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +4 -0
- package/fesm2020/annalib-anna-core.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -3578,10 +3578,14 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
3578
3578
|
}
|
|
3579
3579
|
removeTooltipOnScroll() {
|
|
3580
3580
|
const elements = document.getElementsByClassName("remarks-info-tooltip");
|
|
3581
|
+
const tooltipElements = document.getElementsByClassName("tooltip");
|
|
3581
3582
|
const gtTooltip = document.getElementsByClassName("remove-on-scroll-class");
|
|
3582
3583
|
while (elements && elements.length > 0) {
|
|
3583
3584
|
elements[0].remove();
|
|
3584
3585
|
}
|
|
3586
|
+
while (tooltipElements && tooltipElements.length > 0) {
|
|
3587
|
+
tooltipElements[0].remove();
|
|
3588
|
+
}
|
|
3585
3589
|
while (gtTooltip && gtTooltip.length > 0) {
|
|
3586
3590
|
gtTooltip[0].remove();
|
|
3587
3591
|
}
|