diff --git a/source/Ox.UI/js/Video/Ox.VideoEditor.js b/source/Ox.UI/js/Video/Ox.VideoEditor.js index fadaf958..8e91dd2d 100644 --- a/source/Ox.UI/js/Video/Ox.VideoEditor.js +++ b/source/Ox.UI/js/Video/Ox.VideoEditor.js @@ -429,7 +429,7 @@ Ox.VideoEditor = function(options, self) { ); }); - self.$videoMenuButton = Ox.MenuButton({ + self.$menuButton = Ox.MenuButton({ items: Ox.merge( [ {group: 'size', min: 1, max: 1, items: [ @@ -1287,7 +1287,7 @@ Ox.VideoEditor = function(options, self) { self.options.videoSize = self.options.videoSize == 'small' ? 'large' : 'small'; setSizes(); - self.$videoMenuButton.checkItem(self.options.videoSize); + self.$menuButton.checkItem(self.options.videoSize); self.$player[0].options({ sizeIsLarge: self.options.videoSize == 'large' });