aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/views/files.rocker.html
diff options
context:
space:
mode:
authorMarvin Borner2019-04-22 22:07:34 +0200
committerMarvin Borner2019-04-22 22:07:34 +0200
commitc056361f5449ae6a4d94b71b0efd2f67493502f7 (patch)
treedfcbe2dc32e57048f50679c296636af9a5b59198 /src/main/resources/views/files.rocker.html
parenta5f26def08e100bf74e90d09298ad81e9224e249 (diff)
Added viewing of files in shared directories
Co-authored-by: LarsVomMars <lars@kroenner.eu>
Diffstat (limited to 'src/main/resources/views/files.rocker.html')
-rw-r--r--src/main/resources/views/files.rocker.html7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/main/resources/views/files.rocker.html b/src/main/resources/views/files.rocker.html
index 56cfc88..eef3bb4 100644
--- a/src/main/resources/views/files.rocker.html
+++ b/src/main/resources/views/files.rocker.html
@@ -1,12 +1,15 @@
@import java.util.ArrayList
-@args (ArrayList files, String path)
+@args (ArrayList files, String path, Boolean isShared)
@css => {
<link href="/css/files.css" rel="stylesheet">
}
@js => {
-<script>const path = "@path";</script>
+<script>
+ const path = "@path";
+ const isShared = "@isShared";
+</script>
<script src="/js/imagePreview.js"></script>
<script src="/js/files.js"></script>
}