Fix dispose causing popover title to change

see: https://github.com/twbs/bootstrap/issues/26847
in v4, destroy was replaced by dispose
This commit is contained in:
jarstelfox 2018-07-10 12:09:51 -07:00 committed by Johann-S
parent 854da5a7c1
commit 198091d635
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ const Popover = (($) => {
let data = $(this).data(DATA_KEY)
const _config = typeof config === 'object' ? config : null
if (!data && /destroy|hide/.test(config)) {
if (!data && /dispose|hide/.test(config)) {
return
}