mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-11 10:59:55 +08: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:
4
jqueryui/jqueryui.d.ts
vendored
4
jqueryui/jqueryui.d.ts
vendored
@@ -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