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