return n.prototype.selectTab = function()

in WebPortal/Scripts/speedtest.js [630:644]


        return n.prototype.selectTab = function (n) {
            this.activeTab != n && (this.activeTab && this.activeTab.deactivate(), n.activate(), this.activeTab = n, this.updateHandler && this.updateHandler())
        }, n.prototype.setUpdateHandler = function (n) {
            this.updateHandler = n
        }, n.prototype.getTabByIndex = function (n) {
            return this.tabs[n]
        }, n.prototype.getTabByElement = function (n) {
            for (var t = 0; t < this.tabs.length; t++)
                if (this.tabs[t].isElement(n)) return this.tabs[t];
            return null
        }, n.prototype.getTabByBoundElement = function (n) {
            for (var t = 0; t < this.tabs.length; t++)
                if (this.tabs[t].getBoundElement() === n) return this.tabs[t];
            return null
        }, n