I added a debounce method inside a scroll event listener. Something like this.
$group.on("scroll.topFix",() => {
console.log('scroll event');
debounce(this, ()=> {
console.log('debounce called);
},1000);
});
When I do the scroll on $group
the debounce is also called the same number of times the scroll event called. I don't know where is the loophole in this thing.
For example, if 5 times the scroll event printed then debounce called is also called 5 times.
This is the link for ember debounce documentation.
Aucun commentaire:
Enregistrer un commentaire