mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2024-12-15 19:30:59 +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");
|
|
});
|
|
});
|