mirror of
https://github.com/aquatix/digimarks.git
synced 2025-12-06 22:05:09 +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
|