Make sure to hide all tooltips before removing an element (fixes #260)

This commit is contained in:
Bernd Bestel
2019-06-08 16:39:35 +02:00
parent 9f2481a6a8
commit 9e7d62b62d
3 changed files with 6 additions and 0 deletions

View File

@@ -121,6 +121,7 @@ $(document).on('click', '.product-consume-button', function(e)
{
$('#product-' + productId + '-row').fadeOut(500, function()
{
$(this).tooltip("hide");
$(this).remove();
});
}