aboutsummaryrefslogtreecommitdiff
path: root/chrome/js/settings.js
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/js/settings.js')
-rw-r--r--chrome/js/settings.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/js/settings.js b/chrome/js/settings.js
index 1a190ff..c12562b 100644
--- a/chrome/js/settings.js
+++ b/chrome/js/settings.js
@@ -93,7 +93,7 @@ $(document).ready(function() {
var redirect = $(this.parentNode.parentNode).data('redirect');
if (PromptService.confirm(null, tr("deleteConfirmationTitle"), tr("deleteConfirmationText"))) {
Redirector.deleteRedirect(redirect);
- $(this.parentNode.parentNode).remove();
+ $(this.parentNode.parentNode).fadeOut(function() { $(this).remove(); });
}
ev.preventDefault();
});