add content + modif html

This commit is contained in:
2019-01-30 12:24:08 +01:00
parent 858bff0f81
commit fd2eac3dc4
46 changed files with 454 additions and 205 deletions
+14
View File
@@ -0,0 +1,14 @@
var $Sba = $('.sidebar-right a');
var $Sbsvg = $('.sidebar-right svg');
function addclass() {
$Sba.hover(function() {
$(this).addClass("hover");
}, function() {
$(this).removeClass("hover");
});
}
jQuery(document).ready(function($){
addclass();
});