mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-26 07:14:35 +02:00
application-state.js: Remove redundant rendered callback
This commit is contained in:
parent
cfb9450cf0
commit
83d6a258ec
@ -10,7 +10,6 @@
|
|||||||
var ApplicationState = function (icinga) {
|
var ApplicationState = function (icinga) {
|
||||||
Icinga.EventListener.call(this, icinga);
|
Icinga.EventListener.call(this, icinga);
|
||||||
this.on('rendered', this.onRendered, this);
|
this.on('rendered', this.onRendered, this);
|
||||||
this.on('rendered', '#application-state-summary', this.onSummaryRendered, this);
|
|
||||||
this.icinga = icinga;
|
this.icinga = icinga;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -32,10 +31,6 @@
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
ApplicationState.prototype.onSummaryRendered = function(e) {
|
|
||||||
var height = $(this).height();
|
|
||||||
};
|
|
||||||
|
|
||||||
Icinga.Behaviors.ApplicationState = ApplicationState;
|
Icinga.Behaviors.ApplicationState = ApplicationState;
|
||||||
|
|
||||||
})(Icinga, jQuery);
|
})(Icinga, jQuery);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user