Fix position type, string to any, in jQueryui autocompleteOptions

https://api.jqueryui.com/autocomplete/#option-position
This commit is contained in:
Jesús García Sojo
2015-12-11 09:12:43 +01:00
parent a81c34dcfd
commit f9d7228387
+1 -1
View File
@@ -49,7 +49,7 @@ declare module JQueryUI {
delay?: number;
disabled?: boolean;
minLength?: number;
position?: string;
position?: any; // object
source?: any; // [], string or ()
}