diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-05-11 20:03:09 +0200 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-05-11 20:03:09 +0200 |
commit | 99048beee343e0aacf538d53ce91c7b545f09089 (patch) | |
tree | 8b810067649a7762350b81edd3498ccfdaefe18e /plugins/webbox/html/index.html | |
parent | 15b2be158ac0147982dd30382251b3ce83e219c7 (diff) |
webbox: added copy function
Diffstat (limited to 'plugins/webbox/html/index.html')
-rw-r--r-- | plugins/webbox/html/index.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/plugins/webbox/html/index.html b/plugins/webbox/html/index.html index cc1cf12..01d1a5a 100644 --- a/plugins/webbox/html/index.html +++ b/plugins/webbox/html/index.html @@ -44,6 +44,7 @@ <tr><td class="entry" onclick="hideMenu(); download();">Download</td></tr> <tr class="writecommand"><td class="entry" onclick="hideMenu(); upload();">Upload</td></tr> <tr class="writecommand"><td class="entry" onclick="hideMenu(); deleteItems();">Delete</td></tr> + <tr class="writecommand"><td class="entry" onclick="hideMenu(); copy();">Copy</td></tr> <tr class="writecommand"><td class="entry" onclick="hideMenu(); move();">Move</td></tr> <tr class="writecommand"><td class="entry" onclick="hideMenu(); rename();">Rename</td></tr> <tr><td class="entry" onclick="hideMenu(); info();">Info</td></tr> @@ -67,6 +68,15 @@ Download multiple files as ZIP?<br> </div> + <div id="copy-dialog" hidden> + Copying files to folder:<br> + <input type="text" id="copydir" class="textinput"></input> + <br/> + Files to copy: + <br/> + <div id="copyfiles"></div> + </div> + <div id="move-dialog" hidden> Moving files to folder:<br> <input type="text" id="movedir" class="textinput"></input> |