()
| 901 | paused = false; |
| 902 | }, |
| 903 | pause = function pause() { |
| 904 | playPauseMorph.reverse(); |
| 905 | |
| 906 | if (linkedAnimation) { |
| 907 | linkedAnimation.pause(); |
| 908 | } |
| 909 | |
| 910 | paused = true; |
| 911 | }, |
| 912 | togglePlayPause = function togglePlayPause() { |
| 913 | if (paused) { |
| 914 | play(); |
no test coverage detected
searching dependent graphs…