(c)
| 7196 | }; |
| 7197 | |
| 7198 | function callPendingCbs (c) { |
| 7199 | /* istanbul ignore if */ |
| 7200 | if (c.elm._moveCb) { |
| 7201 | c.elm._moveCb(); |
| 7202 | } |
| 7203 | /* istanbul ignore if */ |
| 7204 | if (c.elm._enterCb) { |
| 7205 | c.elm._enterCb(); |
| 7206 | } |
| 7207 | } |
| 7208 | |
| 7209 | function recordPosition (c) { |
| 7210 | c.data.newPos = c.elm.getBoundingClientRect(); |
nothing calls this directly
no outgoing calls
no test coverage detected