(animation)
| 53 | return "M" + x + "," + y + "C" + coordinates.join(","); |
| 54 | }, |
| 55 | _getGlobalTime = function _getGlobalTime(animation) { |
| 56 | var time = animation.totalTime(); |
| 57 | |
| 58 | while (animation) { |
| 59 | time = animation.startTime() + time / (animation.timeScale() || 1); |
| 60 | animation = animation.parent; |
| 61 | } |
| 62 | |
| 63 | return time; |
| 64 | }, |
| 65 | _copyElement, |
| 66 | _initCopyToClipboard = function _initCopyToClipboard() { |
| 67 | _copyElement = _createElement("textarea"); |
no test coverage detected
searching dependent graphs…