frio: some hover card css fixes (enable on mouseleave again - forgot it)
This commit is contained in:
parent
d570a90c05
commit
60ca6b7f07
1 changed files with 2 additions and 2 deletions
|
@ -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");
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue