filtry URL dziennika DR

This commit is contained in:
2023-12-17 19:51:52 +01:00
parent e8ed36df16
commit 1e705ea496
6 changed files with 54 additions and 55 deletions
-2
View File
@@ -10,8 +10,6 @@ export default defineComponent({
mountObserver(actionFunction: () => void, target: Element) {
this.observer = new IntersectionObserver(
(entries) => {
console.log(entries);
if (entries[0].intersectionRatio > 0.5) actionFunction();
},
{ threshold: 0.2 }