From f9b6bfd6feb04ec2b18edcfc6f573debffdf6db1 Mon Sep 17 00:00:00 2001 From: Natan Vivo Date: Tue, 3 Dec 2013 14:12:42 -0200 Subject: [PATCH] Fix too restrictive sortable options. From jquery docs: "If Selector is specified as the type of an argument, it accepts everything that the jQuery constructor accepts, eg. Strings, Elements, Lists of Elements." http://api.jquery.com/Types/#Selector --- jqueryui/jqueryui.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jqueryui/jqueryui.d.ts b/jqueryui/jqueryui.d.ts index a0e0d64f03..ab904dfc5d 100644 --- a/jqueryui/jqueryui.d.ts +++ b/jqueryui/jqueryui.d.ts @@ -463,8 +463,8 @@ declare module JQueryUI { interface SortableOptions { appendTo?: any; // jQuery, Element, Selector or string axis?: string; - cancel?: string; - connectWith?: string; + cancel?: any; // Selector + connectWith?: any; // Selector containment?: any; // Element, Selector or string cursor?: string; cursorAt?: any;