From 6286e15441ad1c89a0b7cf612e4b9bd40fa39ade Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Thu, 6 Mar 2014 09:47:53 +0000 Subject: [PATCH] HistoryColorGrid events should be "live" --- public/js/icinga/events.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);