video edit panel: fix formatTitle default
This commit is contained in:
parent
2bec9b9496
commit
5bbac7aadd
2 changed files with 6 additions and 2 deletions
|
@ -15,7 +15,9 @@ Ox.ClipPanel = function(options, self) {
|
||||||
clickLink: null,
|
clickLink: null,
|
||||||
duration: 0,
|
duration: 0,
|
||||||
editable: false,
|
editable: false,
|
||||||
formatTitle: Ox.identity,
|
formatTitle: function() {
|
||||||
|
return Ox.last(arguments);
|
||||||
|
},
|
||||||
getClipImageURL: null,
|
getClipImageURL: null,
|
||||||
'in': 0,
|
'in': 0,
|
||||||
itemName: '',
|
itemName: '',
|
||||||
|
|
|
@ -19,7 +19,9 @@ Ox.VideoEditPanel = function(options, self) {
|
||||||
duration: 0,
|
duration: 0,
|
||||||
editable: false,
|
editable: false,
|
||||||
enableSubtitles: false,
|
enableSubtitles: false,
|
||||||
formatTitle: Ox.identity,
|
formatTitle: function() {
|
||||||
|
return Ox.last(arguments);
|
||||||
|
},
|
||||||
fps: 25,
|
fps: 25,
|
||||||
fullscreen: false,
|
fullscreen: false,
|
||||||
getClipImageURL: null,
|
getClipImageURL: null,
|
||||||
|
|
Loading…
Reference in a new issue