diff options
Diffstat (limited to 'vendor/twbs/bootstrap/js/src/dom/manipulator.js')
-rw-r--r-- | vendor/twbs/bootstrap/js/src/dom/manipulator.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/twbs/bootstrap/js/src/dom/manipulator.js b/vendor/twbs/bootstrap/js/src/dom/manipulator.js index dd86a9ffb..a7edc9cb8 100644 --- a/vendor/twbs/bootstrap/js/src/dom/manipulator.js +++ b/vendor/twbs/bootstrap/js/src/dom/manipulator.js @@ -56,7 +56,7 @@ const Manipulator = { for (const key of bsKeys) { let pureKey = key.replace(/^bs/, '') - pureKey = pureKey.charAt(0).toLowerCase() + pureKey.slice(1, pureKey.length) + pureKey = pureKey.charAt(0).toLowerCase() + pureKey.slice(1) attributes[pureKey] = normalizeData(element.dataset[key]) } |