Changeset 5528
- Timestamp:
- 05/09/08 11:39:47 (3 months ago)
- Location:
- trunk/ui
- Files:
-
- 4 modified
-
demos/real-world/image-cropper/index.html (modified) (1 diff)
-
demos/ui.resizable.html (modified) (3 diffs)
-
tests/resizable.html (modified) (5 diffs)
-
ui.resizable.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ui/demos/real-world/image-cropper/index.html
r5420 r5528 126 126 //aspectRatio: true, 127 127 128 auto hide: true,128 autoHide: true, 129 129 130 130 minWidth: 100, -
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 }); -
trunk/ui/tests/resizable.html
r5420 r5528 194 194 195 195 $(document).ready(function(){ 196 $(".package").resizable({ handles: 'w, e', auto hide: true, minWidth: 10, containment: 'parent'});196 $(".package").resizable({ handles: 'w, e', autoHide: true, minWidth: 10, containment: 'parent'}); 197 197 198 198 … … 214 214 //transparent: true, 215 215 aspectRatio: true, 216 //auto hide: true,216 //autoHide: true, 217 217 minWidth: 100, 218 218 minHeight: 100, … … 240 240 //proxy: "proxy", 241 241 handles: 'all', 242 //auto hide: true,242 //autoHide: true, 243 243 244 244 minWidth: 50, … … 279 279 ghost: true, 280 280 281 auto hide: true,281 autoHide: true, 282 282 283 283 maxHeight: 500, … … 316 316 //containment: 'parent', 317 317 aspectRatio: 'preserve', 318 auto hide: true318 autoHide: true 319 319 }); 320 320 -
trunk/ui/ui.resizable.js
r5446 r5528 514 514 disableSelection: true, 515 515 preserveCursor: true, 516 auto hide: false,516 autoHide: false, 517 517 knobHandles: false 518 518 }