path.js 277 B

123456789101112131415161718
  1. this.playVideo = function(){
  2. }
  3. this.syncVideoState = function(){
  4. }
  5. this.unmute = function(){
  6. }
  7. this.setVideoState = function(isPlaying, startOffset, pausedTime){
  8. this.isPlaying = isPlaying;
  9. this.startOffset = startOffset;
  10. this.pausedTime = pausedTime;
  11. }