Roo/bootstrap/Label.js
authorEdward <edward@roojs.com>
Mon, 28 Apr 2014 04:27:38 +0000 (12:27 +0800)
committerEdward <edward@roojs.com>
Mon, 28 Apr 2014 04:27:38 +0000 (12:27 +0800)
Roo/bootstrap/Label.js [deleted file]

diff --git a/Roo/bootstrap/Label.js b/Roo/bootstrap/Label.js
deleted file mode 100644 (file)
index 380af2b..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * - LGPL
- *
- * Label
- * 
- */
-
-/**
- * @class Roo.bootstrap.Label
- * @extends Roo.bootstrap.Component
- * Bootstrap Label class
- * @cfg {String} html The label content
- * @cfg {String} tag (span|label|p) The tag of this element, default label
- * 
- * @constructor
- * Create a new Label
- * @param {Object} config The config object
- */
-
-Roo.bootstrap.Label = function(config){
-    Roo.bootstrap.Label.superclass.constructor.call(this, config);
-};
-
-Roo.extend(Roo.bootstrap.Label, Roo.bootstrap.Component,  {
-    
-    html: false,
-    tag: 'label',
-    
-    getAutoCreate : function(){
-        
-        var cfg = {
-            tag: this.tag,
-            html: this.html || ''
-        }
-        
-        
-        if (this.cls) {
-            cfg.cls = this.cls;
-        }
-        
-        return cfg;
-    }
-   
-});
-
-
\ No newline at end of file