diff --git a/source/Ox.UI/js/Video/Ox.VideoPlayer.js b/source/Ox.UI/js/Video/Ox.VideoPlayer.js index 3e30ea33..6d12252f 100644 --- a/source/Ox.UI/js/Video/Ox.VideoPlayer.js +++ b/source/Ox.UI/js/Video/Ox.VideoPlayer.js @@ -1033,11 +1033,11 @@ Ox.VideoPlayer = function(options, self) { function censor() { if (self.options.type == 'play') { self.$video - .brightness(self.censored ? 0.01 : self.options.brightness) + .brightness(self.censored ? 0.05 : self.options.brightness) .volume(self.censored ? 0.01 : self.options.volume); } else { self.$brightness.css({ - opacity: 1 - (self.censored ? 0.01 : self.options.brightness) + opacity: 1 - (self.censored ? 0.05 : self.options.brightness) }); } self.$copyrightIcon[self.censored ? 'show' : 'hide']();