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
This commit is contained in:
Natan Vivo
2013-12-03 14:12:42 -02:00
parent 7f90ac8db3
commit f9b6bfd6fe

View File

@@ -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;