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
My angular app has a long loading time (15-20s!) which I identified is caused not by fetching data from API but the scrollbar loading on the page. Until the scrollbar is loaded the page freezes and is unscrollable.
I suspect this could be that as the data is loaded onto the page the scrollbar is resizing each time. The angular events for updateScrollbar do not work, is there another way to dynamically stop the scrollbar then start it when my data loads?
The text was updated successfully, but these errors were encountered:
I have discovered the issue is caused by this line in the original js file:
return function () { return delegateMethod.apply(contextObject, arguments); }
this command runs 360 times on one page and wont allow user to scroll page until this completes. can anyone shed any light on what this does and a way to prevent it running hundreds of times?
My angular app has a long loading time (15-20s!) which I identified is caused not by fetching data from API but the scrollbar loading on the page. Until the scrollbar is loaded the page freezes and is unscrollable.
I suspect this could be that as the data is loaded onto the page the scrollbar is resizing each time. The angular events for updateScrollbar do not work, is there another way to dynamically stop the scrollbar then start it when my data loads?
The text was updated successfully, but these errors were encountered: