mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-12 01:50:48 +01:00
8 lines
199 B
JavaScript
8 lines
199 B
JavaScript
$(document).ready(function(){
|
|
$(".desktop-style .sub .sub").on("mouseover", function() {
|
|
$(this).addClass("hover");
|
|
}).on("mouseout", function() {
|
|
$(this).removeClass("hover");
|
|
});
|
|
});
|