flyover.js: Only handle content inside top-level containers

This commit is contained in:
Johannes Meyer 2022-02-07 14:14:43 +01:00
parent b03966c354
commit 646d8928c3
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@
function Flyover(icinga) {
Icinga.EventListener.call(this, icinga);
this.on('rendered', this.onRendered, this);
this.on('rendered', '#main > .container', this.onRendered, this);
this.on('click', this.onClick, this);
this.on('click', '.flyover-toggle', this.onClickFlyoverToggle, this);
}