mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2025-08-12 16:17:16 +02:00
* Add interface for filtering mechanism - now only shows the filtering
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)
This commit is contained in:
7
htdocs/hover.js
Normal file
7
htdocs/hover.js
Normal file
@ -0,0 +1,7 @@
|
||||
$(document).ready(function() {
|
||||
$("tr.row_hover").mouseover(function() {
|
||||
$(this).addClass("hover");
|
||||
}).mouseout(function() {
|
||||
$(this).removeClass("hover");
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user