aboutsummaryrefslogtreecommitdiff
path: root/public/js
diff options
context:
space:
mode:
authorPitu <[email protected]>2017-01-17 19:05:00 -0300
committerPitu <[email protected]>2017-01-17 19:05:00 -0300
commitddb6d0df7dafb3da14ce1fd86e1838890432bb8d (patch)
tree6b0636c57c12eb71103f63d9ee49d5531f2ebf72 /public/js
parentChange from gallery to album (diff)
downloadhost.fuwn.me-ddb6d0df7dafb3da14ce1fd86e1838890432bb8d.tar.xz
host.fuwn.me-ddb6d0df7dafb3da14ce1fd86e1838890432bb8d.zip
Database now saves album
Diffstat (limited to 'public/js')
-rw-r--r--public/js/panel.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/public/js/panel.js b/public/js/panel.js
index e008abd..14f6237 100644
--- a/public/js/panel.js
+++ b/public/js/panel.js
@@ -74,7 +74,7 @@ panel.getUploads = function(){
<thead>
<tr>
<th>File</th>
- <th>Gallery</th>
+ <th>Album</th>
<th>Date</th>
</tr>
</thead>
@@ -91,7 +91,7 @@ panel.getUploads = function(){
tr.innerHTML = `
<tr>
<th><a href="${item.file}" target="_blank">${item.file}</a></th>
- <th>${item.gallery}</th>
+ <th>${item.album}</th>
<td>${item.date}</td>
</tr>
`;