You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for your plugin, it's well, but when the offset=50, this scroll event will happen lots of time, and i wrote follow code to solve it, sometimes it is well, but if i scrolled fast, it's also a bug, how can i solve it perfectly?
This might be a bug in the directive with the scroll$ observable, however looking at your code maybe try setting this.disabled before calling any other methods. E.g:
Thanks for your answer, but it doesn't work. I was set a setTimeout for this scroll event, now it is fine, but sometimes it will happen that bug again. If you have greater solution, answer me pls, thank you.
Thank you for your plugin, it's well, but when the offset=50, this scroll event will happen lots of time, and i wrote follow code to solve it, sometimes it is well, but if i scrolled fast, it's also a bug, how can i solve it perfectly?
` disabled = false;
onScrollModal() {
if(this.disabled == false){
this.scro();
this.disabled = false;
}
}
The text was updated successfully, but these errors were encountered: