collapsible.js: Listen for rendered events on all containers

not just #col2
This commit is contained in:
Johannes Meyer 2019-06-06 14:52:58 +02:00
parent 0574f44bd9
commit 0ed030410f
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@
var Collapsible = function (icinga) {
Icinga.EventListener.call(this, icinga);
this.on('rendered', '#col2', this.onRendered, this);
this.on('rendered', '.container', this.onRendered, this);
this.on('click', '.collapsible + .collapsible-control', this.onControlClicked, this);
this.icinga = icinga;