/*! Icinga Web 2 | (c) 2015 Icinga Development Team | GPLv2+ */ // @TODO(el): https://dev.icinga.com/issues/10646 (function(Icinga, $) { 'use strict'; Icinga.Behaviors = Icinga.Behaviors || {}; 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; }; ApplicationState.prototype = new Icinga.EventListener(); ApplicationState.prototype.onRendered = function(e) { if (! $('#application-state').length && ! $('#login').length && ! $('#guest-error').length && ! $('#setup').length ) { var _this = e.data.self; $('#layout').append( '' ); } }; ApplicationState.prototype.onSummaryRendered = function(e) { var height = $(this).height(); $('#sidebar').css('bottom', height); $('#main').css('bottom', height); }; Icinga.Behaviors.ApplicationState = ApplicationState; })(Icinga, jQuery);