1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-16 10:34:07 +02:00

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

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
}