diff --git a/source/Ox.UI/js/Video/Ox.VideoPlayer.js b/source/Ox.UI/js/Video/Ox.VideoPlayer.js index 75988661..44330f41 100644 --- a/source/Ox.UI/js/Video/Ox.VideoPlayer.js +++ b/source/Ox.UI/js/Video/Ox.VideoPlayer.js @@ -991,7 +991,7 @@ Ox.VideoPlayer = function(options, self) { }) .bindEvent({ click: function() { - toggleMuted(); + toggleMuted('button'); } }) .appendTo(self.$volume); @@ -1417,15 +1417,15 @@ Ox.VideoPlayer = function(options, self) { function getVolumeImageURL() { var symbol; if (self.options.muted || self.options.volume == 0) { - symbol = 'unmute'; + symbol = 'Unmute'; } else if (self.options.volume < 1/3) { symbol = 'VolumeUp'; } else if (self.options.volume < 2/3) { symbol = 'VolumeDown'; } else { - symbol = 'mute'; + symbol = 'Mute'; } - return Ox.UI.getImageURL('symbol' + symbol, 'modern'); + return Ox.UI.getImageURL('symbol' + symbol); } function goToNextClip(direction) {