diff --git a/source/Ox.UI/js/Video/ClipPanel.js b/source/Ox.UI/js/Video/ClipPanel.js index 906fc6ef..d32be06e 100644 --- a/source/Ox.UI/js/Video/ClipPanel.js +++ b/source/Ox.UI/js/Video/ClipPanel.js @@ -20,7 +20,6 @@ Ox.ClipPanel = function(options, self) { }, getClipImageURL: null, 'in': 0, - itemName: '', layers: [], out: 0, position: 0, @@ -95,7 +94,7 @@ Ox.ClipPanel = function(options, self) { id: 'title', format: self.options.formatTitle, operator: '+', - title: self.options.itemName, + title: Ox._('Title'), visible: true, width: 120 }, @@ -171,6 +170,8 @@ Ox.ClipPanel = function(options, self) { {id: 'annotations', title: Ox._('View Annotations'), checked: self.options.view == 'annotations'}, ]}, {}, + {id: 'select', title: 'Select Clip at Current Position', disabled: true}, + {}, {id: 'split', title: Ox._('Split Selected Clips at Cuts'), disabled: !self.options.editable || !self.options.selected.length || self.options.view == 'annotations'}, {id: 'join', title: Ox._('Join Selected Clips at Cuts'), disabled: !self.options.editable || self.options.selected.length < 2 || self.options.view == 'annotations'}, {id: 'replace', title: Ox._('Make Selected Clips Editable'), disabled: !self.options.editable || !self.options.selected.length || self.options.view == 'annotations'} @@ -378,7 +379,6 @@ Ox.ClipPanel = function(options, self) { font: self.options.annotationsFont, //highlight: self.options.find, //'in': self.options['in'], - //itemName: self.options.itemName, layers: self.options.layers, mapSize: self.options.annotationsMapSize, //out: self.options.out, diff --git a/source/Ox.UI/js/Video/VideoEditPanel.js b/source/Ox.UI/js/Video/VideoEditPanel.js index 45d956e6..3aacf520 100644 --- a/source/Ox.UI/js/Video/VideoEditPanel.js +++ b/source/Ox.UI/js/Video/VideoEditPanel.js @@ -29,7 +29,6 @@ Ox.VideoEditPanel = function(options, self) { getLargeTimelineURL: null, height: 0, 'in': 0, - itemName: '', loop: false, layers: [], muted: false, @@ -333,7 +332,6 @@ Ox.VideoEditPanel = function(options, self) { formatTitle: self.options.formatTitle, getClipImageURL: self.options.getClipImageURL, 'in': self.options['in'], - itemName: self.options.itemName, layers: Ox.clone(self.options.layers), out: self.options.out, position: self.options.position,