Closed 01e9 closed 6 years ago
Somehow to overwrite default init parameters.
It is hardcoded
https://github.com/mdbootstrap/bootstrap-material-design/blob/40ba6e276de09adcf8ddab56bd4a8cfde97cbf2a/js/mdb.js#L15183-L15191
4.5.0 with Webpack
On line 15188 there is Waves.attach('... .navbar input', ['waves-light']);, it breaks my text inputs https://getbootstrap.com/docs/4.0/components/navbar/#forms
15188
Waves.attach('... .navbar input', ['waves-light']);
You can fix this with Waves.attach('..., .navbar button, .navbar input[type="submit"]', ['waves-light']);
Waves.attach('..., .navbar button, .navbar input[type="submit"]', ['waves-light']);
This is not critical.
You can just fix the button selector and close this issue.
Expected behavior
Somehow to overwrite default init parameters.
Actual behavior
It is hardcoded
https://github.com/mdbootstrap/bootstrap-material-design/blob/40ba6e276de09adcf8ddab56bd4a8cfde97cbf2a/js/mdb.js#L15183-L15191
Your working environment and MDB version information
4.5.0 with Webpack
On line
15188
there isWaves.attach('... .navbar input', ['waves-light']);
, it breaks my text inputs https://getbootstrap.com/docs/4.0/components/navbar/#formsYou can fix this with
Waves.attach('..., .navbar button, .navbar input[type="submit"]', ['waves-light']);