diff --git a/source/Ox.UI/js/Video/Ox.VideoEditor.js b/source/Ox.UI/js/Video/Ox.VideoEditor.js index 058e3d03..4f9f22e7 100644 --- a/source/Ox.UI/js/Video/Ox.VideoEditor.js +++ b/source/Ox.UI/js/Video/Ox.VideoEditor.js @@ -993,7 +993,7 @@ Ox.VideoEditor = function(options, self) { Ox.print('XXXX setSizes', key, value, self.options.width, self.options.height) setSizes(); } else if (key == 'position') { - self.$player[0].position(value); + setPosition(value); } }; diff --git a/source/Ox.UI/js/Video/Ox.VideoPreview.js b/source/Ox.UI/js/Video/Ox.VideoPreview.js index d66ffb19..e825af5c 100644 --- a/source/Ox.UI/js/Video/Ox.VideoPreview.js +++ b/source/Ox.UI/js/Video/Ox.VideoPreview.js @@ -99,7 +99,6 @@ Ox.VideoPreview = function(options, self) { if (key == 'frameHeight') { self.$frame.css({height: value + 'px'}); } else if (key == 'frameWidth') { - Ox.print('PREVIEW WIDTH', value); self.$frame.attr({src: self.options.getFrame()}) .css({width: value + 'px'}); self.$timeline.css({width: value + 'px'});