mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-26 01:43:10 +01:00
8 lines
190 B
JavaScript
8 lines
190 B
JavaScript
$(document).ready(function() {
|
|
$("tr.row_hover").mouseover(function() {
|
|
$(this).addClass("hover");
|
|
}).mouseout(function() {
|
|
$(this).removeClass("hover");
|
|
});
|
|
});
|