mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-23 20:18:00 +01:00
Correct fix for abort prompt
This commit is contained in:
parent
7ebba8b368
commit
8da6cab713
1 changed files with 11 additions and 5 deletions
|
@ -42,11 +42,17 @@ function activate() {
|
|||
|
||||
function reset() {
|
||||
|
||||
if (window.confirm('Are you sure you want to abort batch tagging?')) {
|
||||
store.remove(currentTagStorage);
|
||||
store.remove(imageQueueStorage);
|
||||
store.remove(currentTagStorage);
|
||||
store.remove(imageQueueStorage);
|
||||
|
||||
toggleActiveState();
|
||||
toggleActiveState();
|
||||
|
||||
}
|
||||
|
||||
function promptReset() {
|
||||
|
||||
if (window.confirm('Are you sure you want to abort batch tagging?')) {
|
||||
reset();
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -96,7 +102,7 @@ function clickHandler(event) {
|
|||
|
||||
const targets = {
|
||||
'.js-quick-tag': activate,
|
||||
'.js-quick-tag--abort': reset,
|
||||
'.js-quick-tag--abort': promptReset,
|
||||
'.js-quick-tag--submit': submit,
|
||||
'.js-quick-tag--all': toggleAllImages,
|
||||
'.media-box': modifyImageQueue,
|
||||
|
|
Loading…
Reference in a new issue