application-state.js: Remove redundant rendered callback
This commit is contained in:
parent
cfb9450cf0
commit
83d6a258ec
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue