mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-10 19:57:13 +03:00
release 3.7.1
This commit is contained in:
parent
ff89bd3201
commit
e4ec89db5c
|
@ -1,5 +1,5 @@
|
|||
MDB5
|
||||
Version: FREE 3.7.0
|
||||
Version: FREE 3.7.1
|
||||
|
||||
Documentation:
|
||||
https://mdbootstrap.com/docs/standard/
|
||||
|
|
2
css/mdb.min.css
vendored
2
css/mdb.min.css
vendored
|
@ -1,6 +1,6 @@
|
|||
/*!
|
||||
* MDB5
|
||||
* Version: FREE 3.7.0
|
||||
* Version: FREE 3.7.1
|
||||
*
|
||||
*
|
||||
* Copyright: Material Design for Bootstrap
|
||||
|
|
File diff suppressed because one or more lines are too long
4
js/mdb.min.js
vendored
4
js/mdb.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "mdb-ui-kit",
|
||||
"version": "3.7.0",
|
||||
"version": "3.7.1",
|
||||
"main": "js/mdb.min.js",
|
||||
"homepage": "https://mdbootstrap.com/docs/standard/",
|
||||
"repository": "https://github.com/mdbootstrap/mdb-ui-kit.git",
|
||||
|
|
|
@ -46,9 +46,9 @@ const Manipulator = {
|
|||
const attributes = {};
|
||||
|
||||
Object.keys(element.dataset)
|
||||
.filter((key) => key.startsWith('bs'))
|
||||
.filter((key) => key.startsWith('mdb'))
|
||||
.forEach((key) => {
|
||||
let pureKey = key.replace(/^bs/, '');
|
||||
let pureKey = key.replace(/^mdb/, '');
|
||||
pureKey = pureKey.charAt(0).toLowerCase() + pureKey.slice(1, pureKey.length);
|
||||
attributes[pureKey] = normalizeData(element.dataset[key]);
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue
Block a user