Merge pull request #898 from santialbo/patch-6

Select2: make optional parameters optional
This commit is contained in:
Boris Yankov
2013-08-21 07:20:54 -07:00
+1 -1
View File
@@ -10,7 +10,7 @@ interface Select2QueryOptions {
term?: string;
page?: number;
context?: any;
callback?: (result: { results: any; more: boolean; context: any; }) => void;
callback?: (result: { results: any; more?: boolean; context?: any; }) => void;
}
interface AjaxFunction {