diff --git a/view/theme/frio/js/hovercard.js b/view/theme/frio/js/hovercard.js index f17d47cd2d..6e2a827cd6 100644 --- a/view/theme/frio/js/hovercard.js +++ b/view/theme/frio/js/hovercard.js @@ -112,7 +112,7 @@ $(document).ready(function(){ }); $('body').on('mouseleave','.hovercard', function(e) { $(this).removeClass('dont-remove-card'); - //$(this).popover("hide"); + $(this).popover("hide"); }); }); // End of $(document).ready @@ -128,7 +128,7 @@ function removeAllhoverCards(event,priorTo) { // don't remove it if we're hovering it right now! if(!$(this).hasClass('dont-remove-card')) { $('[data-hover-card-active="' + $(this).data('card-created') + '"]').removeAttr('data-hover-card-active'); - //(this).popover("hide"); + $(this).popover("hide"); } } });