Skip to content

Commit

Permalink
fix events
Browse files Browse the repository at this point in the history
  • Loading branch information
kbecker42 committed Sep 18, 2024
1 parent 4419605 commit e4f9ee8
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions templates/projects/assign_users.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,20 +55,6 @@
}, 0);
});
});

$('#assign_users .search-input').keyup(function() {
// Initialize tooltips after entering a search term, after the menu is rebuilt.
setTimeout(() => {
setupTooltips();
}, 0);
});

$('#assign_users .search-input').on('paste', function() {
// Initialize tooltips after entering a search term, after the menu is rebuilt.
setTimeout(() => {
setupTooltips();
}, 0);
});
}

$(document).ready(function() {
Expand All @@ -77,6 +63,20 @@
});

setupTooltips();

$('#assign_users .search-input').keyup(function() {
// Initialize tooltips after entering a search term, after the menu is rebuilt.
setTimeout(() => {
setupTooltips();
}, 0);
});

$('#assign_users .search-input').on('paste', function() {
// Initialize tooltips after entering a search term, after the menu is rebuilt.
setTimeout(() => {
setupTooltips();
}, 0);
});
});
</script>
<!-- Le styles -->
Expand Down

0 comments on commit e4f9ee8

Please sign in to comment.