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 | |
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')
-rw-r--r-- | assets/common/js/thumbnails-update.js | 2 | ||||
-rw-r--r-- | assets/default/js/base.js | 2 |
2 files changed, 2 insertions, 2 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 | }; |
diff --git a/assets/default/js/base.js b/assets/default/js/base.js index af3d650c..76e4fe2a 100644 --- a/assets/default/js/base.js +++ b/assets/default/js/base.js | |||
@@ -27,7 +27,7 @@ function findParent(element, tagName, attributes) { | |||
27 | */ | 27 | */ |
28 | function refreshToken(basePath) { | 28 | function refreshToken(basePath) { |
29 | const xhr = new XMLHttpRequest(); | 29 | const xhr = new XMLHttpRequest(); |
30 | xhr.open('GET', `${basePath}/?do=token`); | 30 | xhr.open('GET', `${basePath}/admin/token`); |
31 | xhr.onload = () => { | 31 | xhr.onload = () => { |
32 | const token = document.getElementById('token'); | 32 | const token = document.getElementById('token'); |
33 | token.setAttribute('value', xhr.responseText); | 33 | token.setAttribute('value', xhr.responseText); |