allow for multi-select in clip lists
This commit is contained in:
parent
9ca6613bc6
commit
6046a6792a
1 changed files with 8 additions and 7 deletions
|
@ -105,7 +105,6 @@ pandora.ui.clipList = function(videoRatio) {
|
|||
keys: ['annotations', 'id', 'in', 'out'].concat(
|
||||
!ui.item ? ['videoRatio'] : []
|
||||
),
|
||||
max: 1,
|
||||
orientation: isEmbed && !isClipView ? 'horizontal' : 'both',
|
||||
size: 128,
|
||||
sort: !ui.item ? ui.listSort : ui.itemSort,
|
||||
|
@ -175,16 +174,18 @@ pandora.ui.clipList = function(videoRatio) {
|
|||
},
|
||||
openpreview: function(data) {
|
||||
// on press space key
|
||||
if (data.ids.length == 1) {
|
||||
var $video = that.find('.OxItem.OxSelected > .OxIcon > .OxVideoPlayer');
|
||||
if ($video) {
|
||||
// trigger singleclick
|
||||
$video.trigger('mousedown');
|
||||
Ox.UI.$window.trigger('mouseup');
|
||||
}
|
||||
}
|
||||
that.closePreview();
|
||||
},
|
||||
select: function(data) {
|
||||
if (data.ids.length) {
|
||||
if (data.ids.length == 1) {
|
||||
var id = data.ids[0],
|
||||
item = id.split('/')[0], width, height,
|
||||
$img = that.find('.OxItem.OxSelected > .OxIcon > img'),
|
||||
|
|
Loading…
Reference in a new issue