store clipboard clips as strings

This commit is contained in:
rolux 2013-08-02 19:38:18 +00:00
commit 42a397d84a
4 changed files with 21 additions and 24 deletions

View file

@ -117,12 +117,7 @@ pandora.ui.clipList = function(videoRatio) {
var items = data.ids.map(function(id) {
var item = !ui.item ? id.split('/')[0] : ui.item,
annotation = that.value(id, 'annotations')[0].id;
return {
annotation: annotation,
'in': that.value(id, 'in'),
item: item,
out: that.value(id, 'out')
}
return annotation || item + '/' + that.value(id, 'in') + '-' + that.value(id, 'out');
})
Ox.Clipboard.copy(items, 'clip');
},
@ -130,12 +125,7 @@ pandora.ui.clipList = function(videoRatio) {
var items = data.ids.map(function(id) {
var item = !ui.item ? id.split('/')[0] : ui.item,
annotation = that.value(id, 'annotations')[0].id;
return {
annotation: annotation,
'in': that.value(id, 'in'),
item: item,
out: that.value(id, 'out')
}
return annotation || item + '/' + that.value(id, 'in') + '-' + that.value(id, 'out');
})
Ox.Clipboard.add(items, 'clip');
},