[Commits] r2534 - sandbox/cmoullet/ux/Profile/lib/GeoExt.ux
commits at geoext.org
commits at geoext.org
Sat Dec 25 08:12:27 CET 2010
Author: cmoullet
Date: 2010-12-25 08:12:27 +0100 (Sat, 25 Dec 2010)
New Revision: 2534
Modified:
sandbox/cmoullet/ux/Profile/lib/GeoExt.ux/ProfileBox.js
Log:
Use only box and not panel anymore
Modified: sandbox/cmoullet/ux/Profile/lib/GeoExt.ux/ProfileBox.js
===================================================================
--- sandbox/cmoullet/ux/Profile/lib/GeoExt.ux/ProfileBox.js 2010-12-25 07:06:49 UTC (rev 2533)
+++ sandbox/cmoullet/ux/Profile/lib/GeoExt.ux/ProfileBox.js 2010-12-25 07:12:27 UTC (rev 2534)
@@ -1,7 +1,7 @@
/** api: (define)
* module = GeoExt.ux
- * class = ProfilePanel
- * base_link = `Ext.Panel <http://extjs.com/deploy/dev/docs/?class=Ext.Panel>`_
+ * class = ProfileBox
+ * base_link = `Ext.BoxComponent <http://extjs.com/deploy/dev/docs/?class=Ext.BoxComponent>`_
*/
Ext.namespace('GeoExt.ux');
@@ -31,10 +31,10 @@
// Overriding superclass template method
afterRender : function() {
- this.addClass('geoext-ux-profilepanel');
+ this.addClass('geoext-ux-profilebox');
this.innerEl = this.el.createChild({
- cls : 'geoext-ux-profilepanel-inner'
+ cls : 'geoext-ux-profilebox-inner'
});
this.canvas = Raphael(this.innerEl.dom, this.ownerCt.getWidth()-14, this.ownerCt.getHeight()-18);
@@ -55,4 +55,4 @@
}
});
-Ext.reg('gxux_profilepanel', GeoExt.ux.ProfileBox);
\ No newline at end of file
+Ext.reg('gxux_profilebox', GeoExt.ux.ProfileBox);
\ No newline at end of file
More information about the Commits
mailing list