12 lines
350 B
JavaScript
12 lines
350 B
JavaScript
/**
|
|
* Modern wrapper for Material Design Lite
|
|
* This ensures the script is properly initialized
|
|
*/
|
|
import '/js/material.modern.js';
|
|
|
|
// Make sure the MDL components are upgraded when the DOM is ready
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
if (window.componentHandler) {
|
|
window.componentHandler.upgradeAllRegistered();
|
|
}
|
|
});
|