From cbd2143714496d7c8098f2b5259e840b4ef7f907 Mon Sep 17 00:00:00 2001 From: rlx <0x0073@0x2620.org> Date: Tue, 6 Aug 2013 09:56:00 +0000 Subject: [PATCH] video player panel: react to loop update --- source/Ox.UI/js/Video/VideoPanel.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/Ox.UI/js/Video/VideoPanel.js b/source/Ox.UI/js/Video/VideoPanel.js index adafe461..a8df7501 100644 --- a/source/Ox.UI/js/Video/VideoPanel.js +++ b/source/Ox.UI/js/Video/VideoPanel.js @@ -92,6 +92,9 @@ Ox.VideoPanel = function(options, self) { 'in': function() { setPoint('in', self.options['in']); }, + loop: function() { + self.$video.options({loop: self.options.loop}); + }, out: function() { setPoint('out', self.options.out); },