Changeset 5528 for trunk/ui/demos/ui.resizable.html
- Timestamp:
- 05/09/08 11:39:47 (5 months ago)
- Files:
-
- 1 modified
-
trunk/ui/demos/ui.resizable.html (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ui/demos/ui.resizable.html
r5420 r5528 43 43 <div style='position: absolute; top: 20px; left: 20px; bottom: 20px; right: 20px;'> 44 44 Resize me<br/> 45 I was made resizable with this code only:<br/> $('div').resizable({ handles: 'all', auto hide: true, minHeight: 100, minWidth: 350 });45 I was made resizable with this code only:<br/> $('div').resizable({ handles: 'all', autoHide: true, minHeight: 100, minWidth: 350 }); 46 46 </div> 47 47 </div> … … 60 60 <br /> 61 61 62 <textarea id='auto hideTextarea' style='margin: 0px; padding: 0px; height:100px; width: 350px;' class="example">Resize me62 <textarea id='autoHideTextarea' style='margin: 0px; padding: 0px; height:100px; width: 350px;' class="example">Resize me 63 63 64 64 I was made resizable with this code only: 65 $('#auto hideTextarea').resizable({ autohide: true, minHeight: 50, minWidth: 150 });</textarea>65 $('#autoHideTextarea').resizable({ autoHide: true, minHeight: 50, minWidth: 150 });</textarea> 66 66 67 67 <br /> … … 121 121 122 122 $('#simpleResize').resizable({ minHeight: 100, minWidth: 350 }); 123 $('#autoHideAllHandles').resizable({ handles: 'all', auto hide: true, minHeight: 100, minWidth: 350 });123 $('#autoHideAllHandles').resizable({ handles: 'all', autoHide: true, minHeight: 100, minWidth: 350 }); 124 124 $('#simpleTextarea').resizable({ minHeight: 50, minWidth: 150 }); 125 $('#auto hideTextarea').resizable({ autohide: true, minHeight: 50, minWidth: 150 });125 $('#autoHideTextarea').resizable({ autoHide: true, minHeight: 50, minWidth: 150 }); 126 126 $('#transparentTextarea').resizable({ transparent: true, handles: 'all', minHeight: 50, minWidth: 150 }); 127 127 $('#allHandlesTextarea').resizable({ handles: 'all', proxy:'proxy', minHeight: 50, minWidth: 150 });
