mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 18:55:26 +00:00
feature(menu) show upload in two kinds of menu
This commit is contained in:
parent
e685b5739b
commit
05f25e994e
2 changed files with 5 additions and 5 deletions
4
HELP.md
4
HELP.md
|
|
@ -230,13 +230,13 @@ Right mouse click button shows context menu with items:
|
|||
- Delete
|
||||
- Pack
|
||||
- Unpack
|
||||
- Upload
|
||||
- Upload to (Dropbox, Github, GDrive, FilePicker)
|
||||
- Download
|
||||
- New (File, Directory, from FilePicker)
|
||||
- Cut
|
||||
- Copy
|
||||
- Paste
|
||||
- New (File, Directory, from FilePicker)
|
||||
- Upload
|
||||
- (Un)Select All
|
||||
- Log Out (available when the `authorization` is enabled)
|
||||
|
||||
|
|
|
|||
|
|
@ -142,6 +142,9 @@ var CloudCmd, Util, DOM, CloudFunc, MenuIO;
|
|||
'Directory' : DOM.promptNewDir,
|
||||
'From Cloud' : getFromPicker,
|
||||
},
|
||||
'Upload' : function() {
|
||||
CloudCmd.Upload.show();
|
||||
},
|
||||
'(Un)Select All': DOM.toggleAllSelectedFiles
|
||||
};
|
||||
|
||||
|
|
@ -170,9 +173,6 @@ var CloudCmd, Util, DOM, CloudFunc, MenuIO;
|
|||
'Delete' : Operation.show.bind(null, 'delete'),
|
||||
'Pack' : getActiveFunc(DOM.pack),
|
||||
'Unpack' : getActiveFunc(DOM.unpack),
|
||||
'Upload' : function() {
|
||||
CloudCmd.Upload.show();
|
||||
},
|
||||
'Upload To' : {},
|
||||
'Download' : download,
|
||||
'Cut' : Buffer.cut,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue