edit panel: handle clip size/sort/view
This commit is contained in:
parent
766c12de77
commit
b9a881d86c
1 changed files with 9 additions and 4 deletions
|
@ -93,9 +93,6 @@ pandora.ui.editPanel = function() {
|
||||||
width: pandora.$ui.document.width() - pandora.$ui.mainPanel.size(0) - 1
|
width: pandora.$ui.document.width() - pandora.$ui.mainPanel.size(0) - 1
|
||||||
})
|
})
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
clipssort: function(data) {
|
|
||||||
pandora.UI.set({clipSort: data.sort});
|
|
||||||
},
|
|
||||||
copy: function(data) {
|
copy: function(data) {
|
||||||
|
|
||||||
},
|
},
|
||||||
|
@ -177,6 +174,12 @@ pandora.ui.editPanel = function() {
|
||||||
select: function(data) {
|
select: function(data) {
|
||||||
pandora.UI.set(editPointsKey('clip'), data.ids[0]);
|
pandora.UI.set(editPointsKey('clip'), data.ids[0]);
|
||||||
},
|
},
|
||||||
|
size: function(data) {
|
||||||
|
pandora.UI.set('clipSize', data.size);
|
||||||
|
},
|
||||||
|
sort: function(data) {
|
||||||
|
pandora.UI.set('clipSort', data.sort);
|
||||||
|
},
|
||||||
subtitles: function(data) {
|
subtitles: function(data) {
|
||||||
pandora.UI.set('videoSubtitles', data.subtitles);
|
pandora.UI.set('videoSubtitles', data.subtitles);
|
||||||
},
|
},
|
||||||
|
@ -189,6 +192,9 @@ pandora.ui.editPanel = function() {
|
||||||
toggletimeline: function(data) {
|
toggletimeline: function(data) {
|
||||||
pandora.UI.set('showTimeline', data.showTimeline);
|
pandora.UI.set('showTimeline', data.showTimeline);
|
||||||
},
|
},
|
||||||
|
view: function(data) {
|
||||||
|
pandora.UI.set('clipView', data.view);
|
||||||
|
},
|
||||||
volume: function(data) {
|
volume: function(data) {
|
||||||
pandora.UI.set('videoVolume', data.volume);
|
pandora.UI.set('videoVolume', data.volume);
|
||||||
},
|
},
|
||||||
|
@ -196,7 +202,6 @@ pandora.ui.editPanel = function() {
|
||||||
that.options({showClips: data.value});
|
that.options({showClips: data.value});
|
||||||
},
|
},
|
||||||
pandora_showtimeline: function(data) {
|
pandora_showtimeline: function(data) {
|
||||||
Ox.print('SHOWTIMELINE', data);
|
|
||||||
that.options({showTimeline: data.value});
|
that.options({showTimeline: data.value});
|
||||||
},
|
},
|
||||||
pandora_videotimeline: function(data) {
|
pandora_videotimeline: function(data) {
|
||||||
|
|
Loading…
Reference in a new issue