Closed vorg closed 9 years ago
I always just use setRate(0), which the documentation says pause() is equivalent to. I had JS functions like:
this.pause = function() { player.setRate(0); }; this.resume = function() { player.setRate(1); }; this.rate = function() { return player.rate(); };
That said I'm not opposed to adding it to the native interface
Ok, that makes sense. I'll use it this way instead of pause.