return t.prototype.getContent = function()

in WebPortal/Scripts/speedtest.js [675:706]


        return t.prototype.getContent = function () {
            return this.content
        }, t.prototype.getHiddenContent = function () {
            return this.toggleContent
        }, t.prototype.isExpanded = function () {
            return this.expanded
        }, t.prototype.setHandler = function (n) {
            this.handler = n
        }, t.prototype.setUpdateHandler = function (n) {
            this.updateHandler = n
        }, t.prototype.setOnExpand = function (n) {
            this.onExpandHandler = n
        }, t.prototype.setOnCollapse = function (n) {
            this.onCollapseHandler = n
        }, t.prototype.handleClick = function () {
            var n = !0;
            this.handler != null && (n = this.handler());
            n && this.toggle()
        }, t.prototype.instrumentToggle = function () {
            if (this.instrumentationTitle) {
                var t = this.expanded ? this.instNameCollapse : this.instNameExpand;
                n.logClick(t, this.instrumentationTitle, null)
            }
        }, t.prototype.toggle = function () {
            this.instrumentToggle();
            this.expanded = !this.expanded;
            n.toggleClass(this.button, this.openedClass);
            n.toggleVisibility(this.content);
            this.expanded && this.onExpandHandler ? this.onExpandHandler() : !this.expanded && this.onCollapseHandler && this.onCollapseHandler();
            this.toggleContent && n.toggleVisibility(this.toggleContent);
            this.updateHandler && this.updateHandler()
        }, t