forked from extern/django-helpdesk
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");
|
|
});
|
|
});
|