remove debugging code
[roojs1] / Roo / bootstrap / Row.js
index aff7fa5..358e219 100644 (file)
@@ -3,18 +3,31 @@
  *
  * row
  * 
- */ 
+ */
+
+/**
+ * @class Roo.bootstrap.Row
+ * @extends Roo.bootstrap.Component
+ * Bootstrap Row class (contains columns...)
+ * 
+ * @constructor
+ * Create a new Row
+ * @param {Object} config The config object
+ */
+
 Roo.bootstrap.Row = function(config){
     Roo.bootstrap.Row.superclass.constructor.call(this, config);
 };
 
 Roo.extend(Roo.bootstrap.Row, Roo.bootstrap.Component,  {
-      
-       autoCreate : {
-        cls: 'row clearfix'
+    
+    getAutoCreate : function(){
+       return {
+            cls: 'row clearfix'
+       };
     }
-   
+    
+    
 });