]> source.dussan.org Git - jquery-ui.git/commitdiff
Resizable: Fixed #4093: Removed disableSelection option.
authorScott González <scott.gonzalez@gmail.com>
Mon, 9 Feb 2009 01:36:51 +0000 (01:36 +0000)
committerScott González <scott.gonzalez@gmail.com>
Mon, 9 Feb 2009 01:36:51 +0000 (01:36 +0000)
tests/unit/resizable/resizable_defaults.js
ui/ui.resizable.js

index 9be87a1baa56b4dd86fcb9e146cb63596079ae0b..23955e62093bbbb095a40a48c04738c3bac8fc9f 100644 (file)
@@ -13,7 +13,6 @@ var resizable_defaults = {
        containment: false,
        delay: 0,
        disabled: false,
-       disableSelection: true,
        distance: 1,
        ghost: false,
        grid: false,
index 9ccfad4fd4122d8836efb4de7346d5d73455f808..cd250a09af7f884d8490f8be51b3668a57134ca1 100644 (file)
@@ -137,10 +137,8 @@ $.widget("ui.resizable", $.extend({}, $.ui.mouse, {
                //TODO: make renderAxis a prototype function
                this._renderAxis(this.element);
 
-               this._handles = $('.ui-resizable-handle', this.element);
-
-               if (o.disableSelection)
-                       this._handles.disableSelection();
+               this._handles = $('.ui-resizable-handle', this.element)
+                       .disableSelection();
 
                //Matching axis name
                this._handles.mouseover(function() {
@@ -438,10 +436,9 @@ $.widget("ui.resizable", $.extend({}, $.ui.mouse, {
                                zIndex: ++o.zIndex //TODO: Don't modify option
                        });
 
-                       this.helper.appendTo("body");
-
-                       if (o.disableSelection)
-                               this.helper.disableSelection();
+                       this.helper
+                               .appendTo("body")
+                               .disableSelection();
 
                } else {
                        this.helper = this.element;
@@ -512,7 +509,6 @@ $.extend($.ui.resizable, {
                cancel: ":input,option",
                containment: false,
                delay: 0,
-               disableSelection: true,
                distance: 1,
                ghost: false,
                grid: false,