mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 02:35:49 +00:00
feature(menu) Zip -> Pack
This commit is contained in:
parent
1965e31b11
commit
4f4d64a817
4 changed files with 8 additions and 8 deletions
4
HELP.md
4
HELP.md
|
|
@ -204,8 +204,8 @@ Right mouse click button shows context menu with items:
|
|||
- Edit
|
||||
- Rename
|
||||
- Delete
|
||||
- Zip file
|
||||
- Unzip file
|
||||
- Pack
|
||||
- Unpack
|
||||
- Upload to (Dropbox, Github, GDrive, FilePicker)
|
||||
- Download
|
||||
- New (File, Dir, from FilePicker)
|
||||
|
|
|
|||
|
|
@ -88,12 +88,12 @@
|
|||
content : '\e812 ';
|
||||
}
|
||||
|
||||
.icon-zip-file::before {
|
||||
.icon-pack::before {
|
||||
font-family : 'Fontello';
|
||||
content : '\e813 ';
|
||||
}
|
||||
|
||||
.icon-unzip-file::before {
|
||||
.icon-unpack::before {
|
||||
font-family : 'Fontello';
|
||||
content : '\e814 ';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -452,7 +452,7 @@ var CloudCmd, Util, DOM, CloudFunc, Dialog;
|
|||
* zip file
|
||||
*
|
||||
*/
|
||||
this.zipFile = function() {
|
||||
this.pack = function() {
|
||||
var RESTful = DOM.RESTful,
|
||||
name = Cmd.getCurrentName(),
|
||||
dir = Cmd.getCurrentDirPath(),
|
||||
|
|
@ -469,7 +469,7 @@ var CloudCmd, Util, DOM, CloudFunc, Dialog;
|
|||
* unzip file
|
||||
*
|
||||
*/
|
||||
this.unzipFile = function() {
|
||||
this.unpack = function() {
|
||||
var RESTful = DOM.RESTful,
|
||||
name = Cmd.getCurrentName(),
|
||||
dir = Cmd.getCurrentDirPath(),
|
||||
|
|
|
|||
|
|
@ -142,8 +142,8 @@ var CloudCmd, Util, DOM, CloudFunc, MenuIO;
|
|||
setTimeout(DOM.renameCurrent, 100);
|
||||
},
|
||||
'Delete' : DOM.promptDelete,
|
||||
'Zip file' : DOM.zipFile,
|
||||
'Unzip file' : DOM.unzipFile,
|
||||
'Pack' : DOM.pack,
|
||||
'Unpack' : DOM.unpack,
|
||||
'Upload To' : {},
|
||||
'Download' : download,
|
||||
'Cut' : Buffer.cut,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue