add missing public togglePaused method to Ox.VideoTimelinePlayer

This commit is contained in:
rlx 2012-04-24 08:18:08 +00:00
parent aae7ba2485
commit d7f0464ee6

View file

@ -802,6 +802,11 @@ Ox.VideoTimelinePlayer = function(options, self) {
}
};
that.togglePaused = function() {
togglePaused();
return that;
};
return that;
};