Roo/bootstrap/LayoutMasonry.js
authorAlan Knowles <alan@roojs.com>
Mon, 19 Oct 2015 08:46:07 +0000 (16:46 +0800)
committerAlan Knowles <alan@roojs.com>
Mon, 19 Oct 2015 08:46:07 +0000 (16:46 +0800)
Roo/bootstrap/LayoutMasonry.js

index 71e6583..a10c656 100644 (file)
@@ -7,3 +7,42 @@
  */
 
 
+/**
+ * @class Roo.bootstrap.LayoutMasonry
+ * @extends Roo.bootstrap.Component
+ * Bootstrap Layout Masonry class
+ * 
+ * @constructor
+ * Create a new Element
+ * @param {Object} config The config object
+ */
+
+Roo.bootstrap.LayoutMasonry = function(config){
+    Roo.bootstrap.LayoutMasonry.superclass.constructor.call(this, config);
+};
+
+Roo.extend(Roo.bootstrap.LayoutMasonry, Roo.bootstrap.Component,  {
+    
+    tag: 'div',
+    cls: '',
+    html: '',
+     
+    
+    getAutoCreate : function(){
+        
+        var cfg = {
+            tag: this.tag,
+            cls: this.cls,
+            html: this.html
+        }
+        
+        
+       
+        return cfg;
+    }
+   
+});
+
+
\ No newline at end of file