select2.js 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996
  1. window.$ = window.$ || {};(function() { if ($ && $.fn && $.fn.select2 && $.fn.select2.amd) { define = $.fn.select2.amd.define; require = $.fn.select2.amd.require; }/**
  2. * @license almond 0.2.9 Copyright (c) 2011-2014, The Dojo Foundation All Rights Reserved.
  3. * Available via the MIT or new BSD license.
  4. * see: http://github.com/jrburke/almond for details
  5. */
  6. //Going sloppy to avoid 'use strict' string cost, but strict practices should
  7. //be followed.
  8. /*jslint sloppy: true */
  9. /*global setTimeout: false */
  10. var requirejs, require, define;
  11. (function (undef) {
  12. var main, req, makeMap, handlers,
  13. defined = {},
  14. waiting = {},
  15. config = {},
  16. defining = {},
  17. hasOwn = Object.prototype.hasOwnProperty,
  18. aps = [].slice,
  19. jsSuffixRegExp = /\.js$/;
  20. function hasProp(obj, prop) {
  21. return hasOwn.call(obj, prop);
  22. }
  23. /**
  24. * Given a relative module name, like ./something, normalize it to
  25. * a real name that can be mapped to a path.
  26. * @param {String} name the relative name
  27. * @param {String} baseName a real name that the name arg is relative
  28. * to.
  29. * @returns {String} normalized name
  30. */
  31. function normalize(name, baseName) {
  32. var nameParts, nameSegment, mapValue, foundMap, lastIndex,
  33. foundI, foundStarMap, starI, i, j, part,
  34. baseParts = baseName && baseName.split("/"),
  35. map = config.map,
  36. starMap = (map && map['*']) || {};
  37. //Adjust any relative paths.
  38. if (name && name.charAt(0) === ".") {
  39. //If have a base name, try to normalize against it,
  40. //otherwise, assume it is a top-level require that will
  41. //be relative to baseUrl in the end.
  42. if (baseName) {
  43. //Convert baseName to array, and lop off the last part,
  44. //so that . matches that "directory" and not name of the baseName's
  45. //module. For instance, baseName of "one/two/three", maps to
  46. //"one/two/three.js", but we want the directory, "one/two" for
  47. //this normalization.
  48. baseParts = baseParts.slice(0, baseParts.length - 1);
  49. name = name.split('/');
  50. lastIndex = name.length - 1;
  51. // Node .js allowance:
  52. if (config.nodeIdCompat && jsSuffixRegExp.test(name[lastIndex])) {
  53. name[lastIndex] = name[lastIndex].replace(jsSuffixRegExp, '');
  54. }
  55. name = baseParts.concat(name);
  56. //start trimDots
  57. for (i = 0; i < name.length; i += 1) {
  58. part = name[i];
  59. if (part === ".") {
  60. name.splice(i, 1);
  61. i -= 1;
  62. } else if (part === "..") {
  63. if (i === 1 && (name[2] === '..' || name[0] === '..')) {
  64. //End of the line. Keep at least one non-dot
  65. //path segment at the front so it can be mapped
  66. //correctly to disk. Otherwise, there is likely
  67. //no path mapping for a path starting with '..'.
  68. //This can still fail, but catches the most reasonable
  69. //uses of ..
  70. break;
  71. } else if (i > 0) {
  72. name.splice(i - 1, 2);
  73. i -= 2;
  74. }
  75. }
  76. }
  77. //end trimDots
  78. name = name.join("/");
  79. } else if (name.indexOf('./') === 0) {
  80. // No baseName, so this is ID is resolved relative
  81. // to baseUrl, pull off the leading dot.
  82. name = name.substring(2);
  83. }
  84. }
  85. //Apply map config if available.
  86. if ((baseParts || starMap) && map) {
  87. nameParts = name.split('/');
  88. for (i = nameParts.length; i > 0; i -= 1) {
  89. nameSegment = nameParts.slice(0, i).join("/");
  90. if (baseParts) {
  91. //Find the longest baseName segment match in the config.
  92. //So, do joins on the biggest to smallest lengths of baseParts.
  93. for (j = baseParts.length; j > 0; j -= 1) {
  94. mapValue = map[baseParts.slice(0, j).join('/')];
  95. //baseName segment has config, find if it has one for
  96. //this name.
  97. if (mapValue) {
  98. mapValue = mapValue[nameSegment];
  99. if (mapValue) {
  100. //Match, update name to the new value.
  101. foundMap = mapValue;
  102. foundI = i;
  103. break;
  104. }
  105. }
  106. }
  107. }
  108. if (foundMap) {
  109. break;
  110. }
  111. //Check for a star map match, but just hold on to it,
  112. //if there is a shorter segment match later in a matching
  113. //config, then favor over this star map.
  114. if (!foundStarMap && starMap && starMap[nameSegment]) {
  115. foundStarMap = starMap[nameSegment];
  116. starI = i;
  117. }
  118. }
  119. if (!foundMap && foundStarMap) {
  120. foundMap = foundStarMap;
  121. foundI = starI;
  122. }
  123. if (foundMap) {
  124. nameParts.splice(0, foundI, foundMap);
  125. name = nameParts.join('/');
  126. }
  127. }
  128. return name;
  129. }
  130. function makeRequire(relName, forceSync) {
  131. return function () {
  132. //A version of a require function that passes a moduleName
  133. //value for items that may need to
  134. //look up paths relative to the moduleName
  135. return req.apply(undef, aps.call(arguments, 0).concat([relName, forceSync]));
  136. };
  137. }
  138. function makeNormalize(relName) {
  139. return function (name) {
  140. return normalize(name, relName);
  141. };
  142. }
  143. function makeLoad(depName) {
  144. return function (value) {
  145. defined[depName] = value;
  146. };
  147. }
  148. function callDep(name) {
  149. if (hasProp(waiting, name)) {
  150. var args = waiting[name];
  151. delete waiting[name];
  152. defining[name] = true;
  153. main.apply(undef, args);
  154. }
  155. if (!hasProp(defined, name) && !hasProp(defining, name)) {
  156. throw new Error('No ' + name);
  157. }
  158. return defined[name];
  159. }
  160. //Turns a plugin!resource to [plugin, resource]
  161. //with the plugin being undefined if the name
  162. //did not have a plugin prefix.
  163. function splitPrefix(name) {
  164. var prefix,
  165. index = name ? name.indexOf('!') : -1;
  166. if (index > -1) {
  167. prefix = name.substring(0, index);
  168. name = name.substring(index + 1, name.length);
  169. }
  170. return [prefix, name];
  171. }
  172. /**
  173. * Makes a name map, normalizing the name, and using a plugin
  174. * for normalization if necessary. Grabs a ref to plugin
  175. * too, as an optimization.
  176. */
  177. makeMap = function (name, relName) {
  178. var plugin,
  179. parts = splitPrefix(name),
  180. prefix = parts[0];
  181. name = parts[1];
  182. if (prefix) {
  183. prefix = normalize(prefix, relName);
  184. plugin = callDep(prefix);
  185. }
  186. //Normalize according
  187. if (prefix) {
  188. if (plugin && plugin.normalize) {
  189. name = plugin.normalize(name, makeNormalize(relName));
  190. } else {
  191. name = normalize(name, relName);
  192. }
  193. } else {
  194. name = normalize(name, relName);
  195. parts = splitPrefix(name);
  196. prefix = parts[0];
  197. name = parts[1];
  198. if (prefix) {
  199. plugin = callDep(prefix);
  200. }
  201. }
  202. //Using ridiculous property names for space reasons
  203. return {
  204. f: prefix ? prefix + '!' + name : name, //fullName
  205. n: name,
  206. pr: prefix,
  207. p: plugin
  208. };
  209. };
  210. function makeConfig(name) {
  211. return function () {
  212. return (config && config.config && config.config[name]) || {};
  213. };
  214. }
  215. handlers = {
  216. require: function (name) {
  217. return makeRequire(name);
  218. },
  219. exports: function (name) {
  220. var e = defined[name];
  221. if (typeof e !== 'undefined') {
  222. return e;
  223. } else {
  224. return (defined[name] = {});
  225. }
  226. },
  227. module: function (name) {
  228. return {
  229. id: name,
  230. uri: '',
  231. exports: defined[name],
  232. config: makeConfig(name)
  233. };
  234. }
  235. };
  236. main = function (name, deps, callback, relName) {
  237. var cjsModule, depName, ret, map, i,
  238. args = [],
  239. callbackType = typeof callback,
  240. usingExports;
  241. //Use name if no relName
  242. relName = relName || name;
  243. //Call the callback to define the module, if necessary.
  244. if (callbackType === 'undefined' || callbackType === 'function') {
  245. //Pull out the defined dependencies and pass the ordered
  246. //values to the callback.
  247. //Default to [require, exports, module] if no deps
  248. deps = !deps.length && callback.length ? ['require', 'exports', 'module'] : deps;
  249. for (i = 0; i < deps.length; i += 1) {
  250. map = makeMap(deps[i], relName);
  251. depName = map.f;
  252. //Fast path CommonJS standard dependencies.
  253. if (depName === "require") {
  254. args[i] = handlers.require(name);
  255. } else if (depName === "exports") {
  256. //CommonJS module spec 1.1
  257. args[i] = handlers.exports(name);
  258. usingExports = true;
  259. } else if (depName === "module") {
  260. //CommonJS module spec 1.1
  261. cjsModule = args[i] = handlers.module(name);
  262. } else if (hasProp(defined, depName) ||
  263. hasProp(waiting, depName) ||
  264. hasProp(defining, depName)) {
  265. args[i] = callDep(depName);
  266. } else if (map.p) {
  267. map.p.load(map.n, makeRequire(relName, true), makeLoad(depName), {});
  268. args[i] = defined[depName];
  269. } else {
  270. throw new Error(name + ' missing ' + depName);
  271. }
  272. }
  273. ret = callback ? callback.apply(defined[name], args) : undefined;
  274. if (name) {
  275. //If setting exports via "module" is in play,
  276. //favor that over return value and exports. After that,
  277. //favor a non-undefined return value over exports use.
  278. if (cjsModule && cjsModule.exports !== undef &&
  279. cjsModule.exports !== defined[name]) {
  280. defined[name] = cjsModule.exports;
  281. } else if (ret !== undef || !usingExports) {
  282. //Use the return value from the function.
  283. defined[name] = ret;
  284. }
  285. }
  286. } else if (name) {
  287. //May just be an object definition for the module. Only
  288. //worry about defining if have a module name.
  289. defined[name] = callback;
  290. }
  291. };
  292. requirejs = require = req = function (deps, callback, relName, forceSync, alt) {
  293. if (typeof deps === "string") {
  294. if (handlers[deps]) {
  295. //callback in this case is really relName
  296. return handlers[deps](callback);
  297. }
  298. //Just return the module wanted. In this scenario, the
  299. //deps arg is the module name, and second arg (if passed)
  300. //is just the relName.
  301. //Normalize module name, if it contains . or ..
  302. return callDep(makeMap(deps, callback).f);
  303. } else if (!deps.splice) {
  304. //deps is a config object, not an array.
  305. config = deps;
  306. if (config.deps) {
  307. req(config.deps, config.callback);
  308. }
  309. if (!callback) {
  310. return;
  311. }
  312. if (callback.splice) {
  313. //callback is an array, which means it is a dependency list.
  314. //Adjust args if there are dependencies
  315. deps = callback;
  316. callback = relName;
  317. relName = null;
  318. } else {
  319. deps = undef;
  320. }
  321. }
  322. //Support require(['a'])
  323. callback = callback || function () {};
  324. //If relName is a function, it is an errback handler,
  325. //so remove it.
  326. if (typeof relName === 'function') {
  327. relName = forceSync;
  328. forceSync = alt;
  329. }
  330. //Simulate async callback;
  331. if (forceSync) {
  332. main(undef, deps, callback, relName);
  333. } else {
  334. //Using a non-zero value because of concern for what old browsers
  335. //do, and latest browsers "upgrade" to 4 if lower value is used:
  336. //http://www.whatwg.org/specs/web-apps/current-work/multipage/timers.html#dom-windowtimers-settimeout:
  337. //If want a value immediately, use require('id') instead -- something
  338. //that works in almond on the global level, but not guaranteed and
  339. //unlikely to work in other AMD implementations.
  340. setTimeout(function () {
  341. main(undef, deps, callback, relName);
  342. }, 4);
  343. }
  344. return req;
  345. };
  346. /**
  347. * Just drops the config on the floor, but returns req in case
  348. * the config return value is used.
  349. */
  350. req.config = function (cfg) {
  351. return req(cfg);
  352. };
  353. /**
  354. * Expose module registry for debugging and tooling
  355. */
  356. requirejs._defined = defined;
  357. define = function (name, deps, callback) {
  358. //This module may not have dependencies
  359. if (!deps.splice) {
  360. //deps is not an array, so probably means
  361. //an object literal or factory function for
  362. //the value. Adjust args.
  363. callback = deps;
  364. deps = [];
  365. }
  366. if (!hasProp(defined, name) && !hasProp(waiting, name)) {
  367. waiting[name] = [name, deps, callback];
  368. }
  369. };
  370. define.amd = {
  371. jQuery: true
  372. };
  373. }());
  374. define("almond", function(){});
  375. define('jquery',[],function () {
  376. return jQuery;
  377. });
  378. define('select2/utils',[], function () {
  379. var Utils = {};
  380. Utils.Extend = function (ChildClass, SuperClass) {
  381. var __hasProp = {}.hasOwnProperty;
  382. function BaseConstructor () {
  383. this.constructor = ChildClass;
  384. }
  385. for (var key in SuperClass) {
  386. if (__hasProp.call(SuperClass, key)) {
  387. ChildClass[key] = SuperClass[key];
  388. }
  389. }
  390. BaseConstructor.prototype = SuperClass.prototype;
  391. ChildClass.prototype = new BaseConstructor();
  392. ChildClass.__super__ = SuperClass.prototype;
  393. return ChildClass;
  394. };
  395. function getMethods (theClass) {
  396. var proto = theClass.prototype;
  397. var methods = [];
  398. for (var methodName in proto) {
  399. var m = proto[methodName];
  400. if (typeof m !== 'function') {
  401. continue;
  402. }
  403. if (methodName === 'constructor') {
  404. continue;
  405. }
  406. methods.push(methodName);
  407. }
  408. return methods;
  409. }
  410. Utils.Decorate = function (SuperClass, DecoratorClass) {
  411. var decoratedMethods = getMethods(DecoratorClass);
  412. var superMethods = getMethods(SuperClass);
  413. function DecoratedClass () {
  414. var unshift = Array.prototype.unshift;
  415. var argCount = DecoratorClass.prototype.constructor.length;
  416. var calledConstructor = SuperClass.prototype.constructor;
  417. if (argCount > 0) {
  418. unshift.call(arguments, SuperClass.prototype.constructor);
  419. calledConstructor = DecoratorClass.prototype.constructor;
  420. }
  421. calledConstructor.apply(this, arguments);
  422. }
  423. DecoratorClass.displayName = SuperClass.displayName;
  424. function ctr () {
  425. this.constructor = DecoratedClass;
  426. }
  427. DecoratedClass.prototype = new ctr();
  428. for (var m = 0; m < superMethods.length; m++) {
  429. var superMethod = superMethods[m];
  430. DecoratedClass.prototype[superMethod] =
  431. SuperClass.prototype[superMethod];
  432. }
  433. var calledMethod = function (methodName) {
  434. // Stub out the original method if it's not decorating an actual method
  435. var originalMethod = function () {};
  436. if (methodName in DecoratedClass.prototype) {
  437. originalMethod = DecoratedClass.prototype[methodName];
  438. }
  439. var decoratedMethod = DecoratorClass.prototype[methodName];
  440. return function () {
  441. var unshift = Array.prototype.unshift;
  442. unshift.call(arguments, originalMethod);
  443. return decoratedMethod.apply(this, arguments);
  444. };
  445. };
  446. for (var d = 0; d < decoratedMethods.length; d++) {
  447. var decoratedMethod = decoratedMethods[d];
  448. DecoratedClass.prototype[decoratedMethod] = calledMethod(decoratedMethod);
  449. }
  450. return DecoratedClass;
  451. };
  452. var Observable = function () {
  453. this.listeners = {};
  454. };
  455. Observable.prototype.on = function (event, callback) {
  456. this.listeners = this.listeners || {};
  457. if (event in this.listeners) {
  458. this.listeners[event].push(callback);
  459. } else {
  460. this.listeners[event] = [callback];
  461. }
  462. };
  463. Observable.prototype.trigger = function (event) {
  464. var slice = Array.prototype.slice;
  465. this.listeners = this.listeners || {};
  466. if (event in this.listeners) {
  467. this.invoke(this.listeners[event], slice.call(arguments, 1));
  468. }
  469. if ('*' in this.listeners) {
  470. this.invoke(this.listeners['*'], arguments);
  471. }
  472. };
  473. Observable.prototype.invoke = function (listeners, params) {
  474. for (var i = 0, len = listeners.length; i < len; i++) {
  475. listeners[i].apply(this, params);
  476. }
  477. };
  478. Utils.Observable = Observable;
  479. Utils.generateChars = function (length) {
  480. var chars = '';
  481. for (var i = 0; i < length; i++) {
  482. var randomChar = Math.floor(Math.random() * 36);
  483. chars += randomChar.toString(36);
  484. }
  485. return chars;
  486. };
  487. return Utils;
  488. });
  489. define('select2/results',[
  490. './utils'
  491. ], function (Utils) {
  492. function Results ($element, options, dataAdapter) {
  493. this.$element = $element;
  494. this.data = dataAdapter;
  495. this.options = options;
  496. Results.__super__.constructor.call(this);
  497. }
  498. Utils.Extend(Results, Utils.Observable);
  499. Results.prototype.render = function () {
  500. var $results = $(
  501. '<ul class="select2-results__options" role="tree"></ul>'
  502. );
  503. if (this.options.get('multiple')) {
  504. $results.attr('aria-multiselectable', 'true');
  505. }
  506. this.$results = $results;
  507. return $results;
  508. };
  509. Results.prototype.clear = function () {
  510. this.$results.empty();
  511. };
  512. Results.prototype.displayMessage = function (params) {
  513. this.clear();
  514. this.hideLoading();
  515. var $message = $(
  516. '<li role="treeitem" class="select2-results__option"></li>'
  517. );
  518. var message = this.options.get('translations').get(params.message);
  519. $message.text(message(params.args));
  520. this.$results.append($message);
  521. };
  522. Results.prototype.append = function (data) {
  523. this.hideLoading();
  524. var $options = [];
  525. if (data.length === 0) {
  526. if (this.$results.children().length === 0) {
  527. this.trigger('results:message', {
  528. message: 'noResults'
  529. });
  530. }
  531. return;
  532. }
  533. data = this.sort(data);
  534. for (var d = 0; d < data.length; d++) {
  535. var item = data[d];
  536. var $option = this.option(item);
  537. $options.push($option);
  538. }
  539. this.$results.append($options);
  540. };
  541. Results.prototype.position = function ($results, $dropdown) {
  542. var $resultsContainer = $dropdown.find('.select2-results');
  543. $resultsContainer.append($results);
  544. };
  545. Results.prototype.sort = function (data) {
  546. return data;
  547. };
  548. Results.prototype.setClasses = function () {
  549. var self = this;
  550. this.data.current(function (selected) {
  551. var selectedIds = $.map(selected, function (s) {
  552. return s.id.toString();
  553. });
  554. var $options = self.$results
  555. .find('.select2-results__option[aria-selected]');
  556. $options.each(function () {
  557. var $option = $(this);
  558. var item = $.data(this, 'data');
  559. if (item.id != null && selectedIds.indexOf(item.id.toString()) > -1) {
  560. $option.attr('aria-selected', 'true');
  561. } else {
  562. $option.attr('aria-selected', 'false');
  563. }
  564. });
  565. var $selected = $options.filter('[aria-selected=true]');
  566. // Check if there are any selected options
  567. if ($selected.length > 0) {
  568. // If there are selected options, highlight the first
  569. $selected.first().trigger('mouseenter');
  570. } else {
  571. // If there are no selected options, highlight the first option
  572. // in the dropdown
  573. $options.first().trigger('mouseenter');
  574. }
  575. });
  576. };
  577. Results.prototype.showLoading = function (params) {
  578. this.hideLoading();
  579. var loadingMore = this.options.get('translations').get('searching');
  580. var loading = {
  581. disabled: true,
  582. loading: true,
  583. text: loadingMore(params)
  584. };
  585. var $loading = this.option(loading);
  586. $loading.className += ' loading-results';
  587. this.$results.prepend($loading);
  588. };
  589. Results.prototype.hideLoading = function () {
  590. this.$results.find('.loading-results').remove();
  591. };
  592. Results.prototype.option = function (data) {
  593. var option = document.createElement('li');
  594. option.className = 'select2-results__option';
  595. var attrs = {
  596. 'role': 'treeitem',
  597. 'aria-selected': 'false'
  598. };
  599. if (data.disabled) {
  600. delete attrs['aria-selected'];
  601. attrs['aria-disabled'] = 'true';
  602. }
  603. if (data.id == null) {
  604. delete attrs['aria-selected'];
  605. }
  606. if (data._resultId != null) {
  607. option.id = data._resultId;
  608. }
  609. if (data.children) {
  610. attrs.role = 'group';
  611. attrs['aria-label'] = data.text;
  612. delete attrs['aria-selected'];
  613. }
  614. for (var attr in attrs) {
  615. var val = attrs[attr];
  616. option.setAttribute(attr, val);
  617. }
  618. if (data.children) {
  619. var $option = $(option);
  620. var label = document.createElement('strong');
  621. label.className = 'select2-results__group';
  622. var $label = $(label);
  623. this.template(data, label);
  624. var $children = [];
  625. for (var c = 0; c < data.children.length; c++) {
  626. var child = data.children[c];
  627. var $child = this.option(child);
  628. $children.push($child);
  629. }
  630. var $childrenContainer = $('<ul></ul>', {
  631. 'class': 'select2-results__options select2-results__options--nested'
  632. });
  633. $childrenContainer.append($children);
  634. $option.append(label);
  635. $option.append($childrenContainer);
  636. } else {
  637. this.template(data, option);
  638. }
  639. $.data(option, 'data', data);
  640. return option;
  641. };
  642. Results.prototype.bind = function (container, $container) {
  643. var self = this;
  644. var id = container.id + '-results';
  645. this.$results.attr('id', id);
  646. container.on('results:all', function (params) {
  647. self.clear();
  648. self.append(params.data);
  649. if (container.isOpen()) {
  650. self.setClasses();
  651. }
  652. });
  653. container.on('results:append', function (params) {
  654. self.append(params.data);
  655. if (container.isOpen()) {
  656. self.setClasses();
  657. }
  658. });
  659. container.on('query', function (params) {
  660. self.showLoading(params);
  661. });
  662. container.on('select', function () {
  663. if (!container.isOpen()) {
  664. return;
  665. }
  666. self.setClasses();
  667. });
  668. container.on('unselect', function () {
  669. if (!container.isOpen()) {
  670. return;
  671. }
  672. self.setClasses();
  673. });
  674. container.on('open', function () {
  675. // When the dropdown is open, aria-expended="true"
  676. self.$results.attr('aria-expanded', 'true');
  677. self.$results.attr('aria-hidden', 'false');
  678. self.setClasses();
  679. self.ensureHighlightVisible();
  680. });
  681. container.on('close', function () {
  682. // When the dropdown is closed, aria-expended="false"
  683. self.$results.attr('aria-expanded', 'false');
  684. self.$results.attr('aria-hidden', 'true');
  685. self.$results.removeAttr('aria-activedescendant');
  686. });
  687. container.on('results:select', function () {
  688. var $highlighted = self.getHighlightedResults();
  689. if ($highlighted.length === 0) {
  690. return;
  691. }
  692. var data = $highlighted.data('data');
  693. if ($highlighted.attr('aria-selected') == 'true') {
  694. self.trigger('unselected', {
  695. data: data
  696. });
  697. } else {
  698. self.trigger('selected', {
  699. data: data
  700. });
  701. }
  702. });
  703. container.on('results:previous', function () {
  704. var $highlighted = self.getHighlightedResults();
  705. var $options = self.$results.find('[aria-selected]');
  706. var currentIndex = $options.index($highlighted);
  707. // If we are already at te top, don't move further
  708. if (currentIndex === 0) {
  709. return;
  710. }
  711. var nextIndex = currentIndex - 1;
  712. // If none are highlighted, highlight the first
  713. if ($highlighted.length === 0) {
  714. nextIndex = 0;
  715. }
  716. var $next = $options.eq(nextIndex);
  717. $next.trigger('mouseenter');
  718. var currentOffset = self.$results.offset().top;
  719. var nextTop = $next.offset().top;
  720. var nextOffset = self.$results.scrollTop() + (nextTop - currentOffset);
  721. if (nextIndex === 0) {
  722. self.$results.scrollTop(0);
  723. } else if (nextTop - currentOffset < 0) {
  724. self.$results.scrollTop(nextOffset);
  725. }
  726. });
  727. container.on('results:next', function () {
  728. var $highlighted = self.getHighlightedResults();
  729. var $options = self.$results.find('[aria-selected]');
  730. var currentIndex = $options.index($highlighted);
  731. var nextIndex = currentIndex + 1;
  732. // If we are at the last option, stay there
  733. if (nextIndex >= $options.length) {
  734. return;
  735. }
  736. var $next = $options.eq(nextIndex);
  737. $next.trigger('mouseenter');
  738. var currentOffset = self.$results.offset().top +
  739. self.$results.outerHeight(false);
  740. var nextBottom = $next.offset().top + $next.outerHeight(false);
  741. var nextOffset = self.$results.scrollTop() + nextBottom - currentOffset;
  742. if (nextIndex === 0) {
  743. self.$results.scrollTop(0);
  744. } else if (nextBottom > currentOffset) {
  745. self.$results.scrollTop(nextOffset);
  746. }
  747. });
  748. container.on('results:focus', function (params) {
  749. params.element.addClass('select2-results__option--highlighted');
  750. });
  751. container.on('results:message', function (params) {
  752. self.trigger('results:message', params);
  753. });
  754. this.on('results:message', function (params) {
  755. self.displayMessage(params);
  756. });
  757. this.$results.on('mouseup', '.select2-results__option[aria-selected]',
  758. function (evt) {
  759. var $this = $(this);
  760. var data = $this.data('data');
  761. if ($this.attr('aria-selected') === 'true') {
  762. self.trigger('unselected', {
  763. originalEvent: evt,
  764. data: data
  765. });
  766. return;
  767. }
  768. self.trigger('selected', {
  769. originalEvent: evt,
  770. data: data
  771. });
  772. });
  773. this.$results.on('mouseenter', '.select2-results__option[aria-selected]',
  774. function (evt) {
  775. var data = $(this).data('data');
  776. self.getHighlightedResults()
  777. .removeClass('select2-results__option--highlighted');
  778. self.trigger('results:focus', {
  779. data: data,
  780. element: $(this)
  781. });
  782. });
  783. };
  784. Results.prototype.getHighlightedResults = function () {
  785. var $highlighted = this.$results
  786. .find('.select2-results__option--highlighted');
  787. return $highlighted;
  788. };
  789. Results.prototype.destroy = function () {
  790. this.$results.remove();
  791. };
  792. Results.prototype.ensureHighlightVisible = function () {
  793. var $highlighted = this.getHighlightedResults();
  794. if ($highlighted.length === 0) {
  795. return;
  796. }
  797. var $options = this.$results.find('[aria-selected]');
  798. var currentIndex = $options.index($highlighted);
  799. var currentOffset = this.$results.offset().top;
  800. var nextTop = $highlighted.offset().top;
  801. var nextOffset = this.$results.scrollTop() + (nextTop - currentOffset);
  802. var offsetDelta = nextTop - currentOffset;
  803. nextOffset -= $highlighted.outerHeight(false) * 2;
  804. if (currentIndex <= 2) {
  805. this.$results.scrollTop(0);
  806. } else if (offsetDelta > this.$results.outerHeight() || offsetDelta < 0) {
  807. this.$results.scrollTop(nextOffset);
  808. }
  809. };
  810. Results.prototype.template = function (result, container) {
  811. var template = this.options.get('templateResult');
  812. container.innerHTML = template(result);
  813. };
  814. return Results;
  815. });
  816. define('select2/keys',[
  817. ], function () {
  818. var KEYS = {
  819. BACKSPACE: 8,
  820. TAB: 9,
  821. ENTER: 13,
  822. SHIFT: 16,
  823. CTRL: 17,
  824. ALT: 18,
  825. ESC: 27,
  826. SPACE: 32,
  827. PAGE_UP: 33,
  828. PAGE_DOWN: 34,
  829. END: 35,
  830. HOME: 36,
  831. LEFT: 37,
  832. UP: 38,
  833. RIGHT: 39,
  834. DOWN: 40,
  835. DELETE: 46,
  836. isArrow: function (k) {
  837. k = k.which ? k.which : k;
  838. switch (k) {
  839. case KEY.LEFT:
  840. case KEY.RIGHT:
  841. case KEY.UP:
  842. case KEY.DOWN:
  843. return true;
  844. }
  845. return false;
  846. }
  847. };
  848. return KEYS;
  849. });
  850. define('select2/selection/base',[
  851. '../utils',
  852. '../keys'
  853. ], function (Utils, KEYS) {
  854. function BaseSelection ($element, options) {
  855. this.$element = $element;
  856. this.options = options;
  857. BaseSelection.__super__.constructor.call(this);
  858. }
  859. Utils.Extend(BaseSelection, Utils.Observable);
  860. BaseSelection.prototype.render = function () {
  861. throw new Error('The `render` method must be defined in child classes.');
  862. };
  863. BaseSelection.prototype.bind = function (container, $container) {
  864. var self = this;
  865. var id = container.id + '-container';
  866. var resultsId = container.id + '-results';
  867. this.container = container;
  868. this.$selection.attr('aria-owns', resultsId);
  869. this.$selection.on('keydown', function (evt) {
  870. self.trigger('keypress', evt);
  871. if (evt.which === KEYS.SPACE) {
  872. evt.preventDefault();
  873. }
  874. });
  875. container.on('results:focus', function (params) {
  876. self.$selection.attr('aria-activedescendant', params.data._resultId);
  877. });
  878. container.on('selection:update', function (params) {
  879. self.update(params.data);
  880. });
  881. container.on('open', function () {
  882. // When the dropdown is open, aria-expanded="true"
  883. self.$selection.attr('aria-expanded', 'true');
  884. self._attachCloseHandler(container);
  885. });
  886. container.on('close', function () {
  887. // When the dropdown is closed, aria-expanded="false"
  888. self.$selection.attr('aria-expanded', 'false');
  889. self.$selection.removeAttr('aria-activedescendant');
  890. self.$selection.focus();
  891. self._detachCloseHandler(container);
  892. });
  893. };
  894. BaseSelection.prototype._attachCloseHandler = function (container) {
  895. $(document.body).on('mousedown.select2.' + container.id, function (e) {
  896. var $target = $(e.target);
  897. var $select = $target.closest('.select2');
  898. var $all = $('.select2.select2-container--open');
  899. $all.each(function () {
  900. var $this = $(this);
  901. if (this == $select[0]) {
  902. return;
  903. }
  904. var $element = $this.data('element');
  905. $element.select2('close');
  906. });
  907. });
  908. };
  909. BaseSelection.prototype._detachCloseHandler = function (container) {
  910. $(document.body).off('mousedown.select2.' + container.id);
  911. };
  912. BaseSelection.prototype.position = function ($selection, $container) {
  913. var $selectionContainer = $container.find('.selection');
  914. $selectionContainer.append($selection);
  915. };
  916. BaseSelection.prototype.destroy = function () {
  917. // Unbind the dropdown click handler if it exists
  918. $(document.body).off('.select2.' + this.container.id);
  919. };
  920. BaseSelection.prototype.update = function (data) {
  921. throw new Error('The `update` method must be defined in child classes.');
  922. };
  923. return BaseSelection;
  924. });
  925. define('select2/selection/single',[
  926. './base',
  927. '../utils',
  928. '../keys'
  929. ], function (BaseSelection, Utils, KEYS) {
  930. function SingleSelection () {
  931. SingleSelection.__super__.constructor.apply(this, arguments);
  932. }
  933. Utils.Extend(SingleSelection, BaseSelection);
  934. SingleSelection.prototype.render = function () {
  935. var $selection = $(
  936. '<span class="select2-selection select2-selection--single" tabindex="0"' +
  937. ' role="combobox" aria-autocomplete="list" aria-haspopup="true"' +
  938. ' aria-expanded="false">' +
  939. '<span class="select2-selection__rendered"></span>' +
  940. '<span class="select2-selection__arrow" role="presentation">' +
  941. '<b role="presentation"></b>' +
  942. '</span>' +
  943. '</span>'
  944. );
  945. $selection.attr('title', this.$element.attr('title'));
  946. this.$selection = $selection;
  947. return $selection;
  948. };
  949. SingleSelection.prototype.bind = function (container, $container) {
  950. var self = this;
  951. SingleSelection.__super__.bind.apply(this, arguments);
  952. var id = container.id + '-container';
  953. this.$selection.find('.select2-selection__rendered').attr('id', id);
  954. this.$selection.attr('aria-labelledby', id);
  955. this.$selection.on('mousedown', function (evt) {
  956. // Only respond to left clicks
  957. if (evt.which !== 1) {
  958. return;
  959. }
  960. self.trigger('toggle', {
  961. originalEvent: evt
  962. });
  963. });
  964. this.$selection.on('focus', function (evt) {
  965. // User focuses on the container
  966. });
  967. this.$selection.on('blur', function (evt) {
  968. // User exits the container
  969. });
  970. container.on('selection:update', function (params) {
  971. self.update(params.data);
  972. });
  973. };
  974. SingleSelection.prototype.clear = function () {
  975. this.$selection.find('.select2-selection__rendered').empty();
  976. };
  977. SingleSelection.prototype.display = function (data) {
  978. var template = this.options.get('templateSelection');
  979. return template(data);
  980. };
  981. SingleSelection.prototype.selectionContainer = function () {
  982. return $('<span></span>');
  983. };
  984. SingleSelection.prototype.update = function (data) {
  985. if (data.length === 0) {
  986. this.clear();
  987. return;
  988. }
  989. var selection = data[0];
  990. var formatted = this.display(selection);
  991. this.$selection.find('.select2-selection__rendered').html(formatted);
  992. };
  993. return SingleSelection;
  994. });
  995. define('select2/selection/multiple',[
  996. './base',
  997. '../utils'
  998. ], function (BaseSelection, Utils) {
  999. function MultipleSelection ($element, options) {
  1000. MultipleSelection.__super__.constructor.apply(this, arguments);
  1001. }
  1002. Utils.Extend(MultipleSelection, BaseSelection);
  1003. MultipleSelection.prototype.render = function () {
  1004. var $selection = $(
  1005. '<span class="select2-selection select2-selection--multiple"' +
  1006. ' tabindex="0" role="combobox" aria-autocomplete="list"' +
  1007. ' aria-haspopup="true" aria-expanded="false">' +
  1008. '<ul class="select2-selection__rendered"></ul>' +
  1009. '</span>'
  1010. );
  1011. $selection.attr('title', this.$element.attr('title'));
  1012. this.$selection = $selection;
  1013. return $selection;
  1014. };
  1015. MultipleSelection.prototype.bind = function (container, $container) {
  1016. var self = this;
  1017. MultipleSelection.__super__.bind.apply(this, arguments);
  1018. this.$selection.on('click', function (evt) {
  1019. self.trigger('toggle', {
  1020. originalEvent: evt
  1021. });
  1022. });
  1023. this.$selection.on('click', '.select2-selection__choice__remove',
  1024. function (evt) {
  1025. var $remove = $(this);
  1026. var $selection = $remove.parent();
  1027. var data = $selection.data('data');
  1028. self.trigger('unselected', {
  1029. originalEvent: evt,
  1030. data: data
  1031. });
  1032. });
  1033. };
  1034. MultipleSelection.prototype.clear = function () {
  1035. this.$selection.find('.select2-selection__rendered').empty();
  1036. };
  1037. MultipleSelection.prototype.display = function (data) {
  1038. var template = this.options.get('templateSelection');
  1039. return template(data);
  1040. };
  1041. MultipleSelection.prototype.selectionContainer = function () {
  1042. var $container = $(
  1043. '<li class="select2-selection__choice">' +
  1044. '<span class="select2-selection__choice__remove" role="presentation">' +
  1045. '&times;' +
  1046. '</span>' +
  1047. '</li>'
  1048. );
  1049. return $container;
  1050. };
  1051. MultipleSelection.prototype.update = function (data) {
  1052. this.clear();
  1053. if (data.length === 0) {
  1054. return;
  1055. }
  1056. var $selections = [];
  1057. for (var d = 0; d < data.length; d++) {
  1058. var selection = data[d];
  1059. var formatted = this.display(selection);
  1060. var $selection = this.selectionContainer();
  1061. $selection.append(formatted);
  1062. $selection.data('data', selection);
  1063. $selections.push($selection);
  1064. }
  1065. this.$selection.find('.select2-selection__rendered').append($selections);
  1066. };
  1067. return MultipleSelection;
  1068. });
  1069. define('select2/selection/placeholder',[
  1070. '../utils'
  1071. ], function (Utils) {
  1072. function Placeholder (decorated, $element, options) {
  1073. this.placeholder = this.normalizePlaceholder(options.get('placeholder'));
  1074. decorated.call(this, $element, options);
  1075. }
  1076. Placeholder.prototype.normalizePlaceholder = function (_, placeholder) {
  1077. if (typeof placeholder === 'string') {
  1078. placeholder = {
  1079. id: '',
  1080. text: placeholder
  1081. };
  1082. }
  1083. return placeholder;
  1084. };
  1085. Placeholder.prototype.createPlaceholder = function (decorated, placeholder) {
  1086. var $placeholder = this.selectionContainer();
  1087. $placeholder.html(this.display(placeholder));
  1088. $placeholder.addClass('select2-selection__placeholder')
  1089. .removeClass('select2-selection__choice');
  1090. return $placeholder;
  1091. };
  1092. Placeholder.prototype.update = function (decorated, data) {
  1093. var singlePlaceholder = (
  1094. data.length == 1 && data[0].id != this.placeholder.id
  1095. );
  1096. var multipleSelections = data.length > 1;
  1097. if (multipleSelections || singlePlaceholder) {
  1098. return decorated.call(this, data);
  1099. }
  1100. this.clear();
  1101. var $placeholder = this.createPlaceholder(this.placeholder);
  1102. this.$selection.find('.select2-selection__rendered').append($placeholder);
  1103. };
  1104. return Placeholder;
  1105. });
  1106. define('select2/selection/allowClear',[
  1107. ], function () {
  1108. function AllowClear () { }
  1109. AllowClear.prototype.bind = function (decorated, container, $container) {
  1110. var self = this;
  1111. decorated.call(this, container, $container);
  1112. this.$selection.on('mousedown', '.select2-selection__clear',
  1113. function (evt) {
  1114. evt.stopPropagation();
  1115. self.$element.val(self.placeholder.id).trigger('change');
  1116. self.trigger('toggle');
  1117. });
  1118. };
  1119. AllowClear.prototype.update = function (decorated, data) {
  1120. decorated.call(this, data);
  1121. if (this.$selection.find('.select2-selection__placeholder').length > 0) {
  1122. return;
  1123. }
  1124. var $remove = $(
  1125. '<span class="select2-selection__clear">' +
  1126. '&times;' +
  1127. '</span>'
  1128. );
  1129. this.$selection.find('.select2-selection__rendered').append($remove);
  1130. };
  1131. return AllowClear;
  1132. });
  1133. define('select2/selection/search',[
  1134. '../utils'
  1135. ], function (Utils) {
  1136. function Search (decorated, $element, options) {
  1137. decorated.call(this, $element, options);
  1138. }
  1139. Search.prototype.render = function (decorated) {
  1140. var $search = $(
  1141. '<li class="select2-search select2-search--inline">' +
  1142. '<input class="select2-search__field" type="search" tabindex="-1"' +
  1143. ' role="textbox" />' +
  1144. '</li>'
  1145. );
  1146. this.$searchContainer = $search;
  1147. this.$search = $search.find('input');
  1148. var $rendered = decorated.call(this);
  1149. return $rendered;
  1150. };
  1151. Search.prototype.bind = function (decorated, container, $container) {
  1152. var self = this;
  1153. decorated.call(this, container, $container);
  1154. container.on('open', function () {
  1155. self.$search.attr('tabindex', 0);
  1156. self.$search.focus();
  1157. });
  1158. container.on('close', function () {
  1159. self.$search.attr('tabindex', -1);
  1160. self.$search.val('');
  1161. });
  1162. this.$selection.on('keydown', '.select2-search--inline', function (evt) {
  1163. evt.stopPropagation();
  1164. self.trigger('keypress', evt);
  1165. self._keyUpPrevented = evt.isDefaultPrevented();
  1166. });
  1167. this.$selection.on('keyup', '.select2-search--inline', function (evt) {
  1168. self.handleSearch(evt);
  1169. });
  1170. };
  1171. Search.prototype.createPlaceholder = function (decorated, placeholder) {
  1172. this.$search.attr('placeholder', placeholder.text);
  1173. };
  1174. Search.prototype.update = function (decorated, data) {
  1175. this.$search.attr('placeholder', '');
  1176. decorated.call(this, data);
  1177. this.$selection.find('.select2-selection__rendered')
  1178. .append(this.$searchContainer);
  1179. this.resizeSearch();
  1180. };
  1181. Search.prototype.handleSearch = function (evt) {
  1182. this.resizeSearch();
  1183. if (!this._keyUpPrevented) {
  1184. var input = this.$search.val();
  1185. this.trigger('query', {
  1186. term: input
  1187. });
  1188. }
  1189. this._keyUpPrevented = false;
  1190. };
  1191. Search.prototype.resizeSearch = function () {
  1192. this.$search.css('width', '25px');
  1193. var width = '';
  1194. if (this.$search.attr('placeholder') !== '') {
  1195. width = this.$selection.innerWidth();
  1196. width -= this.$selection.find('.select2-selection__rendered')
  1197. .innerWidth();
  1198. width = width + 'px';
  1199. } else {
  1200. var minimumWidth = this.$search.val().length + 1;
  1201. width = (minimumWidth * 0.75) + 'em';
  1202. }
  1203. this.$search.css('width', width);
  1204. };
  1205. return Search;
  1206. });
  1207. define('select2/translation',[
  1208. ], function () {
  1209. function Translation (dict) {
  1210. this.dict = dict || {};
  1211. }
  1212. Translation.prototype.all = function () {
  1213. return this.dict;
  1214. };
  1215. Translation.prototype.get = function (key) {
  1216. return this.dict[key];
  1217. };
  1218. Translation.prototype.extend = function (translation) {
  1219. this.dict = $.extend({}, translation.all(), this.dict);
  1220. };
  1221. // Static functions
  1222. Translation._cache = {};
  1223. Translation.loadPath = function (path) {
  1224. if (!(path in Translation._cache)) {
  1225. var translations = require(path);
  1226. Translation._cache[path] = translations;
  1227. }
  1228. return new Translation(Translation._cache[path]);
  1229. };
  1230. return Translation;
  1231. });
  1232. define('select2/diacritics',[
  1233. ], function () {
  1234. var diacritics = {
  1235. '\u24B6': 'A',
  1236. '\uFF21': 'A',
  1237. '\u00C0': 'A',
  1238. '\u00C1': 'A',
  1239. '\u00C2': 'A',
  1240. '\u1EA6': 'A',
  1241. '\u1EA4': 'A',
  1242. '\u1EAA': 'A',
  1243. '\u1EA8': 'A',
  1244. '\u00C3': 'A',
  1245. '\u0100': 'A',
  1246. '\u0102': 'A',
  1247. '\u1EB0': 'A',
  1248. '\u1EAE': 'A',
  1249. '\u1EB4': 'A',
  1250. '\u1EB2': 'A',
  1251. '\u0226': 'A',
  1252. '\u01E0': 'A',
  1253. '\u00C4': 'A',
  1254. '\u01DE': 'A',
  1255. '\u1EA2': 'A',
  1256. '\u00C5': 'A',
  1257. '\u01FA': 'A',
  1258. '\u01CD': 'A',
  1259. '\u0200': 'A',
  1260. '\u0202': 'A',
  1261. '\u1EA0': 'A',
  1262. '\u1EAC': 'A',
  1263. '\u1EB6': 'A',
  1264. '\u1E00': 'A',
  1265. '\u0104': 'A',
  1266. '\u023A': 'A',
  1267. '\u2C6F': 'A',
  1268. '\uA732': 'AA',
  1269. '\u00C6': 'AE',
  1270. '\u01FC': 'AE',
  1271. '\u01E2': 'AE',
  1272. '\uA734': 'AO',
  1273. '\uA736': 'AU',
  1274. '\uA738': 'AV',
  1275. '\uA73A': 'AV',
  1276. '\uA73C': 'AY',
  1277. '\u24B7': 'B',
  1278. '\uFF22': 'B',
  1279. '\u1E02': 'B',
  1280. '\u1E04': 'B',
  1281. '\u1E06': 'B',
  1282. '\u0243': 'B',
  1283. '\u0182': 'B',
  1284. '\u0181': 'B',
  1285. '\u24B8': 'C',
  1286. '\uFF23': 'C',
  1287. '\u0106': 'C',
  1288. '\u0108': 'C',
  1289. '\u010A': 'C',
  1290. '\u010C': 'C',
  1291. '\u00C7': 'C',
  1292. '\u1E08': 'C',
  1293. '\u0187': 'C',
  1294. '\u023B': 'C',
  1295. '\uA73E': 'C',
  1296. '\u24B9': 'D',
  1297. '\uFF24': 'D',
  1298. '\u1E0A': 'D',
  1299. '\u010E': 'D',
  1300. '\u1E0C': 'D',
  1301. '\u1E10': 'D',
  1302. '\u1E12': 'D',
  1303. '\u1E0E': 'D',
  1304. '\u0110': 'D',
  1305. '\u018B': 'D',
  1306. '\u018A': 'D',
  1307. '\u0189': 'D',
  1308. '\uA779': 'D',
  1309. '\u01F1': 'DZ',
  1310. '\u01C4': 'DZ',
  1311. '\u01F2': 'Dz',
  1312. '\u01C5': 'Dz',
  1313. '\u24BA': 'E',
  1314. '\uFF25': 'E',
  1315. '\u00C8': 'E',
  1316. '\u00C9': 'E',
  1317. '\u00CA': 'E',
  1318. '\u1EC0': 'E',
  1319. '\u1EBE': 'E',
  1320. '\u1EC4': 'E',
  1321. '\u1EC2': 'E',
  1322. '\u1EBC': 'E',
  1323. '\u0112': 'E',
  1324. '\u1E14': 'E',
  1325. '\u1E16': 'E',
  1326. '\u0114': 'E',
  1327. '\u0116': 'E',
  1328. '\u00CB': 'E',
  1329. '\u1EBA': 'E',
  1330. '\u011A': 'E',
  1331. '\u0204': 'E',
  1332. '\u0206': 'E',
  1333. '\u1EB8': 'E',
  1334. '\u1EC6': 'E',
  1335. '\u0228': 'E',
  1336. '\u1E1C': 'E',
  1337. '\u0118': 'E',
  1338. '\u1E18': 'E',
  1339. '\u1E1A': 'E',
  1340. '\u0190': 'E',
  1341. '\u018E': 'E',
  1342. '\u24BB': 'F',
  1343. '\uFF26': 'F',
  1344. '\u1E1E': 'F',
  1345. '\u0191': 'F',
  1346. '\uA77B': 'F',
  1347. '\u24BC': 'G',
  1348. '\uFF27': 'G',
  1349. '\u01F4': 'G',
  1350. '\u011C': 'G',
  1351. '\u1E20': 'G',
  1352. '\u011E': 'G',
  1353. '\u0120': 'G',
  1354. '\u01E6': 'G',
  1355. '\u0122': 'G',
  1356. '\u01E4': 'G',
  1357. '\u0193': 'G',
  1358. '\uA7A0': 'G',
  1359. '\uA77D': 'G',
  1360. '\uA77E': 'G',
  1361. '\u24BD': 'H',
  1362. '\uFF28': 'H',
  1363. '\u0124': 'H',
  1364. '\u1E22': 'H',
  1365. '\u1E26': 'H',
  1366. '\u021E': 'H',
  1367. '\u1E24': 'H',
  1368. '\u1E28': 'H',
  1369. '\u1E2A': 'H',
  1370. '\u0126': 'H',
  1371. '\u2C67': 'H',
  1372. '\u2C75': 'H',
  1373. '\uA78D': 'H',
  1374. '\u24BE': 'I',
  1375. '\uFF29': 'I',
  1376. '\u00CC': 'I',
  1377. '\u00CD': 'I',
  1378. '\u00CE': 'I',
  1379. '\u0128': 'I',
  1380. '\u012A': 'I',
  1381. '\u012C': 'I',
  1382. '\u0130': 'I',
  1383. '\u00CF': 'I',
  1384. '\u1E2E': 'I',
  1385. '\u1EC8': 'I',
  1386. '\u01CF': 'I',
  1387. '\u0208': 'I',
  1388. '\u020A': 'I',
  1389. '\u1ECA': 'I',
  1390. '\u012E': 'I',
  1391. '\u1E2C': 'I',
  1392. '\u0197': 'I',
  1393. '\u24BF': 'J',
  1394. '\uFF2A': 'J',
  1395. '\u0134': 'J',
  1396. '\u0248': 'J',
  1397. '\u24C0': 'K',
  1398. '\uFF2B': 'K',
  1399. '\u1E30': 'K',
  1400. '\u01E8': 'K',
  1401. '\u1E32': 'K',
  1402. '\u0136': 'K',
  1403. '\u1E34': 'K',
  1404. '\u0198': 'K',
  1405. '\u2C69': 'K',
  1406. '\uA740': 'K',
  1407. '\uA742': 'K',
  1408. '\uA744': 'K',
  1409. '\uA7A2': 'K',
  1410. '\u24C1': 'L',
  1411. '\uFF2C': 'L',
  1412. '\u013F': 'L',
  1413. '\u0139': 'L',
  1414. '\u013D': 'L',
  1415. '\u1E36': 'L',
  1416. '\u1E38': 'L',
  1417. '\u013B': 'L',
  1418. '\u1E3C': 'L',
  1419. '\u1E3A': 'L',
  1420. '\u0141': 'L',
  1421. '\u023D': 'L',
  1422. '\u2C62': 'L',
  1423. '\u2C60': 'L',
  1424. '\uA748': 'L',
  1425. '\uA746': 'L',
  1426. '\uA780': 'L',
  1427. '\u01C7': 'LJ',
  1428. '\u01C8': 'Lj',
  1429. '\u24C2': 'M',
  1430. '\uFF2D': 'M',
  1431. '\u1E3E': 'M',
  1432. '\u1E40': 'M',
  1433. '\u1E42': 'M',
  1434. '\u2C6E': 'M',
  1435. '\u019C': 'M',
  1436. '\u24C3': 'N',
  1437. '\uFF2E': 'N',
  1438. '\u01F8': 'N',
  1439. '\u0143': 'N',
  1440. '\u00D1': 'N',
  1441. '\u1E44': 'N',
  1442. '\u0147': 'N',
  1443. '\u1E46': 'N',
  1444. '\u0145': 'N',
  1445. '\u1E4A': 'N',
  1446. '\u1E48': 'N',
  1447. '\u0220': 'N',
  1448. '\u019D': 'N',
  1449. '\uA790': 'N',
  1450. '\uA7A4': 'N',
  1451. '\u01CA': 'NJ',
  1452. '\u01CB': 'Nj',
  1453. '\u24C4': 'O',
  1454. '\uFF2F': 'O',
  1455. '\u00D2': 'O',
  1456. '\u00D3': 'O',
  1457. '\u00D4': 'O',
  1458. '\u1ED2': 'O',
  1459. '\u1ED0': 'O',
  1460. '\u1ED6': 'O',
  1461. '\u1ED4': 'O',
  1462. '\u00D5': 'O',
  1463. '\u1E4C': 'O',
  1464. '\u022C': 'O',
  1465. '\u1E4E': 'O',
  1466. '\u014C': 'O',
  1467. '\u1E50': 'O',
  1468. '\u1E52': 'O',
  1469. '\u014E': 'O',
  1470. '\u022E': 'O',
  1471. '\u0230': 'O',
  1472. '\u00D6': 'O',
  1473. '\u022A': 'O',
  1474. '\u1ECE': 'O',
  1475. '\u0150': 'O',
  1476. '\u01D1': 'O',
  1477. '\u020C': 'O',
  1478. '\u020E': 'O',
  1479. '\u01A0': 'O',
  1480. '\u1EDC': 'O',
  1481. '\u1EDA': 'O',
  1482. '\u1EE0': 'O',
  1483. '\u1EDE': 'O',
  1484. '\u1EE2': 'O',
  1485. '\u1ECC': 'O',
  1486. '\u1ED8': 'O',
  1487. '\u01EA': 'O',
  1488. '\u01EC': 'O',
  1489. '\u00D8': 'O',
  1490. '\u01FE': 'O',
  1491. '\u0186': 'O',
  1492. '\u019F': 'O',
  1493. '\uA74A': 'O',
  1494. '\uA74C': 'O',
  1495. '\u01A2': 'OI',
  1496. '\uA74E': 'OO',
  1497. '\u0222': 'OU',
  1498. '\u24C5': 'P',
  1499. '\uFF30': 'P',
  1500. '\u1E54': 'P',
  1501. '\u1E56': 'P',
  1502. '\u01A4': 'P',
  1503. '\u2C63': 'P',
  1504. '\uA750': 'P',
  1505. '\uA752': 'P',
  1506. '\uA754': 'P',
  1507. '\u24C6': 'Q',
  1508. '\uFF31': 'Q',
  1509. '\uA756': 'Q',
  1510. '\uA758': 'Q',
  1511. '\u024A': 'Q',
  1512. '\u24C7': 'R',
  1513. '\uFF32': 'R',
  1514. '\u0154': 'R',
  1515. '\u1E58': 'R',
  1516. '\u0158': 'R',
  1517. '\u0210': 'R',
  1518. '\u0212': 'R',
  1519. '\u1E5A': 'R',
  1520. '\u1E5C': 'R',
  1521. '\u0156': 'R',
  1522. '\u1E5E': 'R',
  1523. '\u024C': 'R',
  1524. '\u2C64': 'R',
  1525. '\uA75A': 'R',
  1526. '\uA7A6': 'R',
  1527. '\uA782': 'R',
  1528. '\u24C8': 'S',
  1529. '\uFF33': 'S',
  1530. '\u1E9E': 'S',
  1531. '\u015A': 'S',
  1532. '\u1E64': 'S',
  1533. '\u015C': 'S',
  1534. '\u1E60': 'S',
  1535. '\u0160': 'S',
  1536. '\u1E66': 'S',
  1537. '\u1E62': 'S',
  1538. '\u1E68': 'S',
  1539. '\u0218': 'S',
  1540. '\u015E': 'S',
  1541. '\u2C7E': 'S',
  1542. '\uA7A8': 'S',
  1543. '\uA784': 'S',
  1544. '\u24C9': 'T',
  1545. '\uFF34': 'T',
  1546. '\u1E6A': 'T',
  1547. '\u0164': 'T',
  1548. '\u1E6C': 'T',
  1549. '\u021A': 'T',
  1550. '\u0162': 'T',
  1551. '\u1E70': 'T',
  1552. '\u1E6E': 'T',
  1553. '\u0166': 'T',
  1554. '\u01AC': 'T',
  1555. '\u01AE': 'T',
  1556. '\u023E': 'T',
  1557. '\uA786': 'T',
  1558. '\uA728': 'TZ',
  1559. '\u24CA': 'U',
  1560. '\uFF35': 'U',
  1561. '\u00D9': 'U',
  1562. '\u00DA': 'U',
  1563. '\u00DB': 'U',
  1564. '\u0168': 'U',
  1565. '\u1E78': 'U',
  1566. '\u016A': 'U',
  1567. '\u1E7A': 'U',
  1568. '\u016C': 'U',
  1569. '\u00DC': 'U',
  1570. '\u01DB': 'U',
  1571. '\u01D7': 'U',
  1572. '\u01D5': 'U',
  1573. '\u01D9': 'U',
  1574. '\u1EE6': 'U',
  1575. '\u016E': 'U',
  1576. '\u0170': 'U',
  1577. '\u01D3': 'U',
  1578. '\u0214': 'U',
  1579. '\u0216': 'U',
  1580. '\u01AF': 'U',
  1581. '\u1EEA': 'U',
  1582. '\u1EE8': 'U',
  1583. '\u1EEE': 'U',
  1584. '\u1EEC': 'U',
  1585. '\u1EF0': 'U',
  1586. '\u1EE4': 'U',
  1587. '\u1E72': 'U',
  1588. '\u0172': 'U',
  1589. '\u1E76': 'U',
  1590. '\u1E74': 'U',
  1591. '\u0244': 'U',
  1592. '\u24CB': 'V',
  1593. '\uFF36': 'V',
  1594. '\u1E7C': 'V',
  1595. '\u1E7E': 'V',
  1596. '\u01B2': 'V',
  1597. '\uA75E': 'V',
  1598. '\u0245': 'V',
  1599. '\uA760': 'VY',
  1600. '\u24CC': 'W',
  1601. '\uFF37': 'W',
  1602. '\u1E80': 'W',
  1603. '\u1E82': 'W',
  1604. '\u0174': 'W',
  1605. '\u1E86': 'W',
  1606. '\u1E84': 'W',
  1607. '\u1E88': 'W',
  1608. '\u2C72': 'W',
  1609. '\u24CD': 'X',
  1610. '\uFF38': 'X',
  1611. '\u1E8A': 'X',
  1612. '\u1E8C': 'X',
  1613. '\u24CE': 'Y',
  1614. '\uFF39': 'Y',
  1615. '\u1EF2': 'Y',
  1616. '\u00DD': 'Y',
  1617. '\u0176': 'Y',
  1618. '\u1EF8': 'Y',
  1619. '\u0232': 'Y',
  1620. '\u1E8E': 'Y',
  1621. '\u0178': 'Y',
  1622. '\u1EF6': 'Y',
  1623. '\u1EF4': 'Y',
  1624. '\u01B3': 'Y',
  1625. '\u024E': 'Y',
  1626. '\u1EFE': 'Y',
  1627. '\u24CF': 'Z',
  1628. '\uFF3A': 'Z',
  1629. '\u0179': 'Z',
  1630. '\u1E90': 'Z',
  1631. '\u017B': 'Z',
  1632. '\u017D': 'Z',
  1633. '\u1E92': 'Z',
  1634. '\u1E94': 'Z',
  1635. '\u01B5': 'Z',
  1636. '\u0224': 'Z',
  1637. '\u2C7F': 'Z',
  1638. '\u2C6B': 'Z',
  1639. '\uA762': 'Z',
  1640. '\u24D0': 'a',
  1641. '\uFF41': 'a',
  1642. '\u1E9A': 'a',
  1643. '\u00E0': 'a',
  1644. '\u00E1': 'a',
  1645. '\u00E2': 'a',
  1646. '\u1EA7': 'a',
  1647. '\u1EA5': 'a',
  1648. '\u1EAB': 'a',
  1649. '\u1EA9': 'a',
  1650. '\u00E3': 'a',
  1651. '\u0101': 'a',
  1652. '\u0103': 'a',
  1653. '\u1EB1': 'a',
  1654. '\u1EAF': 'a',
  1655. '\u1EB5': 'a',
  1656. '\u1EB3': 'a',
  1657. '\u0227': 'a',
  1658. '\u01E1': 'a',
  1659. '\u00E4': 'a',
  1660. '\u01DF': 'a',
  1661. '\u1EA3': 'a',
  1662. '\u00E5': 'a',
  1663. '\u01FB': 'a',
  1664. '\u01CE': 'a',
  1665. '\u0201': 'a',
  1666. '\u0203': 'a',
  1667. '\u1EA1': 'a',
  1668. '\u1EAD': 'a',
  1669. '\u1EB7': 'a',
  1670. '\u1E01': 'a',
  1671. '\u0105': 'a',
  1672. '\u2C65': 'a',
  1673. '\u0250': 'a',
  1674. '\uA733': 'aa',
  1675. '\u00E6': 'ae',
  1676. '\u01FD': 'ae',
  1677. '\u01E3': 'ae',
  1678. '\uA735': 'ao',
  1679. '\uA737': 'au',
  1680. '\uA739': 'av',
  1681. '\uA73B': 'av',
  1682. '\uA73D': 'ay',
  1683. '\u24D1': 'b',
  1684. '\uFF42': 'b',
  1685. '\u1E03': 'b',
  1686. '\u1E05': 'b',
  1687. '\u1E07': 'b',
  1688. '\u0180': 'b',
  1689. '\u0183': 'b',
  1690. '\u0253': 'b',
  1691. '\u24D2': 'c',
  1692. '\uFF43': 'c',
  1693. '\u0107': 'c',
  1694. '\u0109': 'c',
  1695. '\u010B': 'c',
  1696. '\u010D': 'c',
  1697. '\u00E7': 'c',
  1698. '\u1E09': 'c',
  1699. '\u0188': 'c',
  1700. '\u023C': 'c',
  1701. '\uA73F': 'c',
  1702. '\u2184': 'c',
  1703. '\u24D3': 'd',
  1704. '\uFF44': 'd',
  1705. '\u1E0B': 'd',
  1706. '\u010F': 'd',
  1707. '\u1E0D': 'd',
  1708. '\u1E11': 'd',
  1709. '\u1E13': 'd',
  1710. '\u1E0F': 'd',
  1711. '\u0111': 'd',
  1712. '\u018C': 'd',
  1713. '\u0256': 'd',
  1714. '\u0257': 'd',
  1715. '\uA77A': 'd',
  1716. '\u01F3': 'dz',
  1717. '\u01C6': 'dz',
  1718. '\u24D4': 'e',
  1719. '\uFF45': 'e',
  1720. '\u00E8': 'e',
  1721. '\u00E9': 'e',
  1722. '\u00EA': 'e',
  1723. '\u1EC1': 'e',
  1724. '\u1EBF': 'e',
  1725. '\u1EC5': 'e',
  1726. '\u1EC3': 'e',
  1727. '\u1EBD': 'e',
  1728. '\u0113': 'e',
  1729. '\u1E15': 'e',
  1730. '\u1E17': 'e',
  1731. '\u0115': 'e',
  1732. '\u0117': 'e',
  1733. '\u00EB': 'e',
  1734. '\u1EBB': 'e',
  1735. '\u011B': 'e',
  1736. '\u0205': 'e',
  1737. '\u0207': 'e',
  1738. '\u1EB9': 'e',
  1739. '\u1EC7': 'e',
  1740. '\u0229': 'e',
  1741. '\u1E1D': 'e',
  1742. '\u0119': 'e',
  1743. '\u1E19': 'e',
  1744. '\u1E1B': 'e',
  1745. '\u0247': 'e',
  1746. '\u025B': 'e',
  1747. '\u01DD': 'e',
  1748. '\u24D5': 'f',
  1749. '\uFF46': 'f',
  1750. '\u1E1F': 'f',
  1751. '\u0192': 'f',
  1752. '\uA77C': 'f',
  1753. '\u24D6': 'g',
  1754. '\uFF47': 'g',
  1755. '\u01F5': 'g',
  1756. '\u011D': 'g',
  1757. '\u1E21': 'g',
  1758. '\u011F': 'g',
  1759. '\u0121': 'g',
  1760. '\u01E7': 'g',
  1761. '\u0123': 'g',
  1762. '\u01E5': 'g',
  1763. '\u0260': 'g',
  1764. '\uA7A1': 'g',
  1765. '\u1D79': 'g',
  1766. '\uA77F': 'g',
  1767. '\u24D7': 'h',
  1768. '\uFF48': 'h',
  1769. '\u0125': 'h',
  1770. '\u1E23': 'h',
  1771. '\u1E27': 'h',
  1772. '\u021F': 'h',
  1773. '\u1E25': 'h',
  1774. '\u1E29': 'h',
  1775. '\u1E2B': 'h',
  1776. '\u1E96': 'h',
  1777. '\u0127': 'h',
  1778. '\u2C68': 'h',
  1779. '\u2C76': 'h',
  1780. '\u0265': 'h',
  1781. '\u0195': 'hv',
  1782. '\u24D8': 'i',
  1783. '\uFF49': 'i',
  1784. '\u00EC': 'i',
  1785. '\u00ED': 'i',
  1786. '\u00EE': 'i',
  1787. '\u0129': 'i',
  1788. '\u012B': 'i',
  1789. '\u012D': 'i',
  1790. '\u00EF': 'i',
  1791. '\u1E2F': 'i',
  1792. '\u1EC9': 'i',
  1793. '\u01D0': 'i',
  1794. '\u0209': 'i',
  1795. '\u020B': 'i',
  1796. '\u1ECB': 'i',
  1797. '\u012F': 'i',
  1798. '\u1E2D': 'i',
  1799. '\u0268': 'i',
  1800. '\u0131': 'i',
  1801. '\u24D9': 'j',
  1802. '\uFF4A': 'j',
  1803. '\u0135': 'j',
  1804. '\u01F0': 'j',
  1805. '\u0249': 'j',
  1806. '\u24DA': 'k',
  1807. '\uFF4B': 'k',
  1808. '\u1E31': 'k',
  1809. '\u01E9': 'k',
  1810. '\u1E33': 'k',
  1811. '\u0137': 'k',
  1812. '\u1E35': 'k',
  1813. '\u0199': 'k',
  1814. '\u2C6A': 'k',
  1815. '\uA741': 'k',
  1816. '\uA743': 'k',
  1817. '\uA745': 'k',
  1818. '\uA7A3': 'k',
  1819. '\u24DB': 'l',
  1820. '\uFF4C': 'l',
  1821. '\u0140': 'l',
  1822. '\u013A': 'l',
  1823. '\u013E': 'l',
  1824. '\u1E37': 'l',
  1825. '\u1E39': 'l',
  1826. '\u013C': 'l',
  1827. '\u1E3D': 'l',
  1828. '\u1E3B': 'l',
  1829. '\u017F': 'l',
  1830. '\u0142': 'l',
  1831. '\u019A': 'l',
  1832. '\u026B': 'l',
  1833. '\u2C61': 'l',
  1834. '\uA749': 'l',
  1835. '\uA781': 'l',
  1836. '\uA747': 'l',
  1837. '\u01C9': 'lj',
  1838. '\u24DC': 'm',
  1839. '\uFF4D': 'm',
  1840. '\u1E3F': 'm',
  1841. '\u1E41': 'm',
  1842. '\u1E43': 'm',
  1843. '\u0271': 'm',
  1844. '\u026F': 'm',
  1845. '\u24DD': 'n',
  1846. '\uFF4E': 'n',
  1847. '\u01F9': 'n',
  1848. '\u0144': 'n',
  1849. '\u00F1': 'n',
  1850. '\u1E45': 'n',
  1851. '\u0148': 'n',
  1852. '\u1E47': 'n',
  1853. '\u0146': 'n',
  1854. '\u1E4B': 'n',
  1855. '\u1E49': 'n',
  1856. '\u019E': 'n',
  1857. '\u0272': 'n',
  1858. '\u0149': 'n',
  1859. '\uA791': 'n',
  1860. '\uA7A5': 'n',
  1861. '\u01CC': 'nj',
  1862. '\u24DE': 'o',
  1863. '\uFF4F': 'o',
  1864. '\u00F2': 'o',
  1865. '\u00F3': 'o',
  1866. '\u00F4': 'o',
  1867. '\u1ED3': 'o',
  1868. '\u1ED1': 'o',
  1869. '\u1ED7': 'o',
  1870. '\u1ED5': 'o',
  1871. '\u00F5': 'o',
  1872. '\u1E4D': 'o',
  1873. '\u022D': 'o',
  1874. '\u1E4F': 'o',
  1875. '\u014D': 'o',
  1876. '\u1E51': 'o',
  1877. '\u1E53': 'o',
  1878. '\u014F': 'o',
  1879. '\u022F': 'o',
  1880. '\u0231': 'o',
  1881. '\u00F6': 'o',
  1882. '\u022B': 'o',
  1883. '\u1ECF': 'o',
  1884. '\u0151': 'o',
  1885. '\u01D2': 'o',
  1886. '\u020D': 'o',
  1887. '\u020F': 'o',
  1888. '\u01A1': 'o',
  1889. '\u1EDD': 'o',
  1890. '\u1EDB': 'o',
  1891. '\u1EE1': 'o',
  1892. '\u1EDF': 'o',
  1893. '\u1EE3': 'o',
  1894. '\u1ECD': 'o',
  1895. '\u1ED9': 'o',
  1896. '\u01EB': 'o',
  1897. '\u01ED': 'o',
  1898. '\u00F8': 'o',
  1899. '\u01FF': 'o',
  1900. '\u0254': 'o',
  1901. '\uA74B': 'o',
  1902. '\uA74D': 'o',
  1903. '\u0275': 'o',
  1904. '\u01A3': 'oi',
  1905. '\u0223': 'ou',
  1906. '\uA74F': 'oo',
  1907. '\u24DF': 'p',
  1908. '\uFF50': 'p',
  1909. '\u1E55': 'p',
  1910. '\u1E57': 'p',
  1911. '\u01A5': 'p',
  1912. '\u1D7D': 'p',
  1913. '\uA751': 'p',
  1914. '\uA753': 'p',
  1915. '\uA755': 'p',
  1916. '\u24E0': 'q',
  1917. '\uFF51': 'q',
  1918. '\u024B': 'q',
  1919. '\uA757': 'q',
  1920. '\uA759': 'q',
  1921. '\u24E1': 'r',
  1922. '\uFF52': 'r',
  1923. '\u0155': 'r',
  1924. '\u1E59': 'r',
  1925. '\u0159': 'r',
  1926. '\u0211': 'r',
  1927. '\u0213': 'r',
  1928. '\u1E5B': 'r',
  1929. '\u1E5D': 'r',
  1930. '\u0157': 'r',
  1931. '\u1E5F': 'r',
  1932. '\u024D': 'r',
  1933. '\u027D': 'r',
  1934. '\uA75B': 'r',
  1935. '\uA7A7': 'r',
  1936. '\uA783': 'r',
  1937. '\u24E2': 's',
  1938. '\uFF53': 's',
  1939. '\u00DF': 's',
  1940. '\u015B': 's',
  1941. '\u1E65': 's',
  1942. '\u015D': 's',
  1943. '\u1E61': 's',
  1944. '\u0161': 's',
  1945. '\u1E67': 's',
  1946. '\u1E63': 's',
  1947. '\u1E69': 's',
  1948. '\u0219': 's',
  1949. '\u015F': 's',
  1950. '\u023F': 's',
  1951. '\uA7A9': 's',
  1952. '\uA785': 's',
  1953. '\u1E9B': 's',
  1954. '\u24E3': 't',
  1955. '\uFF54': 't',
  1956. '\u1E6B': 't',
  1957. '\u1E97': 't',
  1958. '\u0165': 't',
  1959. '\u1E6D': 't',
  1960. '\u021B': 't',
  1961. '\u0163': 't',
  1962. '\u1E71': 't',
  1963. '\u1E6F': 't',
  1964. '\u0167': 't',
  1965. '\u01AD': 't',
  1966. '\u0288': 't',
  1967. '\u2C66': 't',
  1968. '\uA787': 't',
  1969. '\uA729': 'tz',
  1970. '\u24E4': 'u',
  1971. '\uFF55': 'u',
  1972. '\u00F9': 'u',
  1973. '\u00FA': 'u',
  1974. '\u00FB': 'u',
  1975. '\u0169': 'u',
  1976. '\u1E79': 'u',
  1977. '\u016B': 'u',
  1978. '\u1E7B': 'u',
  1979. '\u016D': 'u',
  1980. '\u00FC': 'u',
  1981. '\u01DC': 'u',
  1982. '\u01D8': 'u',
  1983. '\u01D6': 'u',
  1984. '\u01DA': 'u',
  1985. '\u1EE7': 'u',
  1986. '\u016F': 'u',
  1987. '\u0171': 'u',
  1988. '\u01D4': 'u',
  1989. '\u0215': 'u',
  1990. '\u0217': 'u',
  1991. '\u01B0': 'u',
  1992. '\u1EEB': 'u',
  1993. '\u1EE9': 'u',
  1994. '\u1EEF': 'u',
  1995. '\u1EED': 'u',
  1996. '\u1EF1': 'u',
  1997. '\u1EE5': 'u',
  1998. '\u1E73': 'u',
  1999. '\u0173': 'u',
  2000. '\u1E77': 'u',
  2001. '\u1E75': 'u',
  2002. '\u0289': 'u',
  2003. '\u24E5': 'v',
  2004. '\uFF56': 'v',
  2005. '\u1E7D': 'v',
  2006. '\u1E7F': 'v',
  2007. '\u028B': 'v',
  2008. '\uA75F': 'v',
  2009. '\u028C': 'v',
  2010. '\uA761': 'vy',
  2011. '\u24E6': 'w',
  2012. '\uFF57': 'w',
  2013. '\u1E81': 'w',
  2014. '\u1E83': 'w',
  2015. '\u0175': 'w',
  2016. '\u1E87': 'w',
  2017. '\u1E85': 'w',
  2018. '\u1E98': 'w',
  2019. '\u1E89': 'w',
  2020. '\u2C73': 'w',
  2021. '\u24E7': 'x',
  2022. '\uFF58': 'x',
  2023. '\u1E8B': 'x',
  2024. '\u1E8D': 'x',
  2025. '\u24E8': 'y',
  2026. '\uFF59': 'y',
  2027. '\u1EF3': 'y',
  2028. '\u00FD': 'y',
  2029. '\u0177': 'y',
  2030. '\u1EF9': 'y',
  2031. '\u0233': 'y',
  2032. '\u1E8F': 'y',
  2033. '\u00FF': 'y',
  2034. '\u1EF7': 'y',
  2035. '\u1E99': 'y',
  2036. '\u1EF5': 'y',
  2037. '\u01B4': 'y',
  2038. '\u024F': 'y',
  2039. '\u1EFF': 'y',
  2040. '\u24E9': 'z',
  2041. '\uFF5A': 'z',
  2042. '\u017A': 'z',
  2043. '\u1E91': 'z',
  2044. '\u017C': 'z',
  2045. '\u017E': 'z',
  2046. '\u1E93': 'z',
  2047. '\u1E95': 'z',
  2048. '\u01B6': 'z',
  2049. '\u0225': 'z',
  2050. '\u0240': 'z',
  2051. '\u2C6C': 'z',
  2052. '\uA763': 'z',
  2053. '\u0386': '\u0391',
  2054. '\u0388': '\u0395',
  2055. '\u0389': '\u0397',
  2056. '\u038A': '\u0399',
  2057. '\u03AA': '\u0399',
  2058. '\u038C': '\u039F',
  2059. '\u038E': '\u03A5',
  2060. '\u03AB': '\u03A5',
  2061. '\u038F': '\u03A9',
  2062. '\u03AC': '\u03B1',
  2063. '\u03AD': '\u03B5',
  2064. '\u03AE': '\u03B7',
  2065. '\u03AF': '\u03B9',
  2066. '\u03CA': '\u03B9',
  2067. '\u0390': '\u03B9',
  2068. '\u03CC': '\u03BF',
  2069. '\u03CD': '\u03C5',
  2070. '\u03CB': '\u03C5',
  2071. '\u03B0': '\u03C5',
  2072. '\u03C9': '\u03C9',
  2073. '\u03C2': '\u03C3'
  2074. };
  2075. return diacritics;
  2076. });
  2077. define('select2/data/base',[
  2078. '../utils'
  2079. ], function (Utils) {
  2080. function BaseAdapter ($element, options) {
  2081. BaseAdapter.__super__.constructor.call(this);
  2082. }
  2083. Utils.Extend(BaseAdapter, Utils.Observable);
  2084. BaseAdapter.prototype.current = function (callback) {
  2085. throw new Error('The `current` method must be defined in child classes.');
  2086. };
  2087. BaseAdapter.prototype.query = function (params, callback) {
  2088. throw new Error('The `query` method must be defined in child classes.');
  2089. };
  2090. BaseAdapter.prototype.bind = function (container, $container) {
  2091. // Can be implemented in subclasses
  2092. };
  2093. BaseAdapter.prototype.destroy = function () {
  2094. // Can be implemented in subclasses
  2095. };
  2096. BaseAdapter.prototype.generateResultId = function (container, data) {
  2097. var id = container.id + '-result-';
  2098. id += Utils.generateChars(4);
  2099. if (data.id != null) {
  2100. id += '-' + data.id.toString();
  2101. } else {
  2102. id += '-' + Utils.generateChars(4);
  2103. }
  2104. return id;
  2105. };
  2106. return BaseAdapter;
  2107. });
  2108. define('select2/data/select',[
  2109. './base',
  2110. '../utils',
  2111. 'jquery'
  2112. ], function (BaseAdapter, Utils, $) {
  2113. function SelectAdapter ($element, options) {
  2114. this.$element = $element;
  2115. this.options = options;
  2116. SelectAdapter.__super__.constructor.call(this);
  2117. }
  2118. Utils.Extend(SelectAdapter, BaseAdapter);
  2119. SelectAdapter.prototype.current = function (callback) {
  2120. var data = [];
  2121. var self = this;
  2122. this.$element.find(':selected').each(function () {
  2123. var $option = $(this);
  2124. var option = self.item($option);
  2125. data.push(option);
  2126. });
  2127. callback(data);
  2128. };
  2129. SelectAdapter.prototype.select = function (data) {
  2130. var self = this;
  2131. if (this.$element.prop('multiple')) {
  2132. this.current(function (currentData) {
  2133. var val = [];
  2134. data = [data];
  2135. data.push.apply(data, currentData);
  2136. for (var d = 0; d < data.length; d++) {
  2137. id = data[d].id;
  2138. if (val.indexOf(id) === -1) {
  2139. val.push(id);
  2140. }
  2141. }
  2142. self.$element.val(val);
  2143. self.$element.trigger('change');
  2144. });
  2145. } else {
  2146. var val = data.id;
  2147. this.$element.val(val);
  2148. this.$element.trigger('change');
  2149. }
  2150. };
  2151. SelectAdapter.prototype.unselect = function (data) {
  2152. var self = this;
  2153. if (!this.$element.prop('multiple')) {
  2154. return;
  2155. }
  2156. this.current(function (currentData) {
  2157. var val = [];
  2158. for (var d = 0; d < currentData.length; d++) {
  2159. id = currentData[d].id;
  2160. if (id !== data.id && val.indexOf(id) === -1) {
  2161. val.push(id);
  2162. }
  2163. }
  2164. self.$element.val(val);
  2165. self.$element.trigger('change');
  2166. });
  2167. };
  2168. SelectAdapter.prototype.bind = function (container, $container) {
  2169. var self = this;
  2170. this.container = container;
  2171. container.on('select', function (params) {
  2172. self.select(params.data);
  2173. });
  2174. container.on('unselect', function (params) {
  2175. self.unselect(params.data);
  2176. });
  2177. };
  2178. SelectAdapter.prototype.destroy = function () {
  2179. // Remove anything added to child elements
  2180. this.$element.find('*').each(function () {
  2181. // Remove any custom data set by Select2
  2182. $.removeData(this, 'data');
  2183. });
  2184. };
  2185. SelectAdapter.prototype.query = function (params, callback) {
  2186. var data = [];
  2187. var self = this;
  2188. var $options = this.$element.children();
  2189. $options.each(function () {
  2190. var $option = $(this);
  2191. if (!$option.is('option') && !$option.is('optgroup')) {
  2192. return;
  2193. }
  2194. var option = self.item($option);
  2195. var matches = self.matches(params, option);
  2196. if (matches !== null) {
  2197. data.push(matches);
  2198. }
  2199. });
  2200. callback(data);
  2201. };
  2202. SelectAdapter.prototype.option = function (data) {
  2203. var option = document.createElement('option');
  2204. option.value = data.id;
  2205. if (data.disabled) {
  2206. option.disabled = true;
  2207. }
  2208. if (data.selected) {
  2209. option.selected = true;
  2210. }
  2211. option.innerText = data.text;
  2212. var $option = $(option);
  2213. var normalizedData = this._normalizeItem(data);
  2214. // Override the option's data with the combined data
  2215. $.data(option, 'data', normalizedData);
  2216. return $option;
  2217. };
  2218. SelectAdapter.prototype.item = function ($option) {
  2219. var data = {};
  2220. data = $.data($option[0], 'data');
  2221. if (data != null) {
  2222. return data;
  2223. }
  2224. if ($option.is('option')) {
  2225. data = {
  2226. id: $option.val(),
  2227. text: $option.html(),
  2228. disabled: $option.prop('disabled'),
  2229. selected: $option.prop('selected')
  2230. };
  2231. } else if ($option.is('optgroup')) {
  2232. data = {
  2233. text: $option.attr('label'),
  2234. children: []
  2235. };
  2236. var $children = $option.children('option');
  2237. var children = [];
  2238. for (var c = 0; c < $children.length; c++) {
  2239. var $child = $($children[c]);
  2240. var child = this.item($child);
  2241. children.push(child);
  2242. }
  2243. data.children = children;
  2244. }
  2245. data = this._normalizeItem(data);
  2246. $.data($option[0], 'data', data);
  2247. return data;
  2248. };
  2249. SelectAdapter.prototype._normalizeItem = function (item) {
  2250. if (item.text == null) {
  2251. item = {
  2252. id: item,
  2253. text: item
  2254. };
  2255. }
  2256. var defaults = {
  2257. selected: false,
  2258. disabled: false
  2259. };
  2260. if (item.id != null) {
  2261. item.id = item.id.toString();
  2262. }
  2263. if (item.text != null) {
  2264. item.text = item.text.toString();
  2265. }
  2266. if (item._resultId == null && item.id && this.container != null) {
  2267. item._resultId = this.generateResultId(this.container, item);
  2268. }
  2269. return $.extend({}, defaults, item);
  2270. };
  2271. SelectAdapter.prototype.matches = function (params, data) {
  2272. var matcher = this.options.get('matcher');
  2273. return matcher(params, data);
  2274. };
  2275. return SelectAdapter;
  2276. });
  2277. define('select2/data/array',[
  2278. './select',
  2279. '../utils',
  2280. 'jquery'
  2281. ], function (SelectAdapter, Utils, $) {
  2282. function ArrayAdapter ($element, options) {
  2283. var data = options.get('data');
  2284. ArrayAdapter.__super__.constructor.call(this, $element, options);
  2285. this.convertToOptions(data);
  2286. }
  2287. Utils.Extend(ArrayAdapter, SelectAdapter);
  2288. ArrayAdapter.prototype.select = function (data) {
  2289. var $option = this.$element.find('option[value="' + data.id + '"]');
  2290. if ($option.length === 0) {
  2291. $option = this.option(data);
  2292. this.$element.append($option);
  2293. }
  2294. ArrayAdapter.__super__.select.call(this, data);
  2295. };
  2296. ArrayAdapter.prototype.convertToOptions = function (data) {
  2297. var self = this;
  2298. var $existing = this.$element.find('option');
  2299. var existingIds = $existing.map(function () {
  2300. return self.item($(this)).id;
  2301. }).get();
  2302. // Filter out all items except for the one passed in the argument
  2303. function onlyItem (item) {
  2304. return function () {
  2305. return $(this).val() == item.id;
  2306. };
  2307. }
  2308. for (var d = 0; d < data.length; d++) {
  2309. var item = data[d];
  2310. item.id = item.id.toString();
  2311. // Skip items which were pre-loaded, only merge the data
  2312. if (existingIds.indexOf(item.id) >= 0) {
  2313. var $existingOption = $existing.filter(onlyItem(item));
  2314. var existingData = this.item($existingOption);
  2315. var newData = $.extend(true, {}, existingData, item);
  2316. var $newOption = this.option(existingData);
  2317. $existingOption.replaceWith($newOption);
  2318. continue;
  2319. }
  2320. var $option = this.option(item);
  2321. this.$element.append($option);
  2322. }
  2323. };
  2324. return ArrayAdapter;
  2325. });
  2326. define('select2/data/ajax',[
  2327. './array',
  2328. '../utils',
  2329. 'jquery'
  2330. ], function (ArrayAdapter, Utils, $) {
  2331. function AjaxAdapter ($element, options) {
  2332. this.ajaxOptions = options.get('ajax');
  2333. if (this.ajaxOptions.processResults != null) {
  2334. this.processResults = this.ajaxOptions.processResults;
  2335. }
  2336. ArrayAdapter.__super__.constructor.call(this, $element, options);
  2337. }
  2338. Utils.Extend(AjaxAdapter, ArrayAdapter);
  2339. AjaxAdapter.prototype.processResults = function (results) {
  2340. return results;
  2341. };
  2342. AjaxAdapter.prototype.query = function (params, callback) {
  2343. var matches = [];
  2344. var self = this;
  2345. if (this._request) {
  2346. this._request.abort();
  2347. this._request = null;
  2348. }
  2349. var options = $.extend({
  2350. type: 'GET'
  2351. }, this.ajaxOptions);
  2352. if (typeof options.url === 'function') {
  2353. options.url = options.url(params);
  2354. }
  2355. if (typeof options.data === 'function') {
  2356. options.data = options.data(params);
  2357. }
  2358. function request () {
  2359. var $request = $.ajax(options);
  2360. $request.success(function (data) {
  2361. var results = self.processResults(data);
  2362. callback(results);
  2363. });
  2364. self._request = $request;
  2365. }
  2366. if (this.ajaxOptions.delay && params.term !== '') {
  2367. if (this._queryTimeout) {
  2368. window.clearTimeout(this._queryTimeout);
  2369. }
  2370. this._queryTimeout = window.setTimeout(request, this.ajaxOptions.delay);
  2371. } else {
  2372. request();
  2373. }
  2374. };
  2375. return AjaxAdapter;
  2376. });
  2377. define('select2/data/tags',[
  2378. ], function () {
  2379. function Tags (decorated, $element, options) {
  2380. var tags = options.get('tags');
  2381. decorated.call(this, $element, options);
  2382. if ($.isArray(tags)) {
  2383. for (var t = 0; t < tags.length; t++) {
  2384. var tag = tags[t];
  2385. var item = this._normalizeItem(tag);
  2386. var $option = this.option(item);
  2387. this.$element.append($option);
  2388. }
  2389. }
  2390. }
  2391. Tags.prototype.query = function (decorated, params, callback) {
  2392. var self = this;
  2393. this._removeOldTags();
  2394. if (params.term == null || params.term === '' || params.page != null) {
  2395. decorated.call(this, params, callback);
  2396. return;
  2397. }
  2398. function wrapper (data, child) {
  2399. for (var i = 0; i < data.length; i++) {
  2400. var option = data[i];
  2401. var checkChildren = (
  2402. option.children != null && !wrapper(option.children, true)
  2403. );
  2404. var checkText = option.text === params.term;
  2405. if (checkText || checkChildren) {
  2406. if (child) {
  2407. return false;
  2408. }
  2409. callback(data);
  2410. return;
  2411. }
  2412. }
  2413. if (child) {
  2414. return true;
  2415. }
  2416. var tag = self.createTag(params);
  2417. if (tag != null) {
  2418. var $option = self.option(tag);
  2419. $option.attr('data-select2-tag', true);
  2420. self.$element.append($option);
  2421. self.insertTag(data, tag);
  2422. }
  2423. callback(data);
  2424. }
  2425. decorated.call(this, params, wrapper);
  2426. };
  2427. Tags.prototype.createTag = function (decorated, params) {
  2428. return {
  2429. id: params.term,
  2430. text: params.term
  2431. };
  2432. };
  2433. Tags.prototype.insertTag = function (_, data, tag) {
  2434. data.unshift(tag);
  2435. };
  2436. Tags.prototype._removeOldTags = function (_) {
  2437. var tag = this._lastTag;
  2438. var $options = this.$element.find('option[data-select2-tag]');
  2439. $options.each(function () {
  2440. if (this.selected) {
  2441. return;
  2442. }
  2443. $(this).remove();
  2444. });
  2445. };
  2446. return Tags;
  2447. });
  2448. define('select2/data/minimumInputLength',[
  2449. ], function () {
  2450. function MinimumInputLength (decorated, $e, options) {
  2451. this.minimumInputLength = options.get('minimumInputLength');
  2452. decorated.call(this, $e, options);
  2453. }
  2454. MinimumInputLength.prototype.query = function (decorated, params, callback) {
  2455. params.term = params.term || '';
  2456. if (params.term.length < this.minimumInputLength) {
  2457. this.trigger('results:message', {
  2458. message: 'inputTooShort',
  2459. args: {
  2460. minimum: this.minimumInputLength,
  2461. input: params.term,
  2462. params: params
  2463. }
  2464. });
  2465. return;
  2466. }
  2467. decorated.call(this, params, callback);
  2468. };
  2469. return MinimumInputLength;
  2470. });
  2471. define('select2/dropdown',[
  2472. './utils'
  2473. ], function (Utils) {
  2474. function Dropdown ($element, options) {
  2475. this.$element = $element;
  2476. }
  2477. Utils.Extend(Dropdown, Utils.Observable);
  2478. Dropdown.prototype.render = function () {
  2479. var $dropdown = $(
  2480. '<span class="select2-dropdown">' +
  2481. '<span class="select2-results"></span>' +
  2482. '</span>'
  2483. );
  2484. this.$dropdown = $dropdown;
  2485. return $dropdown;
  2486. };
  2487. Dropdown.prototype.position = function ($dropdown, $container) {
  2488. // Should be implmented in subclasses
  2489. };
  2490. Dropdown.prototype.destroy = function () {
  2491. // Remove the dropdown from the DOM
  2492. this.$dropdown.remove();
  2493. };
  2494. Dropdown.prototype.bind = function (container, $container) {
  2495. // Can be implemented in subclasses
  2496. };
  2497. return Dropdown;
  2498. });
  2499. define('select2/dropdown/search',[
  2500. '../utils'
  2501. ], function (Utils) {
  2502. function Search () { }
  2503. Search.prototype.render = function (decorated) {
  2504. var $rendered = decorated.call(this);
  2505. var $search = $(
  2506. '<span class="select2-search select2-search--dropdown">' +
  2507. '<input class="select2-search__field" type="search" tabindex="-1"' +
  2508. ' role="textbox" />' +
  2509. '</span>'
  2510. );
  2511. this.$searchContainer = $search;
  2512. this.$search = $search.find('input');
  2513. $rendered.prepend($search);
  2514. return $rendered;
  2515. };
  2516. Search.prototype.bind = function (decorated, container, $container) {
  2517. var self = this;
  2518. decorated.call(this, container, $container);
  2519. this.$search.on('keydown', function (evt) {
  2520. self.trigger('keypress', evt);
  2521. self._keyUpPrevented = evt.isDefaultPrevented();
  2522. });
  2523. this.$search.on('keyup', function (evt) {
  2524. self.handleSearch(evt);
  2525. });
  2526. container.on('open', function () {
  2527. self.$search.attr('tabindex', 0);
  2528. self.$search.focus();
  2529. });
  2530. container.on('close', function () {
  2531. self.$search.attr('tabindex', -1);
  2532. self.$search.val('');
  2533. });
  2534. container.on('results:all', function (params) {
  2535. if (params.query.term == null || params.query.term === '') {
  2536. var showSearch = self.showSearch(params);
  2537. if (showSearch) {
  2538. self.$searchContainer.removeClass('select2-search--hide');
  2539. } else {
  2540. self.$searchContainer.addClass('select2-search--hide');
  2541. }
  2542. }
  2543. });
  2544. };
  2545. Search.prototype.handleSearch = function (evt) {
  2546. if (!this._keyUpPrevented) {
  2547. var input = this.$search.val();
  2548. this.trigger('query', {
  2549. term: input
  2550. });
  2551. }
  2552. this._keyUpPrevented = false;
  2553. };
  2554. Search.prototype.showSearch = function (_, params) {
  2555. return true;
  2556. };
  2557. return Search;
  2558. });
  2559. define('select2/dropdown/hidePlaceholder',[
  2560. ], function () {
  2561. function HidePlaceholder (decorated, $element, options, dataAdapter) {
  2562. this.placeholder = this.normalizePlaceholder(options.get('placeholder'));
  2563. decorated.call(this, $element, options, dataAdapter);
  2564. }
  2565. HidePlaceholder.prototype.append = function (decorated, data) {
  2566. data = this.removePlaceholder(data);
  2567. decorated.call(this, data);
  2568. };
  2569. HidePlaceholder.prototype.normalizePlaceholder = function (_, placeholder) {
  2570. if (typeof placeholder === 'string') {
  2571. placeholder = {
  2572. id: '',
  2573. text: placeholder
  2574. };
  2575. }
  2576. return placeholder;
  2577. };
  2578. HidePlaceholder.prototype.removePlaceholder = function (_, data) {
  2579. var modifiedData = data.slice(0);
  2580. for (var d = data.length - 1; d >= 0; d--) {
  2581. var item = data[d];
  2582. if (this.placeholder.id === item.id) {
  2583. modifiedData.splice(d, 1);
  2584. }
  2585. }
  2586. return modifiedData;
  2587. };
  2588. return HidePlaceholder;
  2589. });
  2590. define('select2/dropdown/infiniteScroll',[
  2591. 'jquery'
  2592. ], function ($) {
  2593. function InfiniteScroll (decorated, $element, options, dataAdapter) {
  2594. this.lastParams = {};
  2595. decorated.call(this, $element, options, dataAdapter);
  2596. this.$loadingMore = this.createLoadingMore();
  2597. this.loading = false;
  2598. }
  2599. InfiniteScroll.prototype.append = function (decorated, data) {
  2600. this.$loadingMore.remove();
  2601. decorated.call(this, data);
  2602. if (data.length > 0) {
  2603. this.$results.append(this.$loadingMore);
  2604. }
  2605. this.loading = false;
  2606. };
  2607. InfiniteScroll.prototype.bind = function (decorated, container, $container) {
  2608. var self = this;
  2609. decorated.call(this, container, $container);
  2610. container.on('query', function (params) {
  2611. self.lastParams = params;
  2612. self.loading = true;
  2613. });
  2614. container.on('query:append', function (params) {
  2615. self.lastParams = params;
  2616. self.loading = true;
  2617. });
  2618. this.$results.on('scroll', function () {
  2619. var loadMoreVisible = $.contains(
  2620. document.documentElement,
  2621. self.$loadingMore[0]
  2622. );
  2623. if (self.loading || !loadMoreVisible) {
  2624. return;
  2625. }
  2626. var currentOffset = self.$results.offset().top +
  2627. self.$results.outerHeight(false);
  2628. var loadingMoreOffset = self.$loadingMore.offset().top +
  2629. self.$loadingMore.outerHeight(false);
  2630. if (currentOffset + 50 >= loadingMoreOffset) {
  2631. self.loadMore();
  2632. }
  2633. });
  2634. };
  2635. InfiniteScroll.prototype.loadMore = function () {
  2636. this.loading = true;
  2637. var params = $.extend({}, {page: 1}, this.lastParams);
  2638. params.page++;
  2639. this.trigger('query:append', params);
  2640. };
  2641. InfiniteScroll.prototype.createLoadingMore = function () {
  2642. var $option = $(
  2643. '<li class="option load-more" role="treeitem"></li>'
  2644. );
  2645. var message = this.options.get('translations').get('loadingMore');
  2646. $option.html(message(this.lastParams));
  2647. return $option;
  2648. };
  2649. return InfiniteScroll;
  2650. });
  2651. define('select2/dropdown/attachBody',[
  2652. ], function () {
  2653. function AttachBody (decorated, $element, options) {
  2654. decorated.call(this, $element, options);
  2655. }
  2656. AttachBody.prototype.bind = function (decorated, container, $container) {
  2657. var self = this;
  2658. decorated.call(this, container, $container);
  2659. container.on('open', function () {
  2660. self._showDropdown();
  2661. });
  2662. container.on('close', function () {
  2663. self._hideDropdown();
  2664. });
  2665. this.$dropdownContainer.on('mousedown', function (evt) {
  2666. evt.stopPropagation();
  2667. });
  2668. };
  2669. AttachBody.prototype.position = function (decorated, $dropdown, $container) {
  2670. // Clone all of the container classes
  2671. $dropdown.attr('class', $container.attr('class'));
  2672. $dropdown.removeClass('select2');
  2673. $dropdown.addClass('select2-container--open');
  2674. $dropdown.css({
  2675. position: 'absolute'
  2676. });
  2677. $dropdown.width($container.outerWidth(false));
  2678. this.$container = $container;
  2679. };
  2680. AttachBody.prototype.render = function (decorated) {
  2681. var $container = $('<span></span>');
  2682. var $dropdown = decorated.call(this);
  2683. $container.append($dropdown);
  2684. this.$dropdownContainer = $container;
  2685. return $container;
  2686. };
  2687. AttachBody.prototype._hideDropdown = function (decorated) {
  2688. this.$dropdownContainer.detach();
  2689. };
  2690. AttachBody.prototype._positionDropdown = function () {
  2691. var css = this.$container.offset();
  2692. css.top += this.$container.outerHeight(true);
  2693. this.$dropdownContainer.css(css);
  2694. };
  2695. AttachBody.prototype._showDropdown = function (decorated) {
  2696. this.$dropdownContainer.appendTo(document.body);
  2697. this._positionDropdown();
  2698. };
  2699. return AttachBody;
  2700. });
  2701. define('select2/i18n/en',[],function () {
  2702. return {
  2703. errorLoading: function () {
  2704. return 'The results could not be loaded.';
  2705. },
  2706. inputTooLong: function (args) {
  2707. var overChars = args.input.length - args.maximum;
  2708. var message = 'Please delete ' + overChars + ' character';
  2709. if (overChars != 1) {
  2710. message += 's';
  2711. }
  2712. return message;
  2713. },
  2714. inputTooShort: function (args) {
  2715. var remainingChars = args.minimum - args.input.length;
  2716. var message = 'Please enter ' + remainingChars + ' or more character';
  2717. if (remainingChars != 1) {
  2718. message += 's';
  2719. }
  2720. return message;
  2721. },
  2722. searching: function () {
  2723. return 'Searching…';
  2724. },
  2725. loadingMore: function () {
  2726. return 'Loading more results…';
  2727. },
  2728. maximumSelected: function (args) {
  2729. var message = 'You can only select' + args.maximum + ' item';
  2730. if (args.maximum != 1) {
  2731. message += 's';
  2732. }
  2733. return message;
  2734. },
  2735. noResults: function () {
  2736. return 'No results found';
  2737. }
  2738. };
  2739. });
  2740. define('select2/defaults',[
  2741. 'jquery',
  2742. './results',
  2743. './selection/single',
  2744. './selection/multiple',
  2745. './selection/placeholder',
  2746. './selection/allowClear',
  2747. './selection/search',
  2748. './utils',
  2749. './translation',
  2750. './diacritics',
  2751. './data/select',
  2752. './data/array',
  2753. './data/ajax',
  2754. './data/tags',
  2755. './data/minimumInputLength',
  2756. './dropdown',
  2757. './dropdown/search',
  2758. './dropdown/hidePlaceholder',
  2759. './dropdown/infiniteScroll',
  2760. './dropdown/attachBody',
  2761. './i18n/en'
  2762. ], function ($, ResultsList,
  2763. SingleSelection, MultipleSelection, Placeholder, AllowClear,
  2764. SelectionSearch,
  2765. Utils, Translation, DIACRITICS,
  2766. SelectData, ArrayData, AjaxData, Tags, MinimumInputLength,
  2767. Dropdown, DropdownSearch, HidePlaceholder, InfiniteScroll,
  2768. AttachBody,
  2769. EnglishTranslation) {
  2770. function Defaults () {
  2771. this.reset();
  2772. }
  2773. Defaults.prototype.apply = function (options) {
  2774. options = $.extend({}, this.defaults, options);
  2775. if (options.dataAdapter == null) {
  2776. if (options.ajax != null) {
  2777. options.dataAdapter = AjaxData;
  2778. } else if (options.data != null) {
  2779. options.dataAdapter = ArrayData;
  2780. } else {
  2781. options.dataAdapter = SelectData;
  2782. }
  2783. }
  2784. if (options.minimumInputLength > 0) {
  2785. options.dataAdapter = Utils.Decorate(
  2786. options.dataAdapter,
  2787. MinimumInputLength
  2788. );
  2789. }
  2790. if (options.tags != null) {
  2791. options.dataAdapter = Utils.Decorate(options.dataAdapter, Tags);
  2792. }
  2793. if (options.resultsAdapter == null) {
  2794. options.resultsAdapter = ResultsList;
  2795. if (options.ajax != null) {
  2796. options.resultsAdapter = Utils.Decorate(
  2797. options.resultsAdapter,
  2798. InfiniteScroll
  2799. );
  2800. }
  2801. if (options.placeholder != null) {
  2802. options.resultsAdapter = Utils.Decorate(
  2803. options.resultsAdapter,
  2804. HidePlaceholder
  2805. );
  2806. }
  2807. }
  2808. if (options.dropdownAdapter == null) {
  2809. if (options.multiple) {
  2810. options.dropdownAdapter = Dropdown;
  2811. } else {
  2812. var SearchableDropdown = Utils.Decorate(Dropdown, DropdownSearch);
  2813. options.dropdownAdapter = SearchableDropdown;
  2814. }
  2815. options.dropdownAdapter = Utils.Decorate(
  2816. options.dropdownAdapter,
  2817. AttachBody
  2818. );
  2819. }
  2820. if (options.selectionAdapter == null) {
  2821. if (options.multiple) {
  2822. options.selectionAdapter = MultipleSelection;
  2823. } else {
  2824. options.selectionAdapter = SingleSelection;
  2825. }
  2826. // Add the placeholder mixin if a placeholder was specified
  2827. if (options.placeholder != null) {
  2828. options.selectionAdapter = Utils.Decorate(
  2829. options.selectionAdapter,
  2830. Placeholder
  2831. );
  2832. if (options.allowClear) {
  2833. options.selectionAdapter = Utils.Decorate(
  2834. options.selectionAdapter,
  2835. AllowClear
  2836. );
  2837. }
  2838. }
  2839. if (options.multiple) {
  2840. options.selectionAdapter = Utils.Decorate(
  2841. options.selectionAdapter,
  2842. SelectionSearch
  2843. );
  2844. }
  2845. }
  2846. if (typeof options.language === 'string') {
  2847. options.language = [options.language];
  2848. }
  2849. if ($.isArray(options.language)) {
  2850. var languages = new Translation();
  2851. var languageNames = options.language.concat(this.defaults.language);
  2852. for (var l = 0; l < languageNames.length; l++) {
  2853. var name = languageNames[l];
  2854. var language = {};
  2855. try {
  2856. // Try to load it with the original name
  2857. language = Translation.loadPath(name);
  2858. } catch (e) {
  2859. // If we couldn't load it, check if it wasn't the full path
  2860. name = 'select2/i18n/' + name;
  2861. language = Translation.loadPath(name);
  2862. }
  2863. languages.extend(language);
  2864. }
  2865. options.translations = languages;
  2866. } else {
  2867. options.translations = new Translation(options.language);
  2868. }
  2869. return options;
  2870. };
  2871. Defaults.prototype.reset = function () {
  2872. function stripDiacritics (text) {
  2873. // Used 'uni range + named function' from http://jsperf.com/diacritics/18
  2874. function match(a) {
  2875. return DIACRITICS[a] || a;
  2876. }
  2877. return text.replace(/[^\u0000-\u007E]/g, match);
  2878. }
  2879. function matcher (params, data) {
  2880. // Always return the object if there is nothing to compare
  2881. if ($.trim(params.term) === '') {
  2882. return data;
  2883. }
  2884. // Do a recursive check for options with children
  2885. if (data.children && data.children.length > 0) {
  2886. // Clone the data object if there are children
  2887. // This is required as we modify the object to remove any non-matches
  2888. var match = $.extend(true, {}, data);
  2889. // Check each child of the option
  2890. for (var c = data.children.length - 1; c >= 0; c--) {
  2891. var child = data.children[c];
  2892. var matches = matcher(params, child);
  2893. // If there wasn't a match, remove the object in the array
  2894. if (matches == null) {
  2895. match.children.splice(c, 1);
  2896. }
  2897. }
  2898. // If any children matched, return the new object
  2899. if (match.children.length > 0) {
  2900. return match;
  2901. }
  2902. // If there were no matching children, check just the plain object
  2903. return matcher(params, match);
  2904. }
  2905. var original = stripDiacritics(data.text).toUpperCase();
  2906. var term = stripDiacritics(params.term).toUpperCase();
  2907. // Check if the text contains the term
  2908. if (original.indexOf(term) > -1) {
  2909. return data;
  2910. }
  2911. // If it doesn't contain the term, don't return anything
  2912. return null;
  2913. }
  2914. this.defaults = {
  2915. language: EnglishTranslation,
  2916. matcher: matcher,
  2917. minimumInputLength: 0,
  2918. theme: 'default',
  2919. templateResult: function (result) {
  2920. return result.text;
  2921. },
  2922. templateSelection: function (selection) {
  2923. return selection.text;
  2924. }
  2925. };
  2926. };
  2927. var defaults = new Defaults();
  2928. return defaults;
  2929. });
  2930. define('select2/options',[
  2931. './defaults'
  2932. ], function (Defaults) {
  2933. function Options (options, $element) {
  2934. this.options = options;
  2935. if ($element != null) {
  2936. this.fromElement($element);
  2937. }
  2938. this.options = Defaults.apply(this.options);
  2939. }
  2940. Options.prototype.fromElement = function ($e) {
  2941. if (this.options.multiple == null) {
  2942. this.options.multiple = $e.prop('multiple');
  2943. }
  2944. return this;
  2945. };
  2946. Options.prototype.get = function (key) {
  2947. return this.options[key];
  2948. };
  2949. Options.prototype.set = function (key, val) {
  2950. this.options[key] = val;
  2951. };
  2952. return Options;
  2953. });
  2954. define('select2/core',[
  2955. 'jquery',
  2956. './options',
  2957. './utils',
  2958. './keys'
  2959. ], function ($, Options, Utils, KEYS) {
  2960. var Select2 = function ($element, options) {
  2961. if ($element.data('select2') != null) {
  2962. $element.select2('destroy');
  2963. }
  2964. this.$element = $element;
  2965. this.id = this._generateId($element);
  2966. options = options || {};
  2967. this.options = new Options(options, $element);
  2968. Select2.__super__.constructor.call(this);
  2969. // Set up containers and adapters
  2970. var DataAdapter = this.options.get('dataAdapter');
  2971. this.data = new DataAdapter($element, this.options);
  2972. var $container = this.render();
  2973. this._placeContainer($container);
  2974. var SelectionAdapter = this.options.get('selectionAdapter');
  2975. this.selection = new SelectionAdapter($element, this.options);
  2976. this.$selection = this.selection.render();
  2977. this.selection.position(this.$selection, $container);
  2978. var DropdownAdapter = this.options.get('dropdownAdapter');
  2979. this.dropdown = new DropdownAdapter($element, this.options);
  2980. this.$dropdown = this.dropdown.render();
  2981. this.dropdown.position(this.$dropdown, $container);
  2982. var ResultsAdapter = this.options.get('resultsAdapter');
  2983. this.results = new ResultsAdapter($element, this.options, this.data);
  2984. this.$results = this.results.render();
  2985. this.results.position(this.$results, this.$dropdown);
  2986. // Bind events
  2987. var self = this;
  2988. // Bind the container to all of the adapters
  2989. this._bindAdapters();
  2990. // Register any DOM event handlers
  2991. this._registerDomEvents();
  2992. // Register any internal event handlers
  2993. this._registerDataEvents();
  2994. this._registerSelectionEvents();
  2995. this._registerDropdownEvents();
  2996. this._registerResultsEvents();
  2997. this._registerEvents();
  2998. // Set the initial state
  2999. this.data.current(function (initialData) {
  3000. self.trigger('selection:update', {
  3001. data: initialData
  3002. });
  3003. });
  3004. // Hide the original select
  3005. $element.hide();
  3006. this._tabindex = $element.attr('tabindex') || 0;
  3007. $element.attr('tabindex', '-1');
  3008. $element.data('select2', this);
  3009. };
  3010. Utils.Extend(Select2, Utils.Observable);
  3011. Select2.prototype._generateId = function ($element) {
  3012. var id = '';
  3013. if ($element.attr('id') != null) {
  3014. id = $element.attr('id');
  3015. } else if ($element.attr('name') != null) {
  3016. id = $element.attr('name') + '-' + Utils.generateChars(2);
  3017. } else {
  3018. id = Utils.generateChars(4);
  3019. }
  3020. id = 'select2-' + id;
  3021. return id;
  3022. };
  3023. Select2.prototype._placeContainer = function ($container) {
  3024. $container.insertAfter(this.$element);
  3025. $container.width(this.$element.outerWidth(false));
  3026. };
  3027. Select2.prototype._bindAdapters = function () {
  3028. this.data.bind(this, this.$container);
  3029. this.selection.bind(this, this.$container);
  3030. this.dropdown.bind(this, this.$container);
  3031. this.results.bind(this, this.$container);
  3032. };
  3033. Select2.prototype._registerDomEvents = function () {
  3034. var self = this;
  3035. this.$element.on('change.select2', function () {
  3036. self.data.current(function (data) {
  3037. self.trigger('selection:update', {
  3038. data: data
  3039. });
  3040. });
  3041. });
  3042. };
  3043. Select2.prototype._registerDataEvents = function () {
  3044. var self = this;
  3045. this.data.on('results:message', function (params) {
  3046. self.trigger('results:message', params);
  3047. });
  3048. };
  3049. Select2.prototype._registerSelectionEvents = function () {
  3050. var self = this;
  3051. this.selection.on('open', function () {
  3052. self.open();
  3053. });
  3054. this.selection.on('close', function () {
  3055. self.close();
  3056. });
  3057. this.selection.on('toggle', function () {
  3058. self.toggleDropdown();
  3059. });
  3060. this.selection.on('results:select', function () {
  3061. self.trigger('results:select');
  3062. });
  3063. this.selection.on('results:previous', function () {
  3064. self.trigger('results:previous');
  3065. });
  3066. this.selection.on('results:next', function () {
  3067. self.trigger('results:next');
  3068. });
  3069. this.selection.on('unselected', function (params) {
  3070. self.trigger('unselect', params);
  3071. self.close();
  3072. });
  3073. this.selection.on('query', function (params) {
  3074. self.trigger('query', params);
  3075. });
  3076. this.selection.on('keypress', function (e) {
  3077. self.trigger('keypress', e);
  3078. });
  3079. };
  3080. Select2.prototype._registerDropdownEvents = function () {
  3081. var self = this;
  3082. this.dropdown.on('query', function (params) {
  3083. self.trigger('query', params);
  3084. });
  3085. this.dropdown.on('keypress', function (e) {
  3086. self.trigger('keypress', e);
  3087. });
  3088. };
  3089. Select2.prototype._registerResultsEvents = function () {
  3090. var self = this;
  3091. this.results.on('query:append', function (params) {
  3092. self.trigger('query:append', params);
  3093. });
  3094. this.results.on('selected', function (params) {
  3095. self.trigger('select', params);
  3096. self.close();
  3097. });
  3098. this.results.on('unselected', function (params) {
  3099. self.trigger('unselect', params);
  3100. self.close();
  3101. });
  3102. this.results.on('results:focus', function (params) {
  3103. self.trigger('results:focus', params);
  3104. });
  3105. };
  3106. Select2.prototype._registerEvents = function () {
  3107. var self = this;
  3108. this.on('open', function () {
  3109. self.$container.addClass('select2-container--open');
  3110. });
  3111. this.on('close', function () {
  3112. self.$container.removeClass('select2-container--open');
  3113. });
  3114. this.on('query', function (params) {
  3115. this.data.query(params, function (data) {
  3116. self.trigger('results:all', {
  3117. data: data,
  3118. query: params
  3119. });
  3120. });
  3121. });
  3122. this.on('query:append', function (params) {
  3123. this.data.query(params, function (data) {
  3124. self.trigger('results:append', {
  3125. data: data,
  3126. query: params
  3127. });
  3128. });
  3129. });
  3130. this.on('keypress', function (evt) {
  3131. var key = evt.which;
  3132. if (self.isOpen()) {
  3133. if (key === KEYS.ENTER) {
  3134. self.trigger('results:select');
  3135. evt.preventDefault();
  3136. } else if (key === KEYS.UP) {
  3137. self.trigger('results:previous');
  3138. evt.preventDefault();
  3139. } else if (key === KEYS.DOWN) {
  3140. self.trigger('results:next');
  3141. evt.preventDefault();
  3142. } else if (key === KEYS.ESC || key === KEYS.TAB) {
  3143. self.close();
  3144. evt.preventDefault();
  3145. }
  3146. } else {
  3147. if (key === KEYS.ENTER || key === KEYS.SPACE) {
  3148. self.open();
  3149. evt.preventDefault();
  3150. }
  3151. }
  3152. });
  3153. };
  3154. Select2.prototype.toggleDropdown = function () {
  3155. if (this.isOpen()) {
  3156. this.close();
  3157. } else {
  3158. this.open();
  3159. }
  3160. };
  3161. Select2.prototype.open = function () {
  3162. if (this.isOpen()) {
  3163. return;
  3164. }
  3165. this.trigger('query', {});
  3166. this.trigger('open');
  3167. };
  3168. Select2.prototype.close = function () {
  3169. if (!this.isOpen()) {
  3170. return;
  3171. }
  3172. this.trigger('close');
  3173. };
  3174. Select2.prototype.isOpen = function () {
  3175. return this.$container.hasClass('select2-container--open');
  3176. };
  3177. Select2.prototype.destroy = function () {
  3178. this.$container.remove();
  3179. this.$element.off('.select2');
  3180. this.$element.attr('tabindex', this._tabindex);
  3181. this.$element.show();
  3182. this.$element.removeData('select2');
  3183. this.data.destroy();
  3184. this.selection.destroy();
  3185. this.dropdown.destroy();
  3186. this.results.destroy();
  3187. this.data = null;
  3188. this.selection = null;
  3189. this.dropdown = null;
  3190. this.results = null;
  3191. };
  3192. Select2.prototype.render = function () {
  3193. var $container = $(
  3194. '<span class="select2 select2-container">' +
  3195. '<span class="selection"></span>' +
  3196. '<span class="dropdown-wrapper" aria-hidden="true"></span>' +
  3197. '</span>'
  3198. );
  3199. this.$container = $container;
  3200. this.$container.addClass('select2-container--' + this.options.get('theme'));
  3201. $container.data('element', this.$element);
  3202. return $container;
  3203. };
  3204. return Select2;
  3205. });
  3206. define('jquery.select2',[
  3207. 'jquery',
  3208. 'select2/core'
  3209. ], function ($, Select2) {
  3210. if ($.fn.select2 == null) {
  3211. $.fn.select2 = function (options) {
  3212. options = options || {};
  3213. if (typeof options === 'object') {
  3214. this.each(function () {
  3215. var instance = new Select2($(this), options);
  3216. });
  3217. } else if (typeof options === 'string') {
  3218. var instance = this.data('select2');
  3219. var args = Array.prototype.slice.call(arguments, 1);
  3220. instance[options](args);
  3221. } else {
  3222. throw new Error('Invalid arguments for Select2: ' + options);
  3223. }
  3224. };
  3225. }
  3226. return Select2;
  3227. });
  3228. require('jquery.select2'); $.fn.select2.amd = { define: define, require: require };}());