1
0
mirror of synced 2025-02-09 16:49:24 +03:00

export classes, issue #13

This commit is contained in:
Igor Vaynberg 2012-04-02 08:36:55 -07:00
parent b0b70243b6
commit bf25e5e7e4

View File

@ -267,12 +267,6 @@
};
}
// exports
window.Select2 = {query: {}, util: {}};
window.Select2.util.debounce = debounce;
window.Select2.query.ajax = ajax;
window.Select2.query.local = local;
/**
* blurs any Select2 container that has focus when an element outside them was clicked or received focus
*/
@ -1247,4 +1241,18 @@
return (value === undefined) ? this : value;
};
// exports
window.Select2 = {
query: {
ajax: ajax,
local: local
}, util: {
debounce: debounce
}, "class": {
abstract: AbstractSelect2,
single: SingleSelect2,
multi: MultiSelect2
}
};
}(jQuery));