(type)
| 403 | return _removeListener(ScrollTrigger, "scrollEnd", _softRefresh) || _refreshAll(true); |
| 404 | }, |
| 405 | _dispatch = function _dispatch(type) { |
| 406 | return _listeners[type] && _listeners[type].map(function (f) { |
| 407 | return f(); |
| 408 | }) || _emptyArray; |
| 409 | }, |
| 410 | _savedStyles = [], |
| 411 | // when ScrollTrigger.saveStyles() is called, the inline styles are recorded in this Array in a sequential format like [element, cssText, gsCache, media]. This keeps it very memory-efficient and fast to iterate through. |
| 412 | _revertRecorded = function _revertRecorded(media) { |
no test coverage detected
searching dependent graphs…