source:
trunk/workshop-routing-foss4g/web/ext/src/widgets/chart/EventProxy.js
@
81
Revision 76, 398 bytes checked in by djay, 13 years ago (diff) | |
---|---|
|
Rev | Line | |
---|---|---|
[76] | 1 | /*! |
2 | * Ext JS Library 3.4.0 | |
3 | * Copyright(c) 2006-2011 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 | }; |
Note: See TracBrowser
for help on using the repository browser.