update video edit panel columns, remove reference to pandora
This commit is contained in:
parent
d2718c2ec1
commit
ddb6165a76
2 changed files with 19 additions and 9 deletions
|
@ -17,6 +17,7 @@ Ox.ClipPanel = function(options, self) {
|
|||
editable: false,
|
||||
getClipImageURL: null,
|
||||
'in': 0,
|
||||
itemName: '',
|
||||
layers: [],
|
||||
out: 0,
|
||||
position: 0,
|
||||
|
@ -77,19 +78,27 @@ Ox.ClipPanel = function(options, self) {
|
|||
width: 60
|
||||
},
|
||||
{
|
||||
addable: false,
|
||||
id: 'id',
|
||||
operator: '+',
|
||||
title: Ox._('ID'),
|
||||
unique: true,
|
||||
visible: false,
|
||||
width: 60
|
||||
},
|
||||
{
|
||||
addable: false,
|
||||
id: 'item',
|
||||
operator: '+',
|
||||
title: Ox._(pandora.site.itemName.singular),
|
||||
},
|
||||
{
|
||||
id: 'title',
|
||||
format: function(value, data) {
|
||||
return value + (
|
||||
data.director ? ' (' + data.director.join(', ') + ')' : ''
|
||||
);
|
||||
},
|
||||
operator: '+',
|
||||
title: self.options.itemName,
|
||||
visible: true,
|
||||
width: 60
|
||||
width: 120
|
||||
},
|
||||
{
|
||||
align: 'right',
|
||||
|
@ -137,12 +146,11 @@ Ox.ClipPanel = function(options, self) {
|
|||
width: 90
|
||||
},
|
||||
{
|
||||
align: 'right',
|
||||
addable: false,
|
||||
id: 'sort',
|
||||
operator: '+',
|
||||
title: Ox._('Sort'),
|
||||
visible: false,
|
||||
width: 60
|
||||
// title: Ox._('Sort'),
|
||||
visible: false
|
||||
}
|
||||
];
|
||||
|
||||
|
@ -342,6 +350,7 @@ Ox.ClipPanel = function(options, self) {
|
|||
columnsResizable: true,
|
||||
columnsVisible: true,
|
||||
items: self.options.clips,
|
||||
keys: ['director'],
|
||||
scrollbarVisible: true,
|
||||
selected: self.options.selected,
|
||||
sort: getListSort(),
|
||||
|
|
|
@ -313,6 +313,7 @@ Ox.VideoEditPanel = function(options, self) {
|
|||
editable: self.options.editable,
|
||||
getClipImageURL: self.options.getClipImageURL,
|
||||
'in': self.options['in'],
|
||||
itemName: self.options.itemName,
|
||||
layers: Ox.clone(self.options.layers),
|
||||
out: self.options.out,
|
||||
position: self.options.position,
|
||||
|
|
Loading…
Reference in a new issue