diff --git a/source/Ox.UI/js/Video/Ox.VideoPlayer.js b/source/Ox.UI/js/Video/Ox.VideoPlayer.js index 44330f41..a23fedcb 100644 --- a/source/Ox.UI/js/Video/Ox.VideoPlayer.js +++ b/source/Ox.UI/js/Video/Ox.VideoPlayer.js @@ -293,7 +293,7 @@ Ox.VideoPlayer = function(options, self) { // and poster doesn't seem to work at all Ox.extend({ preload: self.options.preload, - src: self.video + src: self.video, }, !self.options.paused && !self.options.playInToOut ? { autoplay: 'autoplay' } : {}/*, self.options.poster ? { @@ -1570,6 +1570,7 @@ Ox.VideoPlayer = function(options, self) { //self.$video.currentTime(self.options.position); setPosition(self.options.position); + self.$video.muted(self.options.muted).volume(self.options.volume); // if not paused, but playInToOut, we haven't set autoplay before, // since autoplay seems to always play from the beginning