diff options
| author | Pitu <[email protected]> | 2017-01-17 19:05:00 -0300 |
|---|---|---|
| committer | Pitu <[email protected]> | 2017-01-17 19:05:00 -0300 |
| commit | ddb6d0df7dafb3da14ce1fd86e1838890432bb8d (patch) | |
| tree | 6b0636c57c12eb71103f63d9ee49d5531f2ebf72 /public | |
| parent | Change from gallery to album (diff) | |
| download | host.fuwn.me-ddb6d0df7dafb3da14ce1fd86e1838890432bb8d.tar.xz host.fuwn.me-ddb6d0df7dafb3da14ce1fd86e1838890432bb8d.zip | |
Database now saves album
Diffstat (limited to 'public')
| -rw-r--r-- | public/js/panel.js | 4 |
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> `; |