diff options
author | ArthurHoaro <arthur@hoa.ro> | 2020-06-21 12:21:31 +0200 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2020-07-23 21:19:21 +0200 |
commit | 764d34a7d347d653414e5f5c632e02499edaef04 (patch) | |
tree | 1e642a893beefd95bfa82c7beeb416449238b4ec /assets/common/js | |
parent | 1b8620b1ad4e2c647ff2d032c8e7c6687b6647a1 (diff) | |
download | Shaarli-764d34a7d347d653414e5f5c632e02499edaef04.tar.gz Shaarli-764d34a7d347d653414e5f5c632e02499edaef04.tar.zst Shaarli-764d34a7d347d653414e5f5c632e02499edaef04.zip |
Process token retrieve through Slim controller
Diffstat (limited to 'assets/common/js')
-rw-r--r-- | assets/common/js/thumbnails-update.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/assets/common/js/thumbnails-update.js b/assets/common/js/thumbnails-update.js index 35608169..b37a32f3 100644 --- a/assets/common/js/thumbnails-update.js +++ b/assets/common/js/thumbnails-update.js | |||
@@ -33,7 +33,7 @@ function updateThumb(basePath, ids, i, elements) { | |||
33 | elements.thumbnail.innerHTML = `<img src="${response.thumbnail}">`; | 33 | elements.thumbnail.innerHTML = `<img src="${response.thumbnail}">`; |
34 | } | 34 | } |
35 | if (i < ids.length) { | 35 | if (i < ids.length) { |
36 | updateThumb(ids, i, elements); | 36 | updateThumb(basePath, ids, i, elements); |
37 | } | 37 | } |
38 | } | 38 | } |
39 | }; | 39 | }; |