1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-12 01:50:48 +01:00
vichan/js/chrome-board-expanding-fix.js

8 lines
199 B
JavaScript

$(document).ready(function(){
$(".desktop-style .sub .sub").on("mouseover", function() {
$(this).addClass("hover");
}).on("mouseout", function() {
$(this).removeClass("hover");
});
});