X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/c930e9176a5a85509c5b0230e2bff5c22a591432..6e39d509471fe9b4e2660e0d1631b350d0c66f40:/docs/source/TextItem.html
diff --git a/docs/source/TextItem.html b/docs/source/TextItem.html
index 0c7ec325..2bcbd59f 100644
--- a/docs/source/TextItem.html
+++ b/docs/source/TextItem.html
@@ -1,5 +1,6 @@
+
The source code
@@ -15,14 +16,7 @@
* is applied as a config object (and should contain a text property).
* @xtype menutextitem
*/
-Ext.menu.TextItem = function(cfg){
- if(typeof cfg == 'string'){
- cfg = {text: cfg}
- }
- Ext.menu.TextItem.superclass.constructor.call(this, cfg);
-};
-
-Ext.extend(Ext.menu.TextItem, Ext.menu.BaseItem, {
+Ext.menu.TextItem = Ext.extend(Ext.menu.BaseItem, {
/**
* @cfg {String} text The text to display for this item (defaults to '')
*/
@@ -34,6 +28,13 @@ Ext.extend(Ext.menu.TextItem, Ext.menu.BaseItem, {
* @cfg {String} itemCls The default CSS class to use for text items (defaults to "x-menu-text")
*/
itemCls : "x-menu-text",
+
+ constructor : function(config){
+ if(typeof config == 'string'){
+ config = {text: config}
+ }
+ Ext.menu.TextItem.superclass.constructor.call(this, config);
+ },
// private
onRender : function(){