@annalib/anna-core 4.2.8 → 4.2.10
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
|
@@ -3288,6 +3288,10 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
3288
3288
|
const tableViewHeight = e.target.offsetHeight; // viewport
|
|
3289
3289
|
const tableScrollHeight = e.target.scrollHeight; // length of all table
|
|
3290
3290
|
const scrollLocation = e.target.scrollTop; // how far user scrolled
|
|
3291
|
+
const elements = document.getElementsByClassName("remarks-info-tooltip");
|
|
3292
|
+
while (elements.length > 0) {
|
|
3293
|
+
elements[0].remove();
|
|
3294
|
+
}
|
|
3291
3295
|
// If the user has scrolled within 150px of the bottom, add more data
|
|
3292
3296
|
const buffer = 150;
|
|
3293
3297
|
const limit = tableScrollHeight - tableViewHeight - buffer;
|