From 2b3d8807d934777186fd310381b39ec494a6ca05 Mon Sep 17 00:00:00 2001 From: rlx <0x0073@0x2620.org> Date: Sat, 5 Nov 2011 20:14:24 +0000 Subject: [PATCH] fix bugs in video panel player --- source/Ox.UI/js/Video/Ox.VideoPanelPlayer.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/source/Ox.UI/js/Video/Ox.VideoPanelPlayer.js b/source/Ox.UI/js/Video/Ox.VideoPanelPlayer.js index 8ca0e306..de0c0abd 100644 --- a/source/Ox.UI/js/Video/Ox.VideoPanelPlayer.js +++ b/source/Ox.UI/js/Video/Ox.VideoPanelPlayer.js @@ -1,7 +1,5 @@ // vim: et:ts=4:sw=4:sts=4:ft=javascript -'use strict'; - /*@ Ox.VideoPanelPlayer VideoPanelPlayer Object () -> VideoPanelPlayer Object @@ -99,13 +97,13 @@ Ox.VideoPanelPlayer = function(options, self) { fullscreen: function(data) { self.options.fullscreen = data.fullscreen; }, - position: setPosition, muted: function(data) { that.triggerEvent('muted', data); }, paused: function(data) { that.triggerEvent('paused', data); }, + playing: setPosition, position: function(data) { that.triggerEvent('position', data); },