examples/resizable/basic.js
authorChris <chris@roojs.com>
Mon, 25 Nov 2013 08:12:20 +0000 (16:12 +0800)
committerChris <chris@roojs.com>
Mon, 25 Nov 2013 08:12:20 +0000 (16:12 +0800)
examples/resizable/basic.js

index 1d3d0af..18822d3 100644 (file)
@@ -90,6 +90,40 @@ var ResizableExample = {
             dynamic: true
         });
         
+        
+        new Roo.Resizable('box1', {
+            wrap:true,
+            width: 595,
+            height: 200,
+            minWidth:20,
+            minHeight:20,
+            handles: 'all',
+            dynamic: true,
+            draggable: true
+        });
+        
+        new Roo.Resizable('box2', {
+            wrap:true,
+            width: 595,
+            height: 200,
+            minWidth:20,
+            minHeight:20,
+            handles: 'all',
+            dynamic: true,
+            draggable: true
+        });
+        
+        new Roo.Resizable('box3', {
+            wrap:true,
+            width: 595,
+            height: 200,
+            minWidth:20,
+            minHeight:20,
+            handles: 'all',
+            dynamic: true,
+            draggable: true
+        });
+        
         this.multi = new Roo.Resizable('multi-box', {
             wrap:true,
             width: 595,
@@ -99,7 +133,8 @@ var ResizableExample = {
             handles: 'all',
             dynamic: true,
             draggable: true,
-            resizeChild: true
+            resizeChild: true,
+            
         });
     },
     multi : Roo.emptyFn