(c)
| 7190 | }; |
| 7191 | |
| 7192 | function callPendingCbs (c) { |
| 7193 | /* istanbul ignore if */ |
| 7194 | if (c.elm._moveCb) { |
| 7195 | c.elm._moveCb(); |
| 7196 | } |
| 7197 | /* istanbul ignore if */ |
| 7198 | if (c.elm._enterCb) { |
| 7199 | c.elm._enterCb(); |
| 7200 | } |
| 7201 | } |
| 7202 | |
| 7203 | function recordPosition (c) { |
| 7204 | c.data.newPos = c.elm.getBoundingClientRect(); |
nothing calls this directly
no outgoing calls
no test coverage detected