[TIMOB-12884] iOS: ViewProxy checks for listeners using parent instead of bubbleParent, does not allow for nonViewProxy event bubbling.
| GitHub Issue | n/a | 
|---|---|
| Type | Bug | 
| Priority | Low | 
| Status | Closed | 
| Resolution | Duplicate | 
| Resolution Date | 2013-03-15T01:44:57.000+0000 | 
| Affected Version/s | Release 2.0.2 | 
| Fix Version/s | n/a | 
| Components | iOS | 
| Labels | n/a | 
| Reporter | Blain Hamon | 
| Assignee | Blain Hamon | 
| Created | 2013-02-27T05:10:55.000+0000 | 
| Updated | 2017-03-20T22:19:43.000+0000 | 
Description
	Note to self, TiViewProxy.m:1631
#pragma mark Listener Management
-(BOOL)_hasListeners:(NSString *)type
{
	if ([super _hasListeners:type])
	{
		return YES;
	}
	// check our parent since we optimize the fire with
	// the check
	if (parent!=nil)
	{
		// walk up the chain
		return [parent _hasListeners:type];
	}
	return NO;
}
Fix will be in TIMOB-12616
Closing ticket as duplicate.