]> source.dussan.org Git - jquery-ui.git/commitdiff
resizable: defined defaults
authorRichard Worth <rdworth@gmail.com>
Sat, 1 Nov 2008 10:32:01 +0000 (10:32 +0000)
committerRichard Worth <rdworth@gmail.com>
Sat, 1 Nov 2008 10:32:01 +0000 (10:32 +0000)
ui/ui.resizable.js

index 82a39e82dd744598229e246ec8ca7a458f7c03b2..d480296a7a9c8a8c2ec9c5e9221e08aa1b5afd53 100644 (file)
@@ -518,18 +518,28 @@ $.widget("ui.resizable", $.extend({}, $.ui.mouse, {
 $.extend($.ui.resizable, {
        version: "@VERSION",
        defaults: {
+               alsoResize: false,
+               animate: false,
+               animateDuration: "slow",
+               animateEasing: "swing",
+               aspectRatio: false,
+               autoHide: false,
                cancel: ":input",
+               containment: false,
+               disableSelection: true,
                distance: 1,
                delay: 0,
-               preventDefault: true,
-               transparent: false,
-               minWidth: 10,
+               ghost: false,
+               grid: false,
+               knobHandles: false,
+               maxHeight: null,
+               maxWidth: null,
                minHeight: 10,
-               aspectRatio: false,
-               disableSelection: true,
+               minWidth: 10,
                preserveCursor: true,
-               autoHide: false,
-               knobHandles: false
+               preventDefault: true,
+               proportionallyResize: false,
+               transparent: false
        }
 });
 
@@ -666,7 +676,8 @@ $.ui.plugin.add("resizable", "animate", {
                
                self.element.animate(
                        $.extend(style, top && left ? { top: top, left: left } : {}), { 
-                               duration: o.animateDuration || "slow", easing: o.animateEasing || "swing", 
+                               duration: o.animateDuration,
+                               easing: o.animateEasing, 
                                step: function() {
                                        
                                        var data = {