From 4dd5107a480f7d9728829754a35a8e36b2c715a7 Mon Sep 17 00:00:00 2001 From: rlx <0x0073@0x2620.org> Date: Mon, 24 Oct 2011 16:38:19 +0000 Subject: [PATCH] adjust DRM for laptop screens --- source/Ox.UI/js/Video/Ox.VideoPlayer.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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']();