()
| 910 | paused = true; |
| 911 | }, |
| 912 | togglePlayPause = function togglePlayPause() { |
| 913 | if (paused) { |
| 914 | play(); |
| 915 | } else { |
| 916 | pause(); |
| 917 | } |
| 918 | }, |
| 919 | //REWIND button |
| 920 | onPressRewind = function onPressRewind(e) { |
| 921 | if (progressDrag.isPressed) { |
no test coverage detected
searching dependent graphs…