add support for direct video uploads with server side transcoding, ticket #1351
This commit is contained in:
parent
d0c59e05c2
commit
9153c80844
6 changed files with 290 additions and 7 deletions
|
|
@ -81,8 +81,11 @@ pandora.ui.filesView = function(options, self) {
|
|||
format: function(value, data) {
|
||||
return $('<img>')
|
||||
.attr({
|
||||
src: data.wanted ? Ox.UI.getImageURL('symbolUpload') :
|
||||
Ox.UI.getImageURL('symbolCheck')
|
||||
src: data.encoding
|
||||
? Ox.UI.getImageURL('symbolSync')
|
||||
: data.wanted
|
||||
? Ox.UI.getImageURL('symbolUpload')
|
||||
: Ox.UI.getImageURL('symbolCheck')
|
||||
})
|
||||
.css({
|
||||
width: '10px',
|
||||
|
|
@ -221,7 +224,7 @@ pandora.ui.filesView = function(options, self) {
|
|||
query: self.filesQuery
|
||||
}), callback);
|
||||
},
|
||||
keys: ['wanted', 'instances'],
|
||||
keys: ['encoding', 'instances', 'wanted'],
|
||||
scrollbarVisible: true,
|
||||
sort: [{key: 'path', operator: '+'}],
|
||||
unique: 'id'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue