(core)
| 22 | _bonusValidated = 1, |
| 23 | //<name>PhysicsPropsPlugin</name> |
| 24 | _initCore = function _initCore(core) { |
| 25 | gsap = core || _getGSAP(); |
| 26 | |
| 27 | if (!_coreInitted) { |
| 28 | _getUnit = gsap.utils.getUnit; |
| 29 | _getStyleSaver = gsap.core.getStyleSaver; |
| 30 | |
| 31 | _reverting = gsap.core.reverting || function () {}; |
| 32 | |
| 33 | _coreInitted = 1; |
| 34 | } |
| 35 | }; |
| 36 | |
| 37 | var PhysicsProp = function PhysicsProp(target, p, velocity, acceleration, friction, stepsPerTimeUnit) { |
| 38 | var cache = target._gsap, |
no test coverage detected
searching dependent graphs…