diff options
| author | Roland Stigge <stigge@antcom.de> | 2018-01-07 16:07:49 +0100 | 
|---|---|---|
| committer | Roland Stigge <stigge@antcom.de> | 2018-01-07 16:07:49 +0100 | 
| commit | fb24f0bc60d9ff910d49646aaeadad99f22826e5 (patch) | |
| tree | e3a92e1bfd8c6c4c1f34137700371e68ad2e0340 /html/index.html | |
| parent | ce94c74b8bfb69b94bdb78aaa60d7dce2d058184 (diff) | |
Implemented file move
Diffstat (limited to 'html/index.html')
| -rw-r--r-- | html/index.html | 13 | 
1 files changed, 11 insertions, 2 deletions
| diff --git a/html/index.html b/html/index.html index 3cb221d..49dafef 100644 --- a/html/index.html +++ b/html/index.html @@ -8,7 +8,7 @@  	</head>  	<body onload="initMainpage();">  		<div> -			<h1 class="title"></h1> +			<h1 class="title"> </h1>  			<input id="uploadfile" type="file" onchange="onUploadFile();" hidden/>  			<table class="menu">  				<tr> @@ -16,7 +16,7 @@  					<td class="entry" onclick="createDir();">New folder</td>  					<td class="entry" onclick="download();">Download</td>  					<td class="entry" onclick="upload();">Upload</td> -					<td class="entry" onclick="deleteItem();">Delete</td> +					<td class="entry" onclick="deleteItems();">Delete</td>  					<td class="entry" onclick="move();">Move</td>  					<td class="entry" onclick="info();">Info</td>  					<td class="entry" onclick="selectAll();">Select All</td> @@ -49,6 +49,15 @@  			Download multiple files as ZIP?<br>  		</div> +		<div id="move-dialog" hidden> +			Moving files to folder:<br> +			<input type="text" id="movedir" class="textinput"></input> +			<br/> +			Files to move: +			<br/> +			<div id="movefiles"></div> +		</div> +  		<a download="webbox-download.zip" id="download-a" hidden/>  		<div class="footer"> | 
