Home | History | Annotate | Download | only in ui

Lines Matching defs:tabId

258         var eventData = { tabId: id, view: tab.view, isUserGesture: userGesture };
264 * @param {string} tabId
267 hasTab: function(tabId)
269 return !!this._tabsById[tabId];
324 var eventData = { tabId: id, view: tab.view, isUserGesture: userGesture };
516 var tabId = /** @type {string} */ (event.data);
517 this.selectTab(tabId, true);
591 for (var tabId in this._tabs) {
592 var tab = this._tabs[tabId];
602 for (var tabId in this._tabs) {
603 var tab = this._tabs[tabId];
622 for (var tabId in this._tabs)
623 measuredWidths.push(this._tabs[tabId]._measuredWidth);
1159 var tabId = this._tabbedPane.selectedTabId;
1160 if (!tabId)
1162 var view = this._viewForId(tabId);
1164 this._tabbedPane.changeTabView(tabId, view);