mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-12 13:00:19 +00:00
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:
Vendored
+2
-2
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user