Currently, I am utilizing Snap JS to implement a drawer on the left with content displayed on the right. Despite this setup, I am encountering an issue where scrolling is still enabled for the content on the left when the drawer is open.
I am seeking guidance on the appropriate method to disable scrolling on the left side. In jQuery, I have attempted the following:
if (state == 'right')
"disable the left side so you can't scroll' ( $('.idofelement').disable();) ;
Is there a solution within Snap JS that allows for the disabling of the left side directly through the controller, rather than resorting to DOM manipulation?