bs4Dash
bs4Dash copied to clipboard
`popover()` / `tooltip()`: Is the assumption that tag has an id necessary?
popover() and tooltip() both assume that the tag they are applied to has an id attribute. This should be either documented or maybe it might be possible to bind all tooltips on app start in a singleton with:
$(function () {
$('[data-toggle="tooltip"]').tooltip()
})