Added merge icon
This commit is contained in:
parent
3789cf698a
commit
1bbe3bd3dc
BIN
dist/main.js
vendored
BIN
dist/main.js
vendored
Binary file not shown.
@ -51,7 +51,7 @@ contextMenu.album = function(albumID, e) {
|
|||||||
|
|
||||||
var items = [
|
var items = [
|
||||||
{ type: 'item', title: build.iconic('pencil') + 'Rename', fn: function() { album.setTitle([albumID]) } },
|
{ type: 'item', title: build.iconic('pencil') + 'Rename', fn: function() { album.setTitle([albumID]) } },
|
||||||
{ type: 'item', title: 'Merge', fn: function () { basicContext.close(); contextMenu.mergeAlbum(albumID, e) } },
|
{ type: 'item', title: build.iconic('collapse-left') + 'Merge', fn: function () { basicContext.close(); contextMenu.mergeAlbum(albumID, e) } },
|
||||||
{ type: 'item', title: build.iconic('trash') + 'Delete', fn: function() { album.delete([albumID]) } }
|
{ type: 'item', title: build.iconic('trash') + 'Delete', fn: function() { album.delete([albumID]) } }
|
||||||
];
|
];
|
||||||
|
|
||||||
@ -70,7 +70,7 @@ contextMenu.albumMulti = function(albumIDs, e) {
|
|||||||
|
|
||||||
var items = [
|
var items = [
|
||||||
{ type: 'item', title: build.iconic('pencil') + 'Rename All', fn: function() { album.setTitle(albumIDs) } },
|
{ type: 'item', title: build.iconic('pencil') + 'Rename All', fn: function() { album.setTitle(albumIDs) } },
|
||||||
{ type: 'item', title: 'Merge All', fn: function () { album.merge(albumIDs) } },
|
{ type: 'item', title: build.iconic('collapse-left') + 'Merge All', fn: function () { album.merge(albumIDs) } },
|
||||||
{ type: 'item', title: build.iconic('trash') + 'Delete All', fn: function() { album.delete(albumIDs) } }
|
{ type: 'item', title: build.iconic('trash') + 'Delete All', fn: function() { album.delete(albumIDs) } }
|
||||||
];
|
];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user