Speed up the editor's display

Speed up the editor's display

burncharburnchar Posts: 118Questions: 12Answers: 0
edited August 2013 in Editor
Is there a simple way to speed up the display of the editor?
I'm using the envelope display controller. When frequent edits are made, it's tiresome to wait for the table to scroll up and the editor animation to slide down. I'd like to just eliminate or greatly reduce all animation so that the time between clicking "Edit" on a row and seeing the editor approaches zero.

Replies

  • allanallan Posts: 61,439Questions: 1Answers: 10,052 Site admin
    edited August 2013
    The animation speed uses the global jQuery animate option - so you can disable all animation using `$.fx.off = true` ( http://api.jquery.com/jQuery.fx.off/ ). Or set a default speed using `$.fx.speeds._default = 100;` .

    For more fine grained control (i.e. different from the jQuery default), you'd need to modify the display controller slightly.

    Allan
  • burncharburnchar Posts: 118Questions: 12Answers: 0
    My thanks, Allan.
This discussion has been closed.