jekyll-theme-cs50
jekyll-theme-cs50 copied to clipboard
Dispose of tooltips in tables sans jQuery?
// Re-attach tooltips after tables have responded
// https://github.com/wenzhixin/bootstrap-table/issues/572#issuecomment-76503607
$('table').on('pre-body.bs.table', function() {
$('main table [data-toggle="tooltip"]').tooltip('dispose');
});