fix bug with spacer in bottom controls
This commit is contained in:
parent
117c6bff62
commit
cf3d611bac
1 changed files with 1 additions and 1 deletions
|
@ -1335,7 +1335,7 @@ Ox.VideoPlayer = function(options, self) {
|
|||
self.iconSize = Math.max(Math.round(self.height / 10), 16),
|
||||
self.iconLeft = parseInt((self.width - self.iconSize) / 2),
|
||||
self.iconTop = parseInt((self.height - self.iconSize) / 2);
|
||||
if (self.$timeline || self.$space) {
|
||||
if (self.$timeline || self.$spaceBottom) {
|
||||
self.timelineWidth = self.width -
|
||||
self.options.controlsBottom.reduce(function(prev, curr) {
|
||||
return prev + (
|
||||
|
|
Loading…
Reference in a new issue