mirror of
https://github.com/Mottie/tablesorter.git
synced 2024-11-15 23:54:22 +00:00
Docs: Fix search tooltip not hiding on menu close
This commit is contained in:
parent
d196092339
commit
f6012b4e76
@ -144,6 +144,12 @@ jQuery(function($){
|
||||
index = $results.index(this);
|
||||
updateStatus();
|
||||
});
|
||||
$('#main-nav-check').on('change', function(){
|
||||
var isChecked = this.checked;
|
||||
setTimeout(function(){
|
||||
$status.tipsy( isChecked ? 'show' : 'hide' );
|
||||
}, 250);
|
||||
});
|
||||
|
||||
$('.tooltip-bottom').tipsy({ gravity: 'n' });
|
||||
$('.tooltip-top').tipsy({ gravity: 's' });
|
||||
|
Loading…
Reference in New Issue
Block a user