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
... after the react-iscroll was rendered on DOM? For example I want to disable scrollY under certain conditions and re-enable it later. Binding the options=... to a state variable didn't work...
The text was updated successfully, but these errors were encountered:
Key is Object.assign({}, currentOptions, changedOptions). That mean, you have to create new object. Inside react-iscroll I do not compare each property separately, so If you just modify existing object it wont update component and wont refresh iscroll with new options.
I will take I look if I comparing can support changing of properties in options.
... after the react-iscroll was rendered on DOM? For example I want to disable
scrollY
under certain conditions and re-enable it later. Binding the options=... to a state variable didn't work...The text was updated successfully, but these errors were encountered: