Skip to content

Commit e4ec89d

Browse files
author
Grzegorz
committed
release 3.7.1
1 parent ff89bd3 commit e4ec89d

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
MDB5
2-
Version: FREE 3.7.0
2+
Version: FREE 3.7.1
33

44
Documentation:
55
https://mdbootstrap.com/docs/standard/

css/mdb.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/mdb.min.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/mdb.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/mdb.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mdb-ui-kit",
3-
"version": "3.7.0",
3+
"version": "3.7.1",
44
"main": "js/mdb.min.js",
55
"homepage": "https://mdbootstrap.com/docs/standard/",
66
"repository": "https://github.com/mdbootstrap/mdb-ui-kit.git",

src/js/bootstrap/mdb-prefix/dom/manipulator.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ const Manipulator = {
4646
const attributes = {};
4747

4848
Object.keys(element.dataset)
49-
.filter((key) => key.startsWith('bs'))
49+
.filter((key) => key.startsWith('mdb'))
5050
.forEach((key) => {
51-
let pureKey = key.replace(/^bs/, '');
51+
let pureKey = key.replace(/^mdb/, '');
5252
pureKey = pureKey.charAt(0).toLowerCase() + pureKey.slice(1, pureKey.length);
5353
attributes[pureKey] = normalizeData(element.dataset[key]);
5454
});

0 commit comments

Comments
 (0)