Fade Effect
Fade Effect
tomrich
Posts: 14Questions: 0Answers: 0
How can I remove the fade in/out of the collection menus and when an editor form pops up?
This discussion has been closed.
Replies
There currently isn't a toggle option built into Editor to allow this control, so there are two options available:
1. Use jQuery's option to disable animations: `$.fx.off = true;` - http://api.jquery.com/jQuery.fx.off/ .
2. Make a modification to the lightbox display controller for Editor to remove the `animate` calls and just directly set the CSS values. This could be done in a display controller plug-in if you didn't want to modify the core code.
Regards,
Allan