I'm using the setClassToggle() method from ScrollMagic. The idea is that when you scroll down pass a trigger, you can add a css class to an element. And if you scroll up pass a trigger, it will remove the class from the element. As described in documentation here:
http://scrollmagic.io/docs/ScrollMagic.Scene.html#setClassToggle
Eg.
scene.setClassToggle("#my-elem", "myclass");
However, I do NOT want the class removed when you scroll up pass the trigger. I only want the class added and PERSIST after you scroll down pass the trigger. How do I get Scroll Magic to behave in this manner? Is it even possible?