diff options
| author | XhmikosR <[email protected]> | 2024-07-29 17:26:02 +0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-07-29 17:26:02 +0300 |
| commit | 6ca9152d04be08de8cb1974b638bc8d61047ab4f (patch) | |
| tree | 149545847a3d08abf3a2d6e974cc8616574a701e /js/src/dom | |
| parent | c6d1d54043b07de232b41360d629780ca0946b82 (diff) | |
| download | bootstrap-6ca9152d04be08de8cb1974b638bc8d61047ab4f.tar.xz bootstrap-6ca9152d04be08de8cb1974b638bc8d61047ab4f.zip | |
Update devDependencies and regenerate package-lock.json (#40673)
* @babel/preset-env ^7.24.8 → ^7.25.0
* eslint-plugin-unicorn ^54.0.0 → ^55.0.0
* hugo-bin ^0.126.0 → ^0.127.0
* postcss ^8.4.39 → ^8.4.40
* rollup ^4.19.0 → ^4.19.1
* rtlcss ^4.1.1 → ^4.2.0
Diffstat (limited to 'js/src/dom')
| -rw-r--r-- | js/src/dom/manipulator.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/dom/manipulator.js b/js/src/dom/manipulator.js index dd86a9ffb..a7edc9cb8 100644 --- a/js/src/dom/manipulator.js +++ b/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]) } |
