Website/js/main.js

29 lines
631 B
JavaScript
Raw Normal View History

/*
Copyright 2017 Aggelos Sarris and contributors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
*/
2016-08-26 17:01:25 +00:00
$(document).ready(function() {
2016-09-18 21:07:04 +00:00
$(".button-collapse").sideNav({
closeOnClick: true
});
$('.modal-trigger').leanModal();
$('.tooltipped').tooltip({
delay: 50
});
2016-08-26 17:01:25 +00:00
});
2016-11-20 10:02:37 +00:00
$(document).ready(function(){
(new Date).getFullYear();
$("#curYear").text((new Date).getFullYear());
2017-01-22 22:43:18 +00:00
});