Fade Effect

Fade Effect

tomrichtomrich Posts: 14Questions: 0Answers: 0
edited December 2013 in TableTools
How can I remove the fade in/out of the collection menus and when an editor form pops up?

Replies

  • allanallan Posts: 61,446Questions: 1Answers: 10,054 Site admin
    Hi,

    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
  • tomrichtomrich Posts: 14Questions: 0Answers: 0
    Cheers Allan
This discussion has been closed.