Roo/bootstrap/Card.js
[roojs1] / Roo / bootstrap / Card.js
index d5144a6..ba847e3 100644 (file)
@@ -91,7 +91,7 @@ Roo.extend(Roo.bootstrap.Card, Roo.bootstrap.Component,  {
     title : '',
     subtitle : '',
     html : '',
-    
+    footer: '',
     
     childContainer : false,
 
@@ -111,7 +111,7 @@ Roo.extend(Roo.bootstrap.Card, Roo.bootstrap.Component,  {
             }
         });
         
-        ['', 'xs', 'sm', 'lg', 'xl',   ].forEach(function(v) {
+        ['', 'xs', 'sm', 'lg', 'xl'].forEach(function(v) {
             if (t['display' + (v.length ? '_' : '') + v].length) {
                 cls += ' d' +  (v.length ? '-' : '') + v + '-' + t['margin' + (v.length ? '_' : '') + v].length
             }
@@ -186,7 +186,7 @@ Roo.extend(Roo.bootstrap.Card, Roo.bootstrap.Component,  {
             cls : 'card-body',
             cn : []
         };
-        cfg.push(body);
+        cfg.cn.push(body);
         
         if (this.title.length) {
             body.cn.push({
@@ -209,6 +209,12 @@ Roo.extend(Roo.bootstrap.Card, Roo.bootstrap.Component,  {
             cls : 'roo-card-body-ctr'
         });
         
+        if (this.html.length) {
+            body.cn.push({
+                tag: 'div',
+                html : this.html
+            });
+        }
         // fixme ? handle objects?
         if (this.footer.length) {
             body.cn.push({
@@ -232,4 +238,5 @@ Roo.extend(Roo.bootstrap.Card, Roo.bootstrap.Component,  {
         return this.el.select('.roo-card-body-ctr',true).first();    
     }
     
-}
\ No newline at end of file
+});
+