diff options
Diffstat (limited to 'html')
| -rw-r--r-- | html/index.html | 1 | ||||
| -rw-r--r-- | html/webbox.js | 4 | 
2 files changed, 5 insertions, 0 deletions
| diff --git a/html/index.html b/html/index.html index 023b8bc..3cb221d 100644 --- a/html/index.html +++ b/html/index.html @@ -20,6 +20,7 @@  					<td class="entry" onclick="move();">Move</td>  					<td class="entry" onclick="info();">Info</td>  					<td class="entry" onclick="selectAll();">Select All</td> +					<td class="entry" onclick="refresh();">Refresh</td>  				</tr>  			</table>  		</div> diff --git a/html/webbox.js b/html/webbox.js index 3bcbf8d..2b70292 100644 --- a/html/webbox.js +++ b/html/webbox.js @@ -444,3 +444,7 @@ function selectAll() {  	}  } +function refresh() { +	loadContents(currentDir); // load new file list +} + | 
