diff --git a/assets/js/quick-tag.js b/assets/js/quick-tag.js index 635b9617..1c430685 100644 --- a/assets/js/quick-tag.js +++ b/assets/js/quick-tag.js @@ -42,10 +42,12 @@ function activate() { function reset() { - store.remove(currentTagStorage); - store.remove(imageQueueStorage); + if (window.confirm('Are you sure you want to abort batch tagging?')) { + store.remove(currentTagStorage); + store.remove(imageQueueStorage); - toggleActiveState(); + toggleActiveState(); + } }