diff options
author | Marvin Borner | 2019-05-01 20:42:16 +0200 |
---|---|---|
committer | Marvin Borner | 2019-05-01 20:42:16 +0200 |
commit | 82afdcd8609342bd7080460e152b6a0e3db5aaff (patch) | |
tree | ff9aeafead147ddcad934adc5fe71bd26562f69b /src/main/resources | |
parent | 8549c68cfcf4caabb696152f36facc074129ebcf (diff) |
Cleaned up code
Co-authored-by: LarsVomMars <lars@kroenner.eu>
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/js/files.js | 2 | ||||
-rw-r--r-- | src/main/resources/views/files.rocker.html | 13 |
2 files changed, 14 insertions, 1 deletions
diff --git a/src/main/resources/js/files.js b/src/main/resources/js/files.js index de52635..35a25b4 100644 --- a/src/main/resources/js/files.js +++ b/src/main/resources/js/files.js @@ -116,7 +116,7 @@ function setListeners() { request.onload = () => { if (request.status === 200 && request.readyState === 4) { if (request.responseText) - window.location = `/share?id=${request.responseText}`; + window.location = `/shared?id=${request.responseText}`; else alert('File not found!'); } }; diff --git a/src/main/resources/views/files.rocker.html b/src/main/resources/views/files.rocker.html index eef3bb4..3fa4a3e 100644 --- a/src/main/resources/views/files.rocker.html +++ b/src/main/resources/views/files.rocker.html @@ -43,9 +43,15 @@ <th data-asc="true">Name</th> <th data-asc="true">Size</th> <th data-asc="true">Last modified</th> + @if (!isShared) { <th data-asc="true">Share</th> <th data-asc="true">Download</th> <th data-asc="true">Delete</th> + } else { + <th></th> + <th></th> + <th></th> + } </tr> <tr data-href="../"> <td></td> @@ -93,10 +99,12 @@ @fileArray[2] </td> + @if (!isShared) { <td> <button class="share"><i class="icon ion-md-share"></i></button> </td> + <!-- TODO: Fix download of shared files --> <td> <button class="downloadButton"> <a class="download" download="@fileArray[0]" href="@fileArray[0]?raw"><i class="icon ion-md-download"></i></a> @@ -106,6 +114,11 @@ <td> <button class="delete"><i class="icon ion-md-trash"></i></button> </td> + } else { + <td></td> + <td></td> + <td></td> + } </tr> } </tbody> |