Hi,
I am seeing a problem that seems to happen intermittently with this line of code in the updateTab() function. We are trying to call updateTab and passing a null property to remove the tab but maintain the pane as suggested in other posts in the forums.
	I've debugged this enough to see that sometimes _6 is undefined and so we get the following error:
	This is with an 8.0 nightly and seems to only happen on Google Chrome for some reason. But, again, only about 50% of the time. What could cause _6 to sometimes be undefined during identical test sequences?
							
						
					I am seeing a problem that seems to happen intermittently with this line of code in the updateTab() function. We are trying to call updateTab and passing a null property to remove the tab but maintain the pane as suggested in other posts in the forums.
Code:
	
	var _6=this.getTab(_1); //other code return _4.pane=_6.pane=null;
Code:
	
	14:42:45.134:TMR1:WARN:Log:TypeError: Cannot read property 'pane' of undefined
    unnamed() @ 
    TabSet.updateTab()
    unnamed()
    [c]Class.fireCallback()
    Timer._fireTimeout()
    unnamed() @

Comment