Searched refs:measuredWidths (Results 1 – 1 of 1) sorted by relevance
495 var measuredWidths = this._measureWidths();496 …var maxWidth = this._shrinkableTabs ? this._calculateMaxWidth(measuredWidths.slice(), this._totalW…501 tab.setWidth(this._verticalTabLayout ? -1 : Math.min(maxWidth, measuredWidths[i++]));529 var measuredWidths = [];531 measuredWidths.push(this._tabs[tabId]._measuredWidth);534 return measuredWidths;541 _calculateMaxWidth: function(measuredWidths, totalWidth) argument543 if (!measuredWidths.length)546 measuredWidths.sort(function(x, y) { return x - y });549 for (var i = 0; i < measuredWidths.length; ++i)[all …]