mirror of
https://codeberg.org/diginaut/digimarks.git
synced 2026-02-05 01:30:26 +01:00
13 lines
261 B
JavaScript
13 lines
261 B
JavaScript
(function($){
|
|
$(function(){
|
|
|
|
$('.sidenav').sidenav();
|
|
|
|
/* Initialise collapsible tags block */
|
|
$(document).ready(function() {
|
|
$('.collapsible').collapsible();
|
|
});
|
|
|
|
}); // end of document ready
|
|
})(jQuery); // end of jQuery name space
|