summaryrefslogtreecommitdiffstats
path: root/modules/doc/public/js/module.js
blob: d5571eedd0567490dc22512ba402503cc156e9f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*! Icinga Web 2 | (c) 2015 Icinga Development Team | GPLv2+ */

(function(Icinga) {

    var Doc = function(module) {
        this.module = module;
        this.initialize();
        this.module.icinga.logger.debug('Doc module loaded');
    };

    Doc.prototype = {

        initialize: function()
        {
            this.module.on('rendered',     this.rendered);
            this.module.icinga.logger.debug('Doc module initialized');
        },

        rendered: function(event) {
            var $container = $(event.currentTarget);
            if ($('> .content.styleguide', $container).length) {
                $container.removeClass('module-doc');
            }
        }
    };

    Icinga.availableModules.doc = Doc;

}(Icinga));