16 lines
504 B
JavaScript
16 lines
504 B
JavaScript
document.addEventListener('DOMContentLoaded', function() {
|
|
var elems = document.querySelectorAll('.sidenav');
|
|
var options = {};
|
|
var instances = M.Sidenav.init(elems, options);
|
|
});
|
|
|
|
// Initialize collapsible (uncomment the lines below if you use the dropdown variation)
|
|
// var collapsibleElem = document.querySelector('.collapsible');
|
|
// var collapsibleInstance = M.Collapsible.init(collapsibleElem, options);
|
|
|
|
// Or with jQuery
|
|
|
|
$(document).ready(function(){
|
|
$('.sidenav').sidenav();
|
|
});
|