1
0
Fork 0
forked from 0x2620/oxjs

fix list calendar bugs

This commit is contained in:
rlx 2012-01-30 23:27:27 +00:00
commit e8b1362309
5 changed files with 17 additions and 15 deletions

View file

@ -28,7 +28,7 @@ Ox.VideoEditor = function(options, self) {
clickLink: null,
cuts: [],
duration: 0,
download: false,
enableDownload: false,
enableSubtitles: false,
find: '',
fps: 25,
@ -427,9 +427,9 @@ Ox.VideoEditor = function(options, self) {
{id: 'largeTimeline', title: 'Hide Large Timeline', disabled: true},
{id: 'subtitlesTimeline', title: 'Hide Subtitles on Large Timeline', disabled: true},
{},
{id: 'downloadVideo', title: 'Download Video...', disabled: !self.options.download },
{id: 'downloadSelection', title: 'Download Selection...', disabled: !self.options.download},
{id: 'embedSelection', title: 'Embed Selection...', disabled: !self.options.download},
{id: 'downloadVideo', title: 'Download Video...', disabled: !self.options.enableDownload },
{id: 'downloadSelection', title: 'Download Selection...', disabled: !self.options.enableDownload},
{id: 'embedSelection', title: 'Embed Selection...'},
{},
{id: 'keyboard', title: 'Keyboard Shortcuts...', keyboard: 'h'}
],