diff options
Diffstat (limited to 'assets')
-rw-r--r-- | assets/default/js/base.js | 6 | ||||
-rw-r--r-- | assets/default/scss/shaarli.scss | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/assets/default/js/base.js b/assets/default/js/base.js index f61cfa92..8cc7eed5 100644 --- a/assets/default/js/base.js +++ b/assets/default/js/base.js | |||
@@ -546,7 +546,7 @@ function init(description) { | |||
546 | const refreshedToken = document.getElementById('token').value; | 546 | const refreshedToken = document.getElementById('token').value; |
547 | const fromtag = block.getAttribute('data-tag'); | 547 | const fromtag = block.getAttribute('data-tag'); |
548 | const xhr = new XMLHttpRequest(); | 548 | const xhr = new XMLHttpRequest(); |
549 | xhr.open('POST', './?do=changetag'); | 549 | xhr.open('POST', './manage-tags'); |
550 | xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); | 550 | xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); |
551 | xhr.onload = () => { | 551 | xhr.onload = () => { |
552 | if (xhr.status !== 200) { | 552 | if (xhr.status !== 200) { |
@@ -559,7 +559,7 @@ function init(description) { | |||
559 | findParent(input, 'div', { class: 'rename-tag-form' }).style.display = 'none'; | 559 | findParent(input, 'div', { class: 'rename-tag-form' }).style.display = 'none'; |
560 | block.querySelector('a.tag-link').innerHTML = htmlEntities(totag); | 560 | block.querySelector('a.tag-link').innerHTML = htmlEntities(totag); |
561 | block.querySelector('a.tag-link').setAttribute('href', `./?searchtags=${encodeURIComponent(totag)}`); | 561 | block.querySelector('a.tag-link').setAttribute('href', `./?searchtags=${encodeURIComponent(totag)}`); |
562 | block.querySelector('a.rename-tag').setAttribute('href', `./?do=changetag&fromtag=${encodeURIComponent(totag)}`); | 562 | block.querySelector('a.rename-tag').setAttribute('href', `./manage-tags?fromtag=${encodeURIComponent(totag)}`); |
563 | 563 | ||
564 | // Refresh awesomplete values | 564 | // Refresh awesomplete values |
565 | existingTags = existingTags.map(tag => (tag === fromtag ? totag : tag)); | 565 | existingTags = existingTags.map(tag => (tag === fromtag ? totag : tag)); |
@@ -593,7 +593,7 @@ function init(description) { | |||
593 | 593 | ||
594 | if (confirm(`Are you sure you want to delete the tag "${tag}"?`)) { | 594 | if (confirm(`Are you sure you want to delete the tag "${tag}"?`)) { |
595 | const xhr = new XMLHttpRequest(); | 595 | const xhr = new XMLHttpRequest(); |
596 | xhr.open('POST', './?do=changetag'); | 596 | xhr.open('POST', './manage-tags'); |
597 | xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); | 597 | xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); |
598 | xhr.onload = () => { | 598 | xhr.onload = () => { |
599 | block.remove(); | 599 | block.remove(); |
diff --git a/assets/default/scss/shaarli.scss b/assets/default/scss/shaarli.scss index 243ab1b2..759dff29 100644 --- a/assets/default/scss/shaarli.scss +++ b/assets/default/scss/shaarli.scss | |||
@@ -490,6 +490,10 @@ body, | |||
490 | } | 490 | } |
491 | } | 491 | } |
492 | 492 | ||
493 | .header-alert-message { | ||
494 | text-align: center; | ||
495 | } | ||
496 | |||
493 | // CONTENT - GENERAL | 497 | // CONTENT - GENERAL |
494 | .container { | 498 | .container { |
495 | position: relative; | 499 | position: relative; |