application-state.js: Remove redundant rendered callback

This commit is contained in:
Johannes Meyer 2019-12-06 13:12:54 +01:00
parent cfb9450cf0
commit 83d6a258ec
1 changed files with 0 additions and 5 deletions

View File

@ -10,7 +10,6 @@
var ApplicationState = function (icinga) {
Icinga.EventListener.call(this, icinga);
this.on('rendered', this.onRendered, this);
this.on('rendered', '#application-state-summary', this.onSummaryRendered, this);
this.icinga = icinga;
};
@ -32,10 +31,6 @@
}
};
ApplicationState.prototype.onSummaryRendered = function(e) {
var height = $(this).height();
};
Icinga.Behaviors.ApplicationState = ApplicationState;
})(Icinga, jQuery);