9 lines
220 B
JavaScript
Raw Normal View History

2019-11-23 23:08:03 +02:00
// SITE WIDE Javascript...
$(document).ready(function() {
$('.sidenav').sidenav();
$('.tabs').tabs({
onShow: function () {
// TODO: remove input values from other tabs...
}
});
})