Upgrade to ExtJS 3.3.1 - Released 11/30/2010
[extjs.git] / src / widgets / chart / EventProxy.js
1 /*!
2  * Ext JS Library 3.3.1
3  * Copyright(c) 2006-2010 Sencha Inc.
4  * licensing@sencha.com
5  * http://www.sencha.com/license
6  */
7 /**
8  * @class Ext.FlashProxy
9  * @singleton
10  */
11 Ext.FlashEventProxy = {
12     onEvent : function(id, e){
13         var fp = Ext.getCmp(id);
14         if(fp){
15             fp.onFlashEvent(e);
16         }else{
17             arguments.callee.defer(10, this, [id, e]);
18         }
19     }
20 };