diff options
| author | Pitu <[email protected]> | 2017-02-07 04:52:53 -0300 |
|---|---|---|
| committer | Pitu <[email protected]> | 2017-02-07 04:52:53 -0300 |
| commit | 36e17b037221ff7c69680e00e9a83dccd31ef44e (patch) | |
| tree | b23bf2bb17d3a5f4a68563b91ba6d47c3164f2cf /public/js/album.js | |
| parent | bleh (diff) | |
| download | host.fuwn.me-36e17b037221ff7c69680e00e9a83dccd31ef44e.tar.xz host.fuwn.me-36e17b037221ff7c69680e00e9a83dccd31ef44e.zip | |
Album stuff
Diffstat (limited to 'public/js/album.js')
| -rw-r--r-- | public/js/album.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/public/js/album.js b/public/js/album.js index 8a69d94..d3880ee 100644 --- a/public/js/album.js +++ b/public/js/album.js @@ -4,6 +4,7 @@ album.get = function(album){ axios.get('/api/album/get/' + album) .then(function (response) { document.getElementById('title').innerHTML = response.data.title; + document.getElementById('count').innerHTML = response.data.count + ' files'; var container = document.createElement('div'); container.innerHTML = `<div class="columns is-multiline is-mobile" id="table"></div>` |