leftypol/js/chrome-board-expanding-fix.js

8 lines
199 B
JavaScript
Raw Normal View History

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