diff --git a/source/Ox.UI/js/Video/VideoPlayer.js b/source/Ox.UI/js/Video/VideoPlayer.js index ce48edcd..3f4a6757 100644 --- a/source/Ox.UI/js/Video/VideoPlayer.js +++ b/source/Ox.UI/js/Video/VideoPlayer.js @@ -499,7 +499,7 @@ Ox.VideoPlayer = function(options, self) { .attr({ src: Ox.UI.getImageURL('symbol' + ( self.options.paused ? 'Play' : 'Pause' - ), 'modern') + ), 'video') }) .appendTo(self.$videoContainer); if (self.options.showIcon) { @@ -517,7 +517,9 @@ Ox.VideoPlayer = function(options, self) { }) .addClass('OxCensoredIcon OxVideo') .attr({ - src: Ox.UI.getImageURL('symbol' + self.options.censoredIcon, 'modern') + src: Ox.UI.getImageURL( + 'symbol' + self.options.censoredIcon, 'video' + ) }) .hide() .bindEvent({ @@ -2381,7 +2383,7 @@ Ox.VideoPlayer = function(options, self) { self.$playIcon.attr({ src: Ox.UI.getImageURL( 'symbol' + (self.options.paused ? 'Play' : 'Pause' - ), 'modern') + ), 'video') }); }