video edit panel: fix formatTitle default

This commit is contained in:
rolux 2014-02-08 04:53:15 +00:00
parent 2bec9b9496
commit 5bbac7aadd
2 changed files with 6 additions and 2 deletions

View file

@ -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: '',

View file

@ -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,