Commit 52c61024 authored by Phil Hughes's avatar Phil Hughes

Destroy branch delete tooltip when row is removed

Closes #19528
parent 12e9df32
......@@ -153,7 +153,9 @@
});
});
$('.remove-row').bind('ajax:success', function() {
return $(this).closest('li').fadeOut();
$(this).tooltip('destroy')
.closest('li')
.fadeOut();
});
$('.js-remove-tr').bind('ajax:before', function() {
return $(this).hide();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment