change the formatting

This commit is contained in:
Damien Churchill 2010-01-26 17:42:17 +00:00
parent 7125eab8b2
commit 3e13fe1229

View File

@ -32,8 +32,13 @@ Copyright:
*/ */
Ext.namespace('Ext.ux.util'); Ext.namespace('Ext.ux.util');
(function() { /**
Ext.ux.util.RpcClient = Ext.extend(Ext.util.Observable, { * A class that connects to a json-rpc resource and adds the available
* methods as functions to the class instance.
* @class Ext.ux.util.RpcClient
* @namespace Ext.ux.util
*/
Ext.ux.util.RpcClient = Ext.extend(Ext.util.Observable, {
_components: [], _components: [],
@ -188,5 +193,4 @@ Ext.namespace('Ext.ux.util');
this._components = Ext.keys(components); this._components = Ext.keys(components);
this.fireEvent('connected', this); this.fireEvent('connected', this);
} }
}); });
})();