From 615127e8c562fc2042ff516ed7494241d35d6a66 Mon Sep 17 00:00:00 2001 From: Scott González Date: Mon, 9 Feb 2009 01:36:51 +0000 Subject: Resizable: Fixed #4093: Removed disableSelection option. --- ui/ui.resizable.js | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'ui') diff --git a/ui/ui.resizable.js b/ui/ui.resizable.js index 9ccfad4fd..cd250a09a 100644 --- a/ui/ui.resizable.js +++ b/ui/ui.resizable.js @@ -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, -- cgit v1.2.3