I’m looking for this as well. Are there any JS hooks defined?
OK, I created a solution in my local plugin version, but I would like to propose this in a merge request. How does that work in SVN?
@dlebret
@micksp
Thanks for the suggestion. This will be available on the next update. Then you’ll be able to call custom function in afterScroll hook.
Regards,
Mahesh
I saw that the feature was available in the new update thank you very much.
Do you have any documentation or can you quickly show me how to use this function?
thanks
@dlebret
Its simple, hook any function to afterScroll hook.
// Add an event listener
document.addEventListener('afterScroll', function () {
console.log('Fires after scroll');
});
Hope this helps.