mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-26 09:53:12 +01:00
c626b22f4d
options that are being used, allowing users to add or remove more options rather than just display the lot on screen. * Break out filtering and row hover into separate javascript files (hover is used in the ticket list & dashboard - same code was used in both places. Anti-DRY)
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");
|
|
});
|
|
});
|