Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js/src/dom
diff options
context:
space:
mode:
authorRohit Sharma <rohit2sharma95@gmail.com>2020-11-11 09:37:04 +0300
committerXhmikosR <xhmikosr@gmail.com>2020-11-14 08:09:15 +0300
commite530118117af509ffb97029cd250a23ee08120b6 (patch)
treebb541e3d3c692df4391359001a7e679c146bb14c /js/src/dom
parenta7f04e9595205ed091a5bba71cedc4a80fc4da47 (diff)
Get only bs prefixed data attributes
Diffstat (limited to 'js/src/dom')
-rw-r--r--js/src/dom/manipulator.js8
1 files changed, 3 insertions, 5 deletions
diff --git a/js/src/dom/manipulator.js b/js/src/dom/manipulator.js
index 04b9543c8a..faab54b5ef 100644
--- a/js/src/dom/manipulator.js
+++ b/js/src/dom/manipulator.js
@@ -43,16 +43,14 @@ const Manipulator = {
return {}
}
- const attributes = {
- ...element.dataset
- }
+ const attributes = {}
- Object.keys(attributes)
+ Object.keys(element.dataset)
.filter(key => key.startsWith('bs'))
.forEach(key => {
let pureKey = key.replace(/^bs/, '')
pureKey = pureKey.charAt(0).toLowerCase() + pureKey.slice(1, pureKey.length)
- attributes[pureKey] = normalizeData(attributes[key])
+ attributes[pureKey] = normalizeData(element.dataset[key])
})
return attributes