(el: Displayable)
| 330 | * We don't need to save this because universalTransition can get old style from the old element |
| 331 | */ |
| 332 | export function saveOldStyle(el: Displayable) { |
| 333 | transitionStore(el).oldStyle = el.style; |
| 334 | } |
| 335 | |
| 336 | export function getOldStyle(el: Displayable) { |
| 337 | return transitionStore(el).oldStyle; |
no outgoing calls
no test coverage detected
searching dependent graphs…