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,
|
||||
duration: 0,
|
||||
editable: false,
|
||||
formatTitle: Ox.identity,
|
||||
formatTitle: function() {
|
||||
return Ox.last(arguments);
|
||||
},
|
||||
getClipImageURL: null,
|
||||
'in': 0,
|
||||
itemName: '',
|
||||
|
|
|
@ -19,7 +19,9 @@ Ox.VideoEditPanel = function(options, self) {
|
|||
duration: 0,
|
||||
editable: false,
|
||||
enableSubtitles: false,
|
||||
formatTitle: Ox.identity,
|
||||
formatTitle: function() {
|
||||
return Ox.last(arguments);
|
||||
},
|
||||
fps: 25,
|
||||
fullscreen: false,
|
||||
getClipImageURL: null,
|
||||
|
|
Loading…
Reference in a new issue