From 1805e7827f3b81fc4d4987a223ecede0334626d3 Mon Sep 17 00:00:00 2001 From: Paul Bakaus Date: Tue, 20 Jan 2009 16:34:21 +0000 Subject: [PATCH] sortable: connectWith should accept string selectors (fixes #3892, backward compatibility still existant) --- ui/ui.sortable.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ui/ui.sortable.js b/ui/ui.sortable.js index aa9724793..54b136efc 100644 --- a/ui/ui.sortable.js +++ b/ui/ui.sortable.js @@ -469,8 +469,9 @@ $.widget("ui.sortable", $.extend({}, $.ui.mouse, { var queries = []; if(this.options.connectWith && connected) { - for (var i = this.options.connectWith.length - 1; i >= 0; i--){ - var cur = $(this.options.connectWith[i]); + var connectWith = this.options.connectWith.constructor == String ? [this.options.connectWith] : this.options.connectWith; + for (var i = connectWith.length - 1; i >= 0; i--){ + var cur = $(connectWith[i]); for (var j = cur.length - 1; j >= 0; j--){ var inst = $.data(cur[j], 'sortable'); if(inst && inst != this && !inst.options.disabled) { -- 2.39.5