select2.js 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166
  1. /*
  2. Copyright 2012 Igor Vaynberg
  3. Version: @@ver@@ Timestamp: @@timestamp@@
  4. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in
  5. compliance with the License. You may obtain a copy of the License in the LICENSE file, or at:
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software distributed under the License is
  8. distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  9. See the License for the specific language governing permissions and limitations under the License.
  10. */
  11. (function ($) {
  12. if(typeof $.fn.each2 == "undefined"){
  13. $.fn.extend({
  14. /*
  15. * 4-10 times faster .each replacement
  16. * use it carefully, as it overrides jQuery context of element on each iteration
  17. */
  18. each2 : function (c) {
  19. var j = $([0]), i = -1, l = this.length;
  20. while (
  21. ++i < l
  22. && (j.context = j[0] = this[i])
  23. && c.call(j[0], i, j) !== false //"this"=DOM, i=index, j=jQuery object
  24. );
  25. return this;
  26. }
  27. });
  28. }
  29. })(jQuery);
  30. (function ($, undefined) {
  31. "use strict";
  32. /*global document, window, jQuery, console */
  33. if (window.Select2 !== undefined) {
  34. return;
  35. }
  36. var KEY, AbstractSelect2, SingleSelect2, MultiSelect2, nextUid, sizer;
  37. KEY = {
  38. TAB: 9,
  39. ENTER: 13,
  40. ESC: 27,
  41. SPACE: 32,
  42. LEFT: 37,
  43. UP: 38,
  44. RIGHT: 39,
  45. DOWN: 40,
  46. SHIFT: 16,
  47. CTRL: 17,
  48. ALT: 18,
  49. PAGE_UP: 33,
  50. PAGE_DOWN: 34,
  51. HOME: 36,
  52. END: 35,
  53. BACKSPACE: 8,
  54. DELETE: 46,
  55. isArrow: function (k) {
  56. k = k.which ? k.which : k;
  57. switch (k) {
  58. case KEY.LEFT:
  59. case KEY.RIGHT:
  60. case KEY.UP:
  61. case KEY.DOWN:
  62. return true;
  63. }
  64. return false;
  65. },
  66. isControl: function (k) {
  67. k = k.which ? k.which : k;
  68. switch (k) {
  69. case KEY.SHIFT:
  70. case KEY.CTRL:
  71. case KEY.ALT:
  72. return true;
  73. }
  74. if (k.metaKey) return true;
  75. return false;
  76. },
  77. isFunctionKey: function (k) {
  78. k = k.which ? k.which : k;
  79. return k >= 112 && k <= 123;
  80. }
  81. };
  82. nextUid=(function() { var counter=1; return function() { return counter++; }; }());
  83. function escapeMarkup(markup) {
  84. if (markup && typeof(markup) === "string") {
  85. return markup.replace("&", "&amp;");
  86. } else {
  87. return markup;
  88. }
  89. }
  90. function indexOf(value, array) {
  91. var i = 0, l = array.length, v;
  92. if (typeof value === "undefined") {
  93. return -1;
  94. }
  95. if (value.constructor === String) {
  96. for (; i < l; i = i + 1) if (value.localeCompare(array[i]) === 0) return i;
  97. } else {
  98. for (; i < l; i = i + 1) {
  99. v = array[i];
  100. if (v.constructor === String) {
  101. if (v.localeCompare(value) === 0) return i;
  102. } else {
  103. if (v === value) return i;
  104. }
  105. }
  106. }
  107. return -1;
  108. }
  109. /**
  110. * Compares equality of a and b taking into account that a and b may be strings, in which case localeCompare is used
  111. * @param a
  112. * @param b
  113. */
  114. function equal(a, b) {
  115. if (a === b) return true;
  116. if (a === undefined || b === undefined) return false;
  117. if (a === null || b === null) return false;
  118. if (a.constructor === String) return a.localeCompare(b) === 0;
  119. if (b.constructor === String) return b.localeCompare(a) === 0;
  120. return false;
  121. }
  122. /**
  123. * Splits the string into an array of values, trimming each value. An empty array is returned for nulls or empty
  124. * strings
  125. * @param string
  126. * @param separator
  127. */
  128. function splitVal(string, separator) {
  129. var val, i, l;
  130. if (string === null || string.length < 1) return [];
  131. val = string.split(separator);
  132. for (i = 0, l = val.length; i < l; i = i + 1) val[i] = $.trim(val[i]);
  133. return val;
  134. }
  135. function getSideBorderPadding(element) {
  136. return element.outerWidth() - element.width();
  137. }
  138. function installKeyUpChangeEvent(element) {
  139. var key="keyup-change-value";
  140. element.bind("keydown", function () {
  141. if ($.data(element, key) === undefined) {
  142. $.data(element, key, element.val());
  143. }
  144. });
  145. element.bind("keyup", function () {
  146. var val= $.data(element, key);
  147. if (val !== undefined && element.val() !== val) {
  148. $.removeData(element, key);
  149. element.trigger("keyup-change");
  150. }
  151. });
  152. }
  153. $(document).delegate("*", "mousemove", function (e) {
  154. $.data(document, "select2-lastpos", {x: e.pageX, y: e.pageY});
  155. });
  156. /**
  157. * filters mouse events so an event is fired only if the mouse moved.
  158. *
  159. * filters out mouse events that occur when mouse is stationary but
  160. * the elements under the pointer are scrolled.
  161. */
  162. function installFilteredMouseMove(element) {
  163. element.bind("mousemove", function (e) {
  164. var lastpos = $.data(document, "select2-lastpos");
  165. if (lastpos === undefined || lastpos.x !== e.pageX || lastpos.y !== e.pageY) {
  166. $(e.target).trigger("mousemove-filtered", e);
  167. }
  168. });
  169. }
  170. /**
  171. * Debounces a function. Returns a function that calls the original fn function only if no invocations have been made
  172. * within the last quietMillis milliseconds.
  173. *
  174. * @param quietMillis number of milliseconds to wait before invoking fn
  175. * @param fn function to be debounced
  176. * @return debounced version of fn
  177. */
  178. function debounce(quietMillis, fn) {
  179. var timeout;
  180. return function () {
  181. window.clearTimeout(timeout);
  182. timeout = window.setTimeout(fn, quietMillis);
  183. };
  184. }
  185. /**
  186. * A simple implementation of a thunk
  187. * @param formula function used to lazily initialize the thunk
  188. * @return {Function}
  189. */
  190. function thunk(formula) {
  191. var evaluated = false,
  192. value;
  193. return function() {
  194. if (evaluated === false) { value = formula(); evaluated = true; }
  195. return value;
  196. };
  197. };
  198. function installDebouncedScroll(threshold, element) {
  199. var notify = debounce(threshold, function (e) { element.trigger("scroll-debounced", e);});
  200. element.bind("scroll", function (e) {
  201. if (indexOf(e.target, element.get()) >= 0) notify(e);
  202. });
  203. }
  204. function killEvent(event) {
  205. event.preventDefault();
  206. event.stopPropagation();
  207. }
  208. function measureTextWidth(e) {
  209. if (!sizer){
  210. var style = e[0].currentStyle || window.getComputedStyle(e[0], null);
  211. sizer = $("<div></div>").css({
  212. position: "absolute",
  213. left: "-10000px",
  214. top: "-10000px",
  215. display: "none",
  216. fontSize: style.fontSize,
  217. fontFamily: style.fontFamily,
  218. fontStyle: style.fontStyle,
  219. fontWeight: style.fontWeight,
  220. letterSpacing: style.letterSpacing,
  221. textTransform: style.textTransform,
  222. whiteSpace: "nowrap"
  223. });
  224. $("body").append(sizer);
  225. }
  226. sizer.text(e.val());
  227. return sizer.width();
  228. }
  229. function markMatch(text, term, markup) {
  230. var match=text.toUpperCase().indexOf(term.toUpperCase()),
  231. tl=term.length;
  232. if (match<0) {
  233. markup.push(text);
  234. return;
  235. }
  236. markup.push(text.substring(0, match));
  237. markup.push("<span class='select2-match'>");
  238. markup.push(text.substring(match, match + tl));
  239. markup.push("</span>");
  240. markup.push(text.substring(match + tl, text.length));
  241. }
  242. /**
  243. * Produces an ajax-based query function
  244. *
  245. * @param options object containing configuration paramters
  246. * @param options.transport function that will be used to execute the ajax request. must be compatible with parameters supported by $.ajax
  247. * @param options.url url for the data
  248. * @param options.data a function(searchTerm, pageNumber, context) that should return an object containing query string parameters for the above url.
  249. * @param options.dataType request data type: ajax, jsonp, other datatatypes supported by jQuery's $.ajax function or the transport function if specified
  250. * @param options.quietMillis (optional) milliseconds to wait before making the ajaxRequest, helps debounce the ajax function if invoked too often
  251. * @param options.results a function(remoteData, pageNumber) that converts data returned form the remote request to the format expected by Select2.
  252. * The expected format is an object containing the following keys:
  253. * results array of objects that will be used as choices
  254. * more (optional) boolean indicating whether there are more results available
  255. * Example: {results:[{id:1, text:'Red'},{id:2, text:'Blue'}], more:true}
  256. */
  257. function ajax(options) {
  258. var timeout, // current scheduled but not yet executed request
  259. requestSequence = 0, // sequence used to drop out-of-order responses
  260. handler = null,
  261. quietMillis = options.quietMillis || 100;
  262. return function (query) {
  263. window.clearTimeout(timeout);
  264. timeout = window.setTimeout(function () {
  265. requestSequence += 1; // increment the sequence
  266. var requestNumber = requestSequence, // this request's sequence number
  267. data = options.data, // ajax data function
  268. transport = options.transport || $.ajax,
  269. type = options.type || 'GET'; // set type of request (GET or POST)
  270. data = data.call(this, query.term, query.page, query.context);
  271. if( null !== handler) { handler.abort(); }
  272. handler = transport.call(null, {
  273. url: options.url,
  274. dataType: options.dataType,
  275. data: data,
  276. type: type,
  277. success: function (data) {
  278. if (requestNumber < requestSequence) {
  279. return;
  280. }
  281. // TODO 3.0 - replace query.page with query so users have access to term, page, etc.
  282. var results = options.results(data, query.page);
  283. query.callback(results);
  284. }
  285. });
  286. }, quietMillis);
  287. };
  288. }
  289. /**
  290. * Produces a query function that works with a local array
  291. *
  292. * @param options object containing configuration parameters. The options parameter can either be an array or an
  293. * object.
  294. *
  295. * If the array form is used it is assumed that it contains objects with 'id' and 'text' keys.
  296. *
  297. * If the object form is used ti is assumed that it contains 'data' and 'text' keys. The 'data' key should contain
  298. * an array of objects that will be used as choices. These objects must contain at least an 'id' key. The 'text'
  299. * key can either be a String in which case it is expected that each element in the 'data' array has a key with the
  300. * value of 'text' which will be used to match choices. Alternatively, text can be a function(item) that can extract
  301. * the text.
  302. */
  303. function local(options) {
  304. var data = options, // data elements
  305. dataText,
  306. text = function (item) { return ""+item.text; }; // function used to retrieve the text portion of a data item that is matched against the search
  307. if (!$.isArray(data)) {
  308. text = data.text;
  309. // if text is not a function we assume it to be a key name
  310. if (!$.isFunction(text)) {
  311. dataText = data.text; // we need to store this in a separate variable because in the next step data gets reset and data.text is no longer available
  312. text = function (item) { return item[dataText]; };
  313. }
  314. data = data.results;
  315. }
  316. return function (query) {
  317. var t = query.term, filtered = {};
  318. if (t === "") {
  319. query.callback({results: data});
  320. return;
  321. }
  322. filtered.results = $(data)
  323. .filter(function () {return query.matcher(t, text(this));})
  324. .get();
  325. query.callback(filtered);
  326. };
  327. }
  328. // TODO javadoc
  329. function tags(data) {
  330. // TODO even for a function we should probably return a wrapper that does the same object/string check as
  331. // the function for arrays. otherwise only functions that return objects are supported.
  332. if ($.isFunction(data)) {
  333. return data;
  334. }
  335. // if not a function we assume it to be an array
  336. return function (query) {
  337. var t = query.term, filtered = {results: []};
  338. $(data).each(function () {
  339. var isObject = this.text !== undefined,
  340. text = isObject ? this.text : this;
  341. if (t === "" || query.matcher(t, text)) {
  342. filtered.results.push(isObject ? this : {id: this, text: this});
  343. }
  344. });
  345. query.callback(filtered);
  346. };
  347. }
  348. /**
  349. * blurs any Select2 container that has focus when an element outside them was clicked or received focus
  350. *
  351. * also takes care of clicks on label tags that point to the source element
  352. */
  353. $(document).ready(function () {
  354. $(document).delegate("*", "mousedown touchend", function (e) {
  355. var target = $(e.target).closest("div.select2-container").get(0), attr;
  356. if (target) {
  357. $(document).find("div.select2-container-active").each(function () {
  358. if (this !== target) $(this).data("select2").blur();
  359. });
  360. } else {
  361. target = $(e.target).closest("div.select2-drop").get(0);
  362. $(document).find("div.select2-drop-active").each(function () {
  363. if (this !== target) $(this).data("select2").blur();
  364. });
  365. }
  366. target=$(e.target);
  367. attr = target.attr("for");
  368. if ("LABEL" === e.target.tagName && attr && attr.length > 0) {
  369. target = $("#"+attr);
  370. target = target.data("select2");
  371. if (target !== undefined) { target.focus(); e.preventDefault();}
  372. }
  373. });
  374. });
  375. function evaluate(val) {
  376. return $.isFunction(val) ? val() : val;
  377. }
  378. /**
  379. * Creates a new class
  380. *
  381. * @param superClass
  382. * @param methods
  383. */
  384. function clazz(SuperClass, methods) {
  385. var constructor = function () {};
  386. constructor.prototype = new SuperClass;
  387. constructor.prototype.constructor = constructor;
  388. constructor.prototype.parent = SuperClass.prototype;
  389. constructor.prototype = $.extend(constructor.prototype, methods);
  390. return constructor;
  391. }
  392. AbstractSelect2 = clazz(Object, {
  393. // abstract
  394. bind: function (func) {
  395. var self = this;
  396. return function () {
  397. func.apply(self, arguments);
  398. };
  399. },
  400. // abstract
  401. init: function (opts) {
  402. var results, search, resultsSelector = ".select2-results";
  403. // prepare options
  404. this.opts = opts = this.prepareOpts(opts);
  405. this.id=opts.id;
  406. // destroy if called on an existing component
  407. if (opts.element.data("select2") !== undefined &&
  408. opts.element.data("select2") !== null) {
  409. this.destroy();
  410. }
  411. this.enabled=true;
  412. this.container = this.createContainer();
  413. // cache the body so future lookups are cheap
  414. this.body = thunk(function() { return opts.element.closest("body"); });
  415. if (opts.element.attr("class") !== undefined) {
  416. this.container.addClass(opts.element.attr("class"));
  417. }
  418. this.container.css(evaluate(opts.containerCss));
  419. this.container.addClass(evaluate(opts.containerCssClass));
  420. // swap container for the element
  421. this.opts.element
  422. .data("select2", this)
  423. .hide()
  424. .after(this.container);
  425. this.container.data("select2", this);
  426. this.dropdown = this.container.find(".select2-drop");
  427. this.dropdown.css(evaluate(opts.dropdownCss));
  428. this.dropdown.addClass(evaluate(opts.dropdownCssClass));
  429. this.dropdown.data("select2", this);
  430. this.results = results = this.container.find(resultsSelector);
  431. this.search = search = this.container.find("input.select2-input");
  432. search.attr("tabIndex", this.opts.element.attr("tabIndex"));
  433. this.resultsPage = 0;
  434. this.context = null;
  435. // initialize the container
  436. this.initContainer();
  437. this.initContainerWidth();
  438. installFilteredMouseMove(this.results);
  439. this.dropdown.delegate(resultsSelector, "mousemove-filtered", this.bind(this.highlightUnderEvent));
  440. installDebouncedScroll(80, this.results);
  441. this.dropdown.delegate(resultsSelector, "scroll-debounced", this.bind(this.loadMoreIfNeeded));
  442. // if jquery.mousewheel plugin is installed we can prevent out-of-bounds scrolling of results via mousewheel
  443. if ($.fn.mousewheel) {
  444. results.mousewheel(function (e, delta, deltaX, deltaY) {
  445. var top = results.scrollTop(), height;
  446. if (deltaY > 0 && top - deltaY <= 0) {
  447. results.scrollTop(0);
  448. killEvent(e);
  449. } else if (deltaY < 0 && results.get(0).scrollHeight - results.scrollTop() + deltaY <= results.height()) {
  450. results.scrollTop(results.get(0).scrollHeight - results.height());
  451. killEvent(e);
  452. }
  453. });
  454. }
  455. installKeyUpChangeEvent(search);
  456. search.bind("keyup-change", this.bind(this.updateResults));
  457. search.bind("focus", function () { search.addClass("select2-focused"); if (search.val() === " ") search.val(""); });
  458. search.bind("blur", function () { search.removeClass("select2-focused");});
  459. this.dropdown.delegate(resultsSelector, "click", this.bind(function (e) {
  460. if ($(e.target).closest(".select2-result-selectable:not(.select2-disabled)").length > 0) {
  461. this.highlightUnderEvent(e);
  462. this.selectHighlighted(e);
  463. } else {
  464. this.focusSearch();
  465. }
  466. killEvent(e);
  467. }));
  468. // trap all mouse events from leaving the dropdown. sometimes there may be a modal that is listening
  469. // for mouse events outside of itself so it can close itself. since the dropdown is now outside the select2's
  470. // dom it will trigger the popup close, which is not what we want
  471. this.dropdown.bind("click mouseup mousedown", function (e) { e.stopPropagation(); });
  472. if ($.isFunction(this.opts.initSelection)) {
  473. // initialize selection based on the current value of the source element
  474. this.initSelection();
  475. // if the user has provided a function that can set selection based on the value of the source element
  476. // we monitor the change event on the element and trigger it, allowing for two way synchronization
  477. this.monitorSource();
  478. }
  479. if (opts.element.is(":disabled")) this.disable();
  480. },
  481. // abstract
  482. destroy: function () {
  483. var select2 = this.opts.element.data("select2");
  484. if (select2 !== undefined) {
  485. select2.container.remove();
  486. select2.dropdown.remove();
  487. select2.opts.element
  488. .removeData("select2")
  489. .unbind(".select2")
  490. .show();
  491. }
  492. },
  493. // abstract
  494. prepareOpts: function (opts) {
  495. var element, select, idKey;
  496. element = opts.element;
  497. if (element.get(0).tagName.toLowerCase() === "select") {
  498. this.select = select = opts.element;
  499. }
  500. //Custom tags separator.
  501. opts.separator = opts.separator || ",";
  502. if (select) {
  503. // these options are not allowed when attached to a select because they are picked up off the element itself
  504. $.each(["id", "multiple", "ajax", "query", "createSearchChoice", "initSelection", "data", "tags"], function () {
  505. if (this in opts) {
  506. throw new Error("Option '" + this + "' is not allowed for Select2 when attached to a <select> element.");
  507. }
  508. });
  509. }
  510. opts = $.extend({}, {
  511. populateResults: function(container, results, query) {
  512. var populate, data, result, children, id=this.opts.id;
  513. populate=function(results, container, depth) {
  514. var i, l, result, selectable, compound, node, label, innerContainer, formatted;
  515. for (i = 0, l = results.length; i < l; i = i + 1) {
  516. result=results[i];
  517. selectable=id(result) !== undefined;
  518. compound=("children" in result) && result.children.length > 0;
  519. node=$("<li></li>");
  520. node.addClass("select2-results-dept-"+depth);
  521. node.addClass("select2-result");
  522. node.addClass(selectable ? "select2-result-selectable" : "select2-result-unselectable");
  523. if (compound) { node.addClass("select2-result-with-children"); }
  524. label=$("<div></div>");
  525. label.addClass("select2-result-label");
  526. formatted=opts.formatResult(result, label, query);
  527. if (formatted!==undefined) {
  528. label.html(escapeMarkup(formatted));
  529. }
  530. node.append(label);
  531. if (compound) {
  532. innerContainer=$("<ul></ul>");
  533. innerContainer.addClass("select2-result-sub");
  534. populate(result.children, innerContainer, depth+1);
  535. node.append(innerContainer);
  536. }
  537. node.data("select2-data", result);
  538. container.append(node);
  539. }
  540. };
  541. populate(results, container, 0);
  542. }
  543. }, $.fn.select2.defaults, opts);
  544. if (typeof(opts.id) !== "function") {
  545. idKey = opts.id;
  546. opts.id = function (e) { return e[idKey]; };
  547. }
  548. if (select) {
  549. opts.query = this.bind(function (query) {
  550. var data = { results: [], more: false },
  551. term = query.term,
  552. children, firstChild, process;
  553. process=function(element, collection) {
  554. var group;
  555. if (element.is("option")) {
  556. if (query.matcher(term, element.text(), element)) {
  557. collection.push({id:element.attr("value"), text:element.text(), element: element.get()});
  558. }
  559. } else if (element.is("optgroup")) {
  560. group={text:element.attr("label"), children:[], element: element.get()};
  561. element.children().each2(function(i, elm) { process(elm, group.children); });
  562. if (group.children.length>0) {
  563. collection.push(group);
  564. }
  565. }
  566. };
  567. children=element.children();
  568. // ignore the placeholder option if there is one
  569. if (this.getPlaceholder() !== undefined && children.length > 0) {
  570. firstChild = children[0];
  571. if ($(firstChild).text() === "") {
  572. children=children.not(firstChild);
  573. }
  574. }
  575. children.each2(function(i, elm) { process(elm, data.results); });
  576. query.callback(data);
  577. });
  578. // this is needed because inside val() we construct choices from options and there id is hardcoded
  579. opts.id=function(e) { return e.id; };
  580. } else {
  581. if (!("query" in opts)) {
  582. if ("ajax" in opts) {
  583. opts.query = ajax(opts.ajax);
  584. } else if ("data" in opts) {
  585. opts.query = local(opts.data);
  586. } else if ("tags" in opts) {
  587. opts.query = tags(opts.tags);
  588. opts.createSearchChoice = function (term) { return {id: term, text: term}; };
  589. opts.initSelection = function (element, callback) {
  590. var data = [];
  591. $(splitVal(element.val(), opts.separator)).each(function () {
  592. var id = this, text = this, tags=opts.tags;
  593. if ($.isFunction(tags)) tags=tags();
  594. $(tags).each(function() { if (equal(this.id, id)) { text = this.text; return false; } });
  595. data.push({id: id, text: text});
  596. });
  597. callback(data);
  598. };
  599. }
  600. }
  601. }
  602. if (typeof(opts.query) !== "function") {
  603. throw "query function not defined for Select2 " + opts.element.attr("id");
  604. }
  605. return opts;
  606. },
  607. /**
  608. * Monitor the original element for changes and update select2 accordingly
  609. */
  610. // abstract
  611. monitorSource: function () {
  612. this.opts.element.bind("change.select2", this.bind(function (e) {
  613. if (this.opts.element.data("select2-change-triggered") !== true) {
  614. this.initSelection();
  615. }
  616. }));
  617. },
  618. /**
  619. * Triggers the change event on the source element
  620. */
  621. // abstract
  622. triggerChange: function (details) {
  623. details = details || {};
  624. details= $.extend({}, details, { type: "change", val: this.val() });
  625. // prevents recursive triggering
  626. this.opts.element.data("select2-change-triggered", true);
  627. this.opts.element.trigger(details);
  628. this.opts.element.data("select2-change-triggered", false);
  629. // some validation frameworks ignore the change event and listen instead to keyup, click for selects
  630. // so here we trigger the click event manually
  631. this.opts.element.click();
  632. },
  633. // abstract
  634. enable: function() {
  635. if (this.enabled) return;
  636. this.enabled=true;
  637. this.container.removeClass("select2-container-disabled");
  638. },
  639. // abstract
  640. disable: function() {
  641. if (!this.enabled) return;
  642. this.close();
  643. this.enabled=false;
  644. this.container.addClass("select2-container-disabled");
  645. },
  646. // abstract
  647. opened: function () {
  648. return this.container.hasClass("select2-dropdown-open");
  649. },
  650. // abstract
  651. positionDropdown: function() {
  652. var offset = this.container.offset(),
  653. height = this.container.outerHeight(),
  654. width = this.container.outerWidth(),
  655. dropHeight = this.dropdown.outerHeight(),
  656. viewportBottom = $(window).scrollTop() + document.documentElement.clientHeight,
  657. dropTop = offset.top + height,
  658. enoughRoomBelow = dropTop + dropHeight <= viewportBottom,
  659. enoughRoomAbove = (offset.top - dropHeight) >= this.body().scrollTop(),
  660. aboveNow = this.dropdown.hasClass("select2-drop-above"),
  661. above,
  662. css;
  663. // console.log("below/ droptop:", dropTop, "dropHeight", dropHeight, "sum", (dropTop+dropHeight)+" viewport bottom", viewportBottom, "enough?", enoughRoomBelow);
  664. // console.log("above/ offset.top", offset.top, "dropHeight", dropHeight, "top", (offset.top-dropHeight), "scrollTop", this.body().scrollTop(), "enough?", enoughRoomAbove);
  665. // always prefer the current above/below alignment, unless there is not enough room
  666. if (aboveNow) {
  667. above = true;
  668. if (!enoughRoomAbove && enoughRoomBelow) above = false;
  669. } else {
  670. above = false;
  671. if (!enoughRoomBelow && enoughRoomAbove) above = true;
  672. }
  673. if (above) {
  674. dropTop = offset.top - dropHeight;
  675. this.container.addClass("select2-drop-above");
  676. this.dropdown.addClass("select2-drop-above");
  677. }
  678. else {
  679. this.container.removeClass("select2-drop-above");
  680. this.dropdown.removeClass("select2-drop-above");
  681. }
  682. css = {
  683. top:dropTop,
  684. left:offset.left,
  685. width:width
  686. };
  687. this.dropdown.css(css);
  688. },
  689. // abstract
  690. shouldOpen: function() {
  691. var event;
  692. if (this.opened()) return false;
  693. event = jQuery.Event("open");
  694. this.opts.element.trigger(event);
  695. return !event.isDefaultPrevented();
  696. },
  697. // abstract
  698. clearDropdownAlignmentPreference: function() {
  699. // clear the classes used to figure out the preference of where the dropdown should be opened
  700. this.container.removeClass("select2-drop-above");
  701. this.dropdown.removeClass("select2-drop-above");
  702. },
  703. /**
  704. * Opens the dropdown
  705. *
  706. * @return {Boolean} whether or not dropdown was opened. This method will return false if, for example,
  707. * the dropdown is already open, or if the 'open' event listener on the element called preventDefault().
  708. */
  709. // abstract
  710. open: function () {
  711. if (!this.shouldOpen()) return false;
  712. window.setTimeout(this.bind(this.opening), 1);
  713. return true;
  714. },
  715. /**
  716. * Performs the opening of the dropdown
  717. */
  718. // abstract
  719. opening: function() {
  720. this.clearDropdownAlignmentPreference();
  721. if (this.search.val() === " ") { this.search.val(""); }
  722. this.dropdown.addClass("select2-drop-active");
  723. this.container.addClass("select2-dropdown-open").addClass("select2-container-active");
  724. this.updateResults(true);
  725. if(this.dropdown[0] !== this.body().children().last()[0]) {
  726. this.dropdown.detach().appendTo(this.body());
  727. }
  728. this.dropdown.show();
  729. this.ensureHighlightVisible();
  730. this.positionDropdown();
  731. this.focusSearch();
  732. },
  733. // abstract
  734. close: function () {
  735. if (!this.opened()) return;
  736. this.clearDropdownAlignmentPreference();
  737. this.dropdown.hide();
  738. this.container.removeClass("select2-dropdown-open").removeClass("select2-container-active");
  739. this.results.empty();
  740. this.clearSearch();
  741. this.opts.element.trigger(jQuery.Event("close"));
  742. },
  743. // abstract
  744. clearSearch: function () {
  745. },
  746. // abstract
  747. ensureHighlightVisible: function () {
  748. var results = this.results, children, index, child, hb, rb, y, more;
  749. index = this.highlight();
  750. if (index < 0) return;
  751. if (index == 0) {
  752. // if the first element is highlighted scroll all the way to the top,
  753. // that way any unselectable headers above it will also be scrolled
  754. // into view
  755. results.scrollTop(0);
  756. return;
  757. }
  758. children = results.find(".select2-result-selectable");
  759. child = $(children[index]);
  760. hb = child.offset().top + child.outerHeight();
  761. // if this is the last child lets also make sure select2-more-results is visible
  762. if (index === children.length - 1) {
  763. more = results.find("li.select2-more-results");
  764. if (more.length > 0) {
  765. hb = more.offset().top + more.outerHeight();
  766. }
  767. }
  768. rb = results.offset().top + results.outerHeight();
  769. if (hb > rb) {
  770. results.scrollTop(results.scrollTop() + (hb - rb));
  771. }
  772. y = child.offset().top - results.offset().top;
  773. // make sure the top of the element is visible
  774. if (y < 0) {
  775. results.scrollTop(results.scrollTop() + y); // y is negative
  776. }
  777. },
  778. // abstract
  779. moveHighlight: function (delta) {
  780. var choices = this.results.find(".select2-result-selectable"),
  781. index = this.highlight();
  782. while (index > -1 && index < choices.length) {
  783. index += delta;
  784. var choice = $(choices[index]);
  785. if (choice.hasClass("select2-result-selectable") && !choice.hasClass("select2-disabled")) {
  786. this.highlight(index);
  787. break;
  788. }
  789. }
  790. },
  791. // abstract
  792. highlight: function (index) {
  793. var choices = this.results.find(".select2-result-selectable").not(".select2-disabled");
  794. if (arguments.length === 0) {
  795. return indexOf(choices.filter(".select2-highlighted")[0], choices.get());
  796. }
  797. if (index >= choices.length) index = choices.length - 1;
  798. if (index < 0) index = 0;
  799. choices.removeClass("select2-highlighted");
  800. $(choices[index]).addClass("select2-highlighted");
  801. this.ensureHighlightVisible();
  802. },
  803. // abstract
  804. countSelectableResults: function() {
  805. return this.results.find(".select2-result-selectable").not(".select2-disabled").length;
  806. },
  807. // abstract
  808. highlightUnderEvent: function (event) {
  809. var el = $(event.target).closest(".select2-result-selectable");
  810. if (el.length > 0 && !el.is(".select2-highlighted")) {
  811. var choices = this.results.find('.select2-result-selectable');
  812. this.highlight(choices.index(el));
  813. } else if (el.length == 0) {
  814. // if we are over an unselectable item remove al highlights
  815. this.results.find(".select2-highlighted").removeClass("select2-highlighted");
  816. }
  817. },
  818. // abstract
  819. loadMoreIfNeeded: function () {
  820. var results = this.results,
  821. more = results.find("li.select2-more-results"),
  822. below, // pixels the element is below the scroll fold, below==0 is when the element is starting to be visible
  823. offset = -1, // index of first element without data
  824. page = this.resultsPage + 1,
  825. self=this,
  826. term=this.search.val(),
  827. context=this.context;
  828. if (more.length === 0) return;
  829. below = more.offset().top - results.offset().top - results.height();
  830. if (below <= 0) {
  831. more.addClass("select2-active");
  832. this.opts.query({
  833. term: term,
  834. page: page,
  835. context: context,
  836. matcher: this.opts.matcher,
  837. callback: this.bind(function (data) {
  838. self.opts.populateResults.call(this, results, data.results, {term: term, page: page, context:context});
  839. if (data.more===true) {
  840. more.detach().appendTo(results.children(":last")).text(self.opts.formatLoadMore(page+1));
  841. window.setTimeout(function() { self.loadMoreIfNeeded(); }, 10);
  842. } else {
  843. more.remove();
  844. }
  845. self.positionDropdown();
  846. self.resultsPage = page;
  847. })});
  848. }
  849. },
  850. /**
  851. * @param initial whether or not this is the call to this method right after the dropdown has been opened
  852. */
  853. // abstract
  854. updateResults: function (initial) {
  855. var search = this.search, results = this.results, opts = this.opts, self=this;
  856. // if the search is currently hidden we do not alter the results
  857. if (initial !== true && (this.showSearchInput === false || !this.opened())) {
  858. return;
  859. }
  860. search.addClass("select2-active");
  861. function postRender() {
  862. results.scrollTop(0);
  863. search.removeClass("select2-active");
  864. self.positionDropdown();
  865. }
  866. function render(html) {
  867. results.html(escapeMarkup(html));
  868. postRender();
  869. }
  870. if (search.val().length < opts.minimumInputLength) {
  871. render("<li class='select2-no-results'>" + opts.formatInputTooShort(search.val(), opts.minimumInputLength) + "</li>");
  872. return;
  873. }
  874. this.resultsPage = 1;
  875. opts.query({
  876. term: search.val(),
  877. page: this.resultsPage,
  878. context: null,
  879. matcher: opts.matcher,
  880. callback: this.bind(function (data) {
  881. var def; // default choice
  882. // save context, if any
  883. this.context = (data.context===undefined) ? null : data.context;
  884. // create a default choice and prepend it to the list
  885. if (this.opts.createSearchChoice && search.val() !== "") {
  886. def = this.opts.createSearchChoice.call(null, search.val(), data.results);
  887. if (def !== undefined && def !== null && self.id(def) !== undefined && self.id(def) !== null) {
  888. if ($(data.results).filter(
  889. function () {
  890. return equal(self.id(this), self.id(def));
  891. }).length === 0) {
  892. data.results.unshift(def);
  893. }
  894. }
  895. }
  896. if (data.results.length === 0) {
  897. render("<li class='select2-no-results'>" + opts.formatNoMatches(search.val()) + "</li>");
  898. return;
  899. }
  900. results.empty();
  901. self.opts.populateResults.call(this, results, data.results, {term: search.val(), page: this.resultsPage, context:null});
  902. if (data.more === true) {
  903. results.children().filter(":last").append("<li class='select2-more-results'>" + escapeMarkup(opts.formatLoadMore(this.resultsPage)) + "</li>");
  904. window.setTimeout(function() { self.loadMoreIfNeeded(); }, 10);
  905. }
  906. this.postprocessResults(data, initial);
  907. postRender();
  908. })});
  909. },
  910. // abstract
  911. cancel: function () {
  912. this.close();
  913. },
  914. // abstract
  915. blur: function () {
  916. this.close();
  917. this.container.removeClass("select2-container-active");
  918. this.dropdown.removeClass("select2-drop-active");
  919. // synonymous to .is(':focus'), which is available in jquery >= 1.6
  920. if (this.search[0] === document.activeElement) { this.search.blur(); }
  921. this.clearSearch();
  922. this.selection.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus");
  923. },
  924. // abstract
  925. focusSearch: function () {
  926. /* we do this in a timeout so that current event processing can complete before this code is executed.
  927. this makes sure the search field is focussed even if the current event would blur it */
  928. window.setTimeout(this.bind(function () {
  929. this.search.focus();
  930. // reset the value so IE places the cursor at the end of the input box
  931. this.search.val(this.search.val());
  932. }), 10);
  933. },
  934. // abstract
  935. selectHighlighted: function () {
  936. var index=this.highlight(),
  937. highlighted=this.results.find(".select2-highlighted").not(".select2-disabled"),
  938. data = highlighted.closest('.select2-result-selectable').data("select2-data");
  939. if (data) {
  940. highlighted.addClass("select2-disabled");
  941. this.highlight(index);
  942. this.onSelect(data);
  943. }
  944. },
  945. // abstract
  946. getPlaceholder: function () {
  947. return this.opts.element.attr("placeholder") ||
  948. this.opts.element.attr("data-placeholder") || // jquery 1.4 compat
  949. this.opts.element.data("placeholder") ||
  950. this.opts.placeholder;
  951. },
  952. /**
  953. * Get the desired width for the container element. This is
  954. * derived first from option `width` passed to select2, then
  955. * the inline 'style' on the original element, and finally
  956. * falls back to the jQuery calculated element width.
  957. */
  958. // abstract
  959. initContainerWidth: function () {
  960. function resolveContainerWidth() {
  961. var style, attrs, matches, i, l;
  962. if (this.opts.width === "off") {
  963. return null;
  964. } else if (this.opts.width === "element"){
  965. return this.opts.element.outerWidth() === 0 ? 'auto' : this.opts.element.outerWidth() + 'px';
  966. } else if (this.opts.width === "copy" || this.opts.width === "resolve") {
  967. // check if there is inline style on the element that contains width
  968. style = this.opts.element.attr('style');
  969. if (style !== undefined) {
  970. attrs = style.split(';');
  971. for (i = 0, l = attrs.length; i < l; i = i + 1) {
  972. matches = attrs[i].replace(/\s/g, '')
  973. .match(/width:(([-+]?([0-9]*\.)?[0-9]+)(px|em|ex|%|in|cm|mm|pt|pc))/);
  974. if (matches !== null && matches.length >= 1)
  975. return matches[1];
  976. }
  977. }
  978. if (this.opts.width === "resolve") {
  979. // next check if css('width') can resolve a width that is percent based, this is sometimes possible
  980. // when attached to input type=hidden or elements hidden via css
  981. style = this.opts.element.css('width');
  982. if (style.indexOf("%") > 0) return style;
  983. // finally, fallback on the calculated width of the element
  984. return (this.opts.element.outerWidth() === 0 ? 'auto' : this.opts.element.outerWidth() + 'px');
  985. }
  986. return null;
  987. } else if ($.isFunction(this.opts.width)) {
  988. return this.opts.width();
  989. } else {
  990. return this.opts.width;
  991. }
  992. };
  993. var width = resolveContainerWidth.call(this);
  994. if (width !== null) {
  995. this.container.attr("style", "width: "+width);
  996. }
  997. }
  998. });
  999. SingleSelect2 = clazz(AbstractSelect2, {
  1000. // single
  1001. createContainer: function () {
  1002. var container = $("<div></div>", {
  1003. "class": "select2-container"
  1004. }).html([
  1005. " <a href='javascript:void(0)' class='select2-choice'>",
  1006. " <span></span><abbr class='select2-search-choice-close' style='display:none;'></abbr>",
  1007. " <div><b></b></div>" ,
  1008. "</a>",
  1009. " <div class='select2-drop select2-offscreen'>" ,
  1010. " <div class='select2-search'>" ,
  1011. " <input type='text' autocomplete='off' class='select2-input'/>" ,
  1012. " </div>" ,
  1013. " <ul class='select2-results'>" ,
  1014. " </ul>" ,
  1015. "</div>"].join(""));
  1016. return container;
  1017. },
  1018. // single
  1019. opening: function () {
  1020. this.search.show();
  1021. this.parent.opening.apply(this, arguments);
  1022. this.dropdown.removeClass("select2-offscreen");
  1023. },
  1024. // single
  1025. close: function () {
  1026. if (!this.opened()) return;
  1027. this.parent.close.apply(this, arguments);
  1028. this.dropdown.removeAttr("style").addClass("select2-offscreen").insertAfter(this.selection).show();
  1029. },
  1030. // single
  1031. focus: function () {
  1032. this.close();
  1033. this.selection.focus();
  1034. },
  1035. // single
  1036. isFocused: function () {
  1037. return this.selection[0] === document.activeElement;
  1038. },
  1039. // single
  1040. cancel: function () {
  1041. this.parent.cancel.apply(this, arguments);
  1042. this.selection.focus();
  1043. },
  1044. // single
  1045. initContainer: function () {
  1046. var selection,
  1047. container = this.container,
  1048. dropdown = this.dropdown,
  1049. clickingInside = false;
  1050. this.selection = selection = container.find(".select2-choice");
  1051. this.search.bind("keydown", this.bind(function (e) {
  1052. if (!this.enabled) return;
  1053. if (e.which === KEY.PAGE_UP || e.which === KEY.PAGE_DOWN) {
  1054. // prevent the page from scrolling
  1055. killEvent(e);
  1056. return;
  1057. }
  1058. if (this.opened()) {
  1059. switch (e.which) {
  1060. case KEY.UP:
  1061. case KEY.DOWN:
  1062. this.moveHighlight((e.which === KEY.UP) ? -1 : 1);
  1063. killEvent(e);
  1064. return;
  1065. case KEY.TAB:
  1066. case KEY.ENTER:
  1067. this.selectHighlighted();
  1068. killEvent(e);
  1069. return;
  1070. case KEY.ESC:
  1071. this.cancel(e);
  1072. killEvent(e);
  1073. return;
  1074. }
  1075. } else {
  1076. if (e.which === KEY.TAB || KEY.isControl(e) || KEY.isFunctionKey(e) || e.which === KEY.ESC) {
  1077. return;
  1078. }
  1079. this.open();
  1080. if (e.which === KEY.ENTER) {
  1081. // do not propagate the event otherwise we open, and propagate enter which closes
  1082. return;
  1083. }
  1084. }
  1085. }));
  1086. this.search.bind("focus", this.bind(function() {
  1087. this.selection.attr("tabIndex", "-1");
  1088. }));
  1089. this.search.bind("blur", this.bind(function() {
  1090. if (!this.opened()) this.container.removeClass("select2-container-active");
  1091. window.setTimeout(this.bind(function() { this.selection.attr("tabIndex", this.opts.element.attr("tabIndex")); }), 10);
  1092. }));
  1093. selection.bind("click", this.bind(function (e) {
  1094. clickingInside = true;
  1095. if (this.opened()) {
  1096. this.close();
  1097. this.selection.focus();
  1098. } else if (this.enabled) {
  1099. this.open();
  1100. }
  1101. killEvent(e);
  1102. clickingInside = false;
  1103. }));
  1104. dropdown.bind("click", this.bind(function() { this.search.focus(); }));
  1105. selection.bind("focus", this.bind(function() {
  1106. this.container.addClass("select2-container-active");
  1107. // hide the search so the tab key does not focus on it
  1108. this.search.attr("tabIndex", "-1");
  1109. }));
  1110. selection.bind("blur", this.bind(function() {
  1111. this.container.removeClass("select2-container-active");
  1112. window.setTimeout(this.bind(function() { this.search.attr("tabIndex", this.opts.element.attr("tabIndex")); }), 10);
  1113. }));
  1114. selection.bind("keydown", this.bind(function(e) {
  1115. if (!this.enabled) return;
  1116. if (e.which === KEY.PAGE_UP || e.which === KEY.PAGE_DOWN) {
  1117. // prevent the page from scrolling
  1118. killEvent(e);
  1119. return;
  1120. }
  1121. if (e.which === KEY.TAB || KEY.isControl(e) || KEY.isFunctionKey(e) || e.which === KEY.ESC) {
  1122. return;
  1123. }
  1124. this.open();
  1125. if (e.which === KEY.ENTER) {
  1126. // do not propagate the event otherwise we open, and propagate enter which closes
  1127. killEvent(e);
  1128. return;
  1129. }
  1130. // do not set the search input value for non-alpha-numeric keys
  1131. // otherwise pressing down results in a '(' being set in the search field
  1132. if (e.which < 48 ) { // '0' == 48
  1133. killEvent(e);
  1134. return;
  1135. }
  1136. var keyWritten = String.fromCharCode(e.which).toLowerCase();
  1137. if (e.shiftKey) {
  1138. keyWritten = keyWritten.toUpperCase();
  1139. }
  1140. this.search.val(keyWritten);
  1141. // prevent event propagation so it doesnt replay on the now focussed search field and result in double key entry
  1142. killEvent(e);
  1143. }));
  1144. selection.delegate("abbr", "click", this.bind(function (e) {
  1145. if (!this.enabled) return;
  1146. this.clear();
  1147. killEvent(e);
  1148. this.close();
  1149. this.triggerChange();
  1150. this.selection.focus();
  1151. }));
  1152. this.setPlaceholder();
  1153. this.search.bind("focus", this.bind(function() {
  1154. this.container.addClass("select2-container-active");
  1155. }));
  1156. },
  1157. // single
  1158. clear: function() {
  1159. this.opts.element.val("");
  1160. this.selection.find("span").empty();
  1161. this.selection.removeData("select2-data");
  1162. this.setPlaceholder();
  1163. },
  1164. /**
  1165. * Sets selection based on source element's value
  1166. */
  1167. // single
  1168. initSelection: function () {
  1169. var selected;
  1170. if (this.opts.element.val() === "") {
  1171. this.close();
  1172. this.setPlaceholder();
  1173. } else {
  1174. var self = this;
  1175. this.opts.initSelection.call(null, this.opts.element, function(selected){
  1176. if (selected !== undefined && selected !== null) {
  1177. self.updateSelection(selected);
  1178. self.close();
  1179. self.setPlaceholder();
  1180. }
  1181. });
  1182. }
  1183. },
  1184. // single
  1185. prepareOpts: function () {
  1186. var opts = this.parent.prepareOpts.apply(this, arguments);
  1187. if (opts.element.get(0).tagName.toLowerCase() === "select") {
  1188. // install the selection initializer
  1189. opts.initSelection = function (element, callback) {
  1190. var selected = element.find(":selected");
  1191. // a single select box always has a value, no need to null check 'selected'
  1192. if ($.isFunction(callback))
  1193. callback({id: selected.attr("value"), text: selected.text()});
  1194. };
  1195. }
  1196. return opts;
  1197. },
  1198. // single
  1199. setPlaceholder: function () {
  1200. var placeholder = this.getPlaceholder();
  1201. if (this.opts.element.val() === "" && placeholder !== undefined) {
  1202. // check for a first blank option if attached to a select
  1203. if (this.select && this.select.find("option:first").text() !== "") return;
  1204. this.selection.find("span").html(escapeMarkup(placeholder));
  1205. this.selection.addClass("select2-default");
  1206. this.selection.find("abbr").hide();
  1207. }
  1208. },
  1209. // single
  1210. postprocessResults: function (data, initial) {
  1211. var selected = 0, self = this, showSearchInput = true;
  1212. // find the selected element in the result list
  1213. this.results.find(".select2-result-selectable").each2(function (i, elm) {
  1214. if (equal(self.id(elm.data("select2-data")), self.opts.element.val())) {
  1215. selected = i;
  1216. return false;
  1217. }
  1218. });
  1219. // and highlight it
  1220. this.highlight(selected);
  1221. // hide the search box if this is the first we got the results and there are a few of them
  1222. if (initial === true) {
  1223. // TODO below we use data.results.length, but what we really need is something recursive to calc the length
  1224. // TODO in case there are optgroups
  1225. showSearchInput = this.showSearchInput = data.results.length >= this.opts.minimumResultsForSearch;
  1226. this.dropdown.find(".select2-search")[showSearchInput ? "removeClass" : "addClass"]("select2-search-hidden");
  1227. //add "select2-with-searchbox" to the container if search box is shown
  1228. $(this.dropdown, this.container)[showSearchInput ? "addClass" : "removeClass"]("select2-with-searchbox");
  1229. }
  1230. },
  1231. // single
  1232. onSelect: function (data) {
  1233. var old = this.opts.element.val();
  1234. this.opts.element.val(this.id(data));
  1235. this.updateSelection(data);
  1236. this.close();
  1237. this.selection.focus();
  1238. if (!equal(old, this.id(data))) { this.triggerChange(); }
  1239. },
  1240. // single
  1241. updateSelection: function (data) {
  1242. var container=this.selection.find("span"), formatted;
  1243. this.selection.data("select2-data", data);
  1244. container.empty();
  1245. formatted=this.opts.formatSelection(data, container);
  1246. if (formatted !== undefined) {
  1247. container.append(escapeMarkup(formatted));
  1248. }
  1249. this.selection.removeClass("select2-default");
  1250. if (this.opts.allowClear && this.getPlaceholder() !== undefined) {
  1251. this.selection.find("abbr").show();
  1252. }
  1253. },
  1254. // single
  1255. val: function () {
  1256. var val, data = null, self = this;
  1257. if (arguments.length === 0) {
  1258. return this.opts.element.val();
  1259. }
  1260. val = arguments[0];
  1261. if (this.select) {
  1262. this.select
  1263. .val(val)
  1264. .find(":selected").each2(function (i, elm) {
  1265. data = {id: elm.attr("value"), text: elm.text()};
  1266. return false;
  1267. });
  1268. this.updateSelection(data);
  1269. this.setPlaceholder();
  1270. } else {
  1271. if (this.opts.initSelection === undefined) {
  1272. throw new Error("cannot call val() if initSelection() is not defined");
  1273. }
  1274. // val is an id. !val is true for [undefined,null,'']
  1275. if (!val) {
  1276. this.clear();
  1277. return;
  1278. }
  1279. this.opts.initSelection(this.opts.element, function(data){
  1280. self.opts.element.val(!data ? "" : self.id(data));
  1281. self.updateSelection(data);
  1282. self.setPlaceholder();
  1283. });
  1284. }
  1285. },
  1286. // single
  1287. clearSearch: function () {
  1288. this.search.val("");
  1289. },
  1290. // single
  1291. data: function(value) {
  1292. var data;
  1293. if (arguments.length === 0) {
  1294. data = this.selection.data("select2-data");
  1295. if (data == undefined) data = null;
  1296. return data;
  1297. } else {
  1298. if (!value || value === "") {
  1299. this.clear();
  1300. } else {
  1301. this.opts.element.val(!value ? "" : this.id(value));
  1302. this.updateSelection(value);
  1303. }
  1304. }
  1305. }
  1306. });
  1307. MultiSelect2 = clazz(AbstractSelect2, {
  1308. // multi
  1309. createContainer: function () {
  1310. var container = $("<div></div>", {
  1311. "class": "select2-container select2-container-multi"
  1312. }).html([
  1313. " <ul class='select2-choices'>",
  1314. //"<li class='select2-search-choice'><span>California</span><a href="javascript:void(0)" class="select2-search-choice-close"></a></li>" ,
  1315. " <li class='select2-search-field'>" ,
  1316. " <input type='text' autocomplete='off' style='width: 25px;' class='select2-input'>" ,
  1317. " </li>" ,
  1318. "</ul>" ,
  1319. "<div class='select2-drop select2-drop-multi' style='display:none;'>" ,
  1320. " <ul class='select2-results'>" ,
  1321. " </ul>" ,
  1322. "</div>"].join(""));
  1323. return container;
  1324. },
  1325. // multi
  1326. prepareOpts: function () {
  1327. var opts = this.parent.prepareOpts.apply(this, arguments);
  1328. // TODO validate placeholder is a string if specified
  1329. if (opts.element.get(0).tagName.toLowerCase() === "select") {
  1330. // install sthe selection initializer
  1331. opts.initSelection = function (element,callback) {
  1332. var data = [];
  1333. element.find(":selected").each2(function (i, elm) {
  1334. data.push({id: elm.attr("value"), text: elm.text()});
  1335. });
  1336. if ($.isFunction(callback))
  1337. callback(data);
  1338. };
  1339. }
  1340. return opts;
  1341. },
  1342. // multi
  1343. initContainer: function () {
  1344. var selector = ".select2-choices", selection;
  1345. this.searchContainer = this.container.find(".select2-search-field");
  1346. this.selection = selection = this.container.find(selector);
  1347. this.search.bind("keydown", this.bind(function (e) {
  1348. if (!this.enabled) return;
  1349. if (e.which === KEY.BACKSPACE && this.search.val() === "") {
  1350. this.close();
  1351. var choices,
  1352. selected = selection.find(".select2-search-choice-focus");
  1353. if (selected.length > 0) {
  1354. this.unselect(selected.first());
  1355. this.search.width(10);
  1356. killEvent(e);
  1357. return;
  1358. }
  1359. choices = selection.find(".select2-search-choice");
  1360. if (choices.length > 0) {
  1361. choices.last().addClass("select2-search-choice-focus");
  1362. }
  1363. } else {
  1364. selection.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus");
  1365. }
  1366. if (this.opened()) {
  1367. switch (e.which) {
  1368. case KEY.UP:
  1369. case KEY.DOWN:
  1370. this.moveHighlight((e.which === KEY.UP) ? -1 : 1);
  1371. killEvent(e);
  1372. return;
  1373. case KEY.ENTER:
  1374. case KEY.TAB:
  1375. this.selectHighlighted();
  1376. killEvent(e);
  1377. return;
  1378. case KEY.ESC:
  1379. this.cancel(e);
  1380. killEvent(e);
  1381. return;
  1382. }
  1383. }
  1384. if (e.which === KEY.TAB || KEY.isControl(e) || KEY.isFunctionKey(e) || e.which === KEY.BACKSPACE || e.which === KEY.ESC) {
  1385. return;
  1386. }
  1387. this.open();
  1388. if (e.which === KEY.PAGE_UP || e.which === KEY.PAGE_DOWN) {
  1389. // prevent the page from scrolling
  1390. killEvent(e);
  1391. }
  1392. }));
  1393. this.search.bind("keyup", this.bind(this.resizeSearch));
  1394. this.search.bind("blur", this.bind(function() {
  1395. this.container.removeClass("select2-container-active");
  1396. }));
  1397. this.container.delegate(selector, "click", this.bind(function (e) {
  1398. if (!this.enabled) return;
  1399. this.clearPlaceholder();
  1400. this.open();
  1401. this.focusSearch();
  1402. e.preventDefault();
  1403. }));
  1404. this.container.delegate(selector, "focus", this.bind(function () {
  1405. if (!this.enabled) return;
  1406. this.container.addClass("select2-container-active");
  1407. this.dropdown.addClass("select2-drop-active");
  1408. this.clearPlaceholder();
  1409. }));
  1410. // set the placeholder if necessary
  1411. this.clearSearch();
  1412. },
  1413. // multi
  1414. enable: function() {
  1415. if (this.enabled) return;
  1416. this.parent.enable.apply(this, arguments);
  1417. this.search.removeAttr("disabled");
  1418. },
  1419. // multi
  1420. disable: function() {
  1421. if (!this.enabled) return;
  1422. this.parent.disable.apply(this, arguments);
  1423. this.search.attr("disabled", true);
  1424. },
  1425. // multi
  1426. initSelection: function () {
  1427. var data;
  1428. if (this.opts.element.val() === "") {
  1429. this.updateSelection([]);
  1430. this.close();
  1431. // set the placeholder if necessary
  1432. this.clearSearch();
  1433. }
  1434. if (this.select || this.opts.element.val() !== "") {
  1435. var self = this;
  1436. this.opts.initSelection.call(null, this.opts.element, function(data){
  1437. if (data !== undefined && data !== null) {
  1438. self.updateSelection(data);
  1439. self.close();
  1440. // set the placeholder if necessary
  1441. self.clearSearch();
  1442. }
  1443. });
  1444. }
  1445. },
  1446. // multi
  1447. clearSearch: function () {
  1448. var placeholder = this.getPlaceholder();
  1449. if (placeholder !== undefined && this.getVal().length === 0 && this.search.hasClass("select2-focused") === false) {
  1450. this.search.val(placeholder).addClass("select2-default");
  1451. // stretch the search box to full width of the container so as much of the placeholder is visible as possible
  1452. this.resizeSearch();
  1453. } else {
  1454. // we set this to " " instead of "" and later clear it on focus() because there is a firefox bug
  1455. // that does not properly render the caret when the field starts out blank
  1456. this.search.val(" ").width(10);
  1457. }
  1458. },
  1459. // multi
  1460. clearPlaceholder: function () {
  1461. if (this.search.hasClass("select2-default")) {
  1462. this.search.val("").removeClass("select2-default");
  1463. } else {
  1464. // work around for the space character we set to avoid firefox caret bug
  1465. if (this.search.val() === " ") this.search.val("");
  1466. }
  1467. },
  1468. // multi
  1469. opening: function () {
  1470. this.parent.opening.apply(this, arguments);
  1471. this.clearPlaceholder();
  1472. this.resizeSearch();
  1473. this.focusSearch();
  1474. },
  1475. // multi
  1476. close: function () {
  1477. if (!this.opened()) return;
  1478. this.parent.close.apply(this, arguments);
  1479. },
  1480. // multi
  1481. focus: function () {
  1482. this.close();
  1483. this.search.focus();
  1484. },
  1485. // multi
  1486. isFocused: function () {
  1487. return this.search.hasClass("select2-focused");
  1488. },
  1489. // multi
  1490. updateSelection: function (data) {
  1491. var ids = [], filtered = [], self = this;
  1492. // filter out duplicates
  1493. $(data).each(function () {
  1494. if (indexOf(self.id(this), ids) < 0) {
  1495. ids.push(self.id(this));
  1496. filtered.push(this);
  1497. }
  1498. });
  1499. data = filtered;
  1500. this.selection.find(".select2-search-choice").remove();
  1501. $(data).each(function () {
  1502. self.addSelectedChoice(this);
  1503. });
  1504. self.postprocessResults();
  1505. },
  1506. // multi
  1507. onSelect: function (data) {
  1508. this.addSelectedChoice(data);
  1509. if (this.select) { this.postprocessResults(); }
  1510. if (this.opts.closeOnSelect) {
  1511. this.close();
  1512. this.search.width(10);
  1513. } else {
  1514. this.search.width(10);
  1515. this.resizeSearch();
  1516. if (this.countSelectableResults()>0) {
  1517. this.positionDropdown();
  1518. } else {
  1519. // if nothing left to select close
  1520. this.close();
  1521. }
  1522. }
  1523. // since its not possible to select an element that has already been
  1524. // added we do not need to check if this is a new element before firing change
  1525. this.triggerChange({ added: data });
  1526. this.focusSearch();
  1527. },
  1528. // multi
  1529. cancel: function () {
  1530. this.close();
  1531. this.focusSearch();
  1532. },
  1533. // multi
  1534. addSelectedChoice: function (data) {
  1535. var choice=$(
  1536. "<li class='select2-search-choice'>" +
  1537. " <div></div>" +
  1538. " <a href='javascript:void(0)' class='select2-search-choice-close' tabindex='-1'></a>" +
  1539. "</li>"),
  1540. id = this.id(data),
  1541. val = this.getVal(),
  1542. formatted;
  1543. formatted=this.opts.formatSelection(data, choice);
  1544. choice.find("div").replaceWith("<div>"+escapeMarkup(formatted)+"</div>");
  1545. choice.find(".select2-search-choice-close")
  1546. .bind("click dblclick", this.bind(function (e) {
  1547. if (!this.enabled) return;
  1548. $(e.target).closest(".select2-search-choice").fadeOut('fast').animate({width: "hide"}, 50, this.bind(function(){
  1549. this.unselect($(e.target));
  1550. this.selection.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus");
  1551. this.close();
  1552. this.focusSearch();
  1553. })).dequeue();
  1554. killEvent(e);
  1555. })).bind("focus", this.bind(function () {
  1556. if (!this.enabled) return;
  1557. this.container.addClass("select2-container-active");
  1558. this.dropdown.addClass("select2-drop-active");
  1559. }));
  1560. choice.data("select2-data", data);
  1561. choice.insertBefore(this.searchContainer);
  1562. val.push(id);
  1563. this.setVal(val);
  1564. },
  1565. // multi
  1566. unselect: function (selected) {
  1567. var val = this.getVal(),
  1568. data,
  1569. index;
  1570. selected = selected.closest(".select2-search-choice");
  1571. if (selected.length === 0) {
  1572. throw "Invalid argument: " + selected + ". Must be .select2-search-choice";
  1573. }
  1574. data = selected.data("select2-data");
  1575. index = indexOf(this.id(data), val);
  1576. if (index >= 0) {
  1577. val.splice(index, 1);
  1578. this.setVal(val);
  1579. if (this.select) this.postprocessResults();
  1580. }
  1581. selected.remove();
  1582. this.triggerChange({ removed: data });
  1583. },
  1584. // multi
  1585. postprocessResults: function () {
  1586. var val = this.getVal(),
  1587. choices = this.results.find(".select2-result-selectable"),
  1588. compound = this.results.find(".select2-result-with-children"),
  1589. self = this;
  1590. choices.each2(function (i, choice) {
  1591. var id = self.id(choice.data("select2-data"));
  1592. if (indexOf(id, val) >= 0) {
  1593. choice.addClass("select2-disabled").removeClass("select2-result-selectable");
  1594. } else {
  1595. choice.removeClass("select2-disabled").addClass("select2-result-selectable");
  1596. }
  1597. });
  1598. compound.each2(function(i, e) {
  1599. if (e.find(".select2-result-selectable").length==0) {
  1600. e.addClass("select2-disabled");
  1601. } else {
  1602. e.removeClass("select2-disabled");
  1603. }
  1604. });
  1605. choices.each2(function (i, choice) {
  1606. if (!choice.hasClass("select2-disabled") && choice.hasClass("select2-result-selectable")) {
  1607. self.highlight(0);
  1608. return false;
  1609. }
  1610. });
  1611. },
  1612. // multi
  1613. resizeSearch: function () {
  1614. var minimumWidth, left, maxWidth, containerLeft, searchWidth,
  1615. sideBorderPadding = getSideBorderPadding(this.search);
  1616. minimumWidth = measureTextWidth(this.search) + 10;
  1617. left = this.search.offset().left;
  1618. maxWidth = this.selection.width();
  1619. containerLeft = this.selection.offset().left;
  1620. searchWidth = maxWidth - (left - containerLeft) - sideBorderPadding;
  1621. if (searchWidth < minimumWidth) {
  1622. searchWidth = maxWidth - sideBorderPadding;
  1623. }
  1624. if (searchWidth < 40) {
  1625. searchWidth = maxWidth - sideBorderPadding;
  1626. }
  1627. this.search.width(searchWidth);
  1628. },
  1629. // multi
  1630. getVal: function () {
  1631. var val;
  1632. if (this.select) {
  1633. val = this.select.val();
  1634. return val === null ? [] : val;
  1635. } else {
  1636. val = this.opts.element.val();
  1637. return splitVal(val, this.opts.separator);
  1638. }
  1639. },
  1640. // multi
  1641. setVal: function (val) {
  1642. var unique;
  1643. if (this.select) {
  1644. this.select.val(val);
  1645. } else {
  1646. unique = [];
  1647. // filter out duplicates
  1648. $(val).each(function () {
  1649. if (indexOf(this, unique) < 0) unique.push(this);
  1650. });
  1651. this.opts.element.val(unique.length === 0 ? "" : unique.join(","));
  1652. }
  1653. },
  1654. // multi
  1655. val: function () {
  1656. var val, data = [], self=this;
  1657. if (arguments.length === 0) {
  1658. return this.getVal();
  1659. }
  1660. val = arguments[0];
  1661. if (!val) {
  1662. this.opts.element.val("");
  1663. this.updateSelection([]);
  1664. this.clearSearch();
  1665. return;
  1666. }
  1667. // val is a list of ids
  1668. this.setVal(val);
  1669. if (this.select) {
  1670. this.select.find(":selected").each(function () {
  1671. data.push({id: $(this).attr("value"), text: $(this).text()});
  1672. });
  1673. this.updateSelection(data);
  1674. } else {
  1675. if (this.opts.initSelection === undefined) {
  1676. throw new Error("val() cannot be called if initSelection() is not defined")
  1677. }
  1678. this.opts.initSelection(this.opts.element, function(data){
  1679. var ids=$(data).map(self.id);
  1680. self.setVal(ids);
  1681. self.updateSelection(data);
  1682. self.clearSearch();
  1683. });
  1684. }
  1685. this.clearSearch();
  1686. },
  1687. // multi
  1688. onSortStart: function() {
  1689. if (this.select) {
  1690. throw new Error("Sorting of elements is not supported when attached to <select>. Attach to <input type='hidden'/> instead.");
  1691. }
  1692. // collapse search field into 0 width so its container can be collapsed as well
  1693. this.search.width(0);
  1694. // hide the container
  1695. this.searchContainer.hide();
  1696. },
  1697. // multi
  1698. onSortEnd:function() {
  1699. var val=[], self=this;
  1700. // show search and move it to the end of the list
  1701. this.searchContainer.show();
  1702. // make sure the search container is the last item in the list
  1703. this.searchContainer.appendTo(this.searchContainer.parent());
  1704. // since we collapsed the width in dragStarted, we resize it here
  1705. this.resizeSearch();
  1706. // update selection
  1707. this.selection.find(".select2-search-choice").each(function() {
  1708. val.push(self.opts.id($(this).data("select2-data")));
  1709. });
  1710. this.setVal(val);
  1711. this.triggerChange();
  1712. },
  1713. // multi
  1714. data: function(values) {
  1715. var self=this, ids;
  1716. if (arguments.length === 0) {
  1717. return this.selection
  1718. .find(".select2-search-choice")
  1719. .map(function() { return $(this).data("select2-data"); })
  1720. .get();
  1721. } else {
  1722. ids = $.map(values, function(e) { return self.opts.id(e)});
  1723. this.setVal(ids);
  1724. this.updateSelection(values);
  1725. this.clearSearch();
  1726. }
  1727. }
  1728. });
  1729. $.fn.select2 = function () {
  1730. var args = Array.prototype.slice.call(arguments, 0),
  1731. opts,
  1732. select2,
  1733. value, multiple, allowedMethods = ["val", "destroy", "open", "close", "focus", "isFocused", "container", "onSortStart", "onSortEnd", "enable", "disable", "positionDropdown", "data"];
  1734. this.each(function () {
  1735. if (args.length === 0 || typeof(args[0]) === "object") {
  1736. opts = args.length === 0 ? {} : $.extend({}, args[0]);
  1737. opts.element = $(this);
  1738. if (opts.element.get(0).tagName.toLowerCase() === "select") {
  1739. multiple = opts.element.attr("multiple");
  1740. } else {
  1741. multiple = opts.multiple || false;
  1742. if ("tags" in opts) {opts.multiple = multiple = true;}
  1743. }
  1744. select2 = multiple ? new MultiSelect2() : new SingleSelect2();
  1745. select2.init(opts);
  1746. } else if (typeof(args[0]) === "string") {
  1747. if (indexOf(args[0], allowedMethods) < 0) {
  1748. throw "Unknown method: " + args[0];
  1749. }
  1750. value = undefined;
  1751. select2 = $(this).data("select2");
  1752. if (select2 === undefined) return;
  1753. if (args[0] === "container") {
  1754. value=select2.container;
  1755. } else {
  1756. value = select2[args[0]].apply(select2, args.slice(1));
  1757. }
  1758. if (value !== undefined) {return false;}
  1759. } else {
  1760. throw "Invalid arguments to select2 plugin: " + args;
  1761. }
  1762. });
  1763. return (value === undefined) ? this : value;
  1764. };
  1765. // plugin defaults, accessible to users
  1766. $.fn.select2.defaults = {
  1767. width: "copy",
  1768. closeOnSelect: true,
  1769. containerCss: {},
  1770. dropdownCss: {},
  1771. containerCssClass: "",
  1772. dropdownCssClass: "",
  1773. formatResult: function(result, container, query) {
  1774. var markup=[];
  1775. markMatch(result.text, query.term, markup);
  1776. return markup.join("");
  1777. },
  1778. formatSelection: function (data, container) {
  1779. return data.text;
  1780. },
  1781. formatNoMatches: function () { return "No matches found"; },
  1782. formatInputTooShort: function (input, min) { return "Please enter " + (min - input.length) + " more characters"; },
  1783. formatLoadMore: function (pageNumber) { return "Loading more results..."; },
  1784. minimumResultsForSearch: 0,
  1785. minimumInputLength: 0,
  1786. id: function (e) { return e.id; },
  1787. matcher: function(term, text) {
  1788. return text.toUpperCase().indexOf(term.toUpperCase()) >= 0;
  1789. }
  1790. };
  1791. // exports
  1792. window.Select2 = {
  1793. query: {
  1794. ajax: ajax,
  1795. local: local,
  1796. tags: tags
  1797. }, util: {
  1798. debounce: debounce,
  1799. markMatch: markMatch
  1800. }, "class": {
  1801. "abstract": AbstractSelect2,
  1802. "single": SingleSelect2,
  1803. "multi": MultiSelect2
  1804. }
  1805. };
  1806. }(jQuery));