mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-29 11:23:16 +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");
|
||
|
});
|
||
|
});
|