From d7f0464ee68be3cff48ebd12491a1c546d152baa Mon Sep 17 00:00:00 2001 From: rlx <0x0073@0x2620.org> Date: Tue, 24 Apr 2012 08:18:08 +0000 Subject: [PATCH] add missing public togglePaused method to Ox.VideoTimelinePlayer --- source/Ox.UI/js/Video/Ox.VideoTimelinePlayer.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/Ox.UI/js/Video/Ox.VideoTimelinePlayer.js b/source/Ox.UI/js/Video/Ox.VideoTimelinePlayer.js index 83d8701c..8f0bfb89 100644 --- a/source/Ox.UI/js/Video/Ox.VideoTimelinePlayer.js +++ b/source/Ox.UI/js/Video/Ox.VideoTimelinePlayer.js @@ -802,6 +802,11 @@ Ox.VideoTimelinePlayer = function(options, self) { } }; + that.togglePaused = function() { + togglePaused(); + return that; + }; + return that; };