mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2024-12-14 02:41:26 +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");
|
||
|
});
|
||
|
});
|