forked from 0x2620/pandora
fix paste via menu
This commit is contained in:
parent
02b89c06dd
commit
157cc7478b
1 changed files with 15 additions and 3 deletions
|
@ -361,11 +361,23 @@ pandora.ui.mainMenu = function() {
|
||||||
}
|
}
|
||||||
} else if (ui.section == 'documents') {
|
} else if (ui.section == 'documents') {
|
||||||
var items = pandora.clipboard.paste('document');
|
var items = pandora.clipboard.paste('document');
|
||||||
|
/*
|
||||||
items.length && pandora.doHistory('paste', items, ui._collection, function() {
|
items.length && pandora.doHistory('paste', items, ui._collection, function() {
|
||||||
//fixme:
|
pandora.UI.set({listSelection: items});
|
||||||
//pandora.UI.set({listSelection: items});
|
pandora.reloadList();
|
||||||
//pandora.reloadList();
|
pandora.UI.set({collectionSelection: items});
|
||||||
|
pandora.reloadList();
|
||||||
});
|
});
|
||||||
|
*/
|
||||||
|
if (items.length) {
|
||||||
|
pandora.api.addCollectionItems({
|
||||||
|
collection: ui._collection,
|
||||||
|
items: items
|
||||||
|
}, function() {
|
||||||
|
pandora.UI.set({collectionSelection: items});
|
||||||
|
pandora.reloadList();
|
||||||
|
});
|
||||||
|
}
|
||||||
} else if (ui.section == 'edits') {
|
} else if (ui.section == 'edits') {
|
||||||
var clips = pandora.clipboard.paste('clip');
|
var clips = pandora.clipboard.paste('clip');
|
||||||
clips.length && pandora.doHistory('paste', clips, ui.edit, function(result) {
|
clips.length && pandora.doHistory('paste', clips, ui.edit, function(result) {
|
||||||
|
|
Loading…
Reference in a new issue