diff --git a/public/js/icinga/events.js b/public/js/icinga/events.js index 4dabd9209..3ef291351 100644 --- a/public/js/icinga/events.js +++ b/public/js/icinga/events.js @@ -88,8 +88,8 @@ $(document).on('keyup', '#menu input.search', {self: this}, this.submitForm); - $('.historycolorgrid td').on('mouseenter', this.historycolorgridHover); - $('.historycolorgrid td').on('mouseleave', this.historycolorgidUnhover); + $(document).on('mouseenter', '.historycolorgrid td', this.historycolorgridHover); + $(document).on('mouseleave', '.historycolorgrid td', this.historycolorgidUnhover); // TBD: a global autocompletion handler // $(document).on('keyup', 'form.auto input', this.formChangeDelayed);