Fix expanding boards on boardlist on Webkit browsers using javascript
This commit is contained in:
7
js/chrome-board-expanding-fix.js
Normal file
7
js/chrome-board-expanding-fix.js
Normal file
@@ -0,0 +1,7 @@
|
||||
$(document).ready(function(){
|
||||
$(".desktop-style .sub .sub").on("mouseover", function() {
|
||||
$(this).addClass("hover");
|
||||
}).on("mouseout", function() {
|
||||
$(this).removeClass("hover");
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user