Searched refs:measuredWidths (Results 1 – 1 of 1) sorted by relevance
587 var measuredWidths = this._measureWidths();588 …var maxWidth = this._shrinkableTabs ? this._calculateMaxWidth(measuredWidths.slice(), this._totalW…593 tab.setWidth(this._verticalTabLayout ? -1 : Math.min(maxWidth, measuredWidths[i++]));621 var measuredWidths = [];623 measuredWidths.push(this._tabs[tabId]._measuredWidth);626 return measuredWidths;633 _calculateMaxWidth: function(measuredWidths, totalWidth) argument635 if (!measuredWidths.length)638 measuredWidths.sort(function(x, y) { return x - y });641 for (var i = 0; i < measuredWidths.length; ++i)[all …]