select2.js 103 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392
  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. Utils.bind = function (func, context) {
  488. return function () {
  489. func.apply(context, arguments);
  490. };
  491. };
  492. return Utils;
  493. });
  494. define('select2/results',[
  495. './utils'
  496. ], function (Utils) {
  497. function Results ($element, options, dataAdapter) {
  498. this.$element = $element;
  499. this.data = dataAdapter;
  500. this.options = options;
  501. Results.__super__.constructor.call(this);
  502. }
  503. Utils.Extend(Results, Utils.Observable);
  504. Results.prototype.render = function () {
  505. var $results = $(
  506. '<ul class="select2-results__options" role="tree"></ul>'
  507. );
  508. if (this.options.get('multiple')) {
  509. $results.attr('aria-multiselectable', 'true');
  510. }
  511. this.$results = $results;
  512. return $results;
  513. };
  514. Results.prototype.clear = function () {
  515. this.$results.empty();
  516. };
  517. Results.prototype.displayMessage = function (params) {
  518. this.clear();
  519. this.hideLoading();
  520. var $message = $(
  521. '<li role="treeitem" class="select2-results__option"></li>'
  522. );
  523. var message = this.options.get('translations').get(params.message);
  524. $message.text(message(params.args));
  525. this.$results.append($message);
  526. };
  527. Results.prototype.append = function (data) {
  528. this.hideLoading();
  529. var $options = [];
  530. if (data.length === 0) {
  531. if (this.$results.children().length === 0) {
  532. this.trigger('results:message', {
  533. message: 'noResults'
  534. });
  535. }
  536. return;
  537. }
  538. data = this.sort(data);
  539. for (var d = 0; d < data.length; d++) {
  540. var item = data[d];
  541. var $option = this.option(item);
  542. $options.push($option);
  543. }
  544. this.$results.append($options);
  545. };
  546. Results.prototype.position = function ($results, $dropdown) {
  547. var $resultsContainer = $dropdown.find('.select2-results');
  548. $resultsContainer.append($results);
  549. };
  550. Results.prototype.sort = function (data) {
  551. var sorter = this.options.get('sorter');
  552. return sorter(data);
  553. };
  554. Results.prototype.setClasses = function () {
  555. var self = this;
  556. this.data.current(function (selected) {
  557. var selectedIds = $.map(selected, function (s) {
  558. return s.id.toString();
  559. });
  560. var $options = self.$results
  561. .find('.select2-results__option[aria-selected]');
  562. $options.each(function () {
  563. var $option = $(this);
  564. var item = $.data(this, 'data');
  565. if (item.id != null && selectedIds.indexOf(item.id.toString()) > -1) {
  566. $option.attr('aria-selected', 'true');
  567. } else {
  568. $option.attr('aria-selected', 'false');
  569. }
  570. });
  571. var $selected = $options.filter('[aria-selected=true]');
  572. // Check if there are any selected options
  573. if ($selected.length > 0) {
  574. // If there are selected options, highlight the first
  575. $selected.first().trigger('mouseenter');
  576. } else {
  577. // If there are no selected options, highlight the first option
  578. // in the dropdown
  579. $options.first().trigger('mouseenter');
  580. }
  581. });
  582. };
  583. Results.prototype.showLoading = function (params) {
  584. this.hideLoading();
  585. var loadingMore = this.options.get('translations').get('searching');
  586. var loading = {
  587. disabled: true,
  588. loading: true,
  589. text: loadingMore(params)
  590. };
  591. var $loading = this.option(loading);
  592. $loading.className += ' loading-results';
  593. this.$results.prepend($loading);
  594. };
  595. Results.prototype.hideLoading = function () {
  596. this.$results.find('.loading-results').remove();
  597. };
  598. Results.prototype.option = function (data) {
  599. var option = document.createElement('li');
  600. option.className = 'select2-results__option';
  601. var attrs = {
  602. 'role': 'treeitem',
  603. 'aria-selected': 'false'
  604. };
  605. if (data.disabled) {
  606. delete attrs['aria-selected'];
  607. attrs['aria-disabled'] = 'true';
  608. }
  609. if (data.id == null) {
  610. delete attrs['aria-selected'];
  611. }
  612. if (data._resultId != null) {
  613. option.id = data._resultId;
  614. }
  615. if (data.children) {
  616. attrs.role = 'group';
  617. attrs['aria-label'] = data.text;
  618. delete attrs['aria-selected'];
  619. }
  620. for (var attr in attrs) {
  621. var val = attrs[attr];
  622. option.setAttribute(attr, val);
  623. }
  624. if (data.children) {
  625. var $option = $(option);
  626. var label = document.createElement('strong');
  627. label.className = 'select2-results__group';
  628. var $label = $(label);
  629. this.template(data, label);
  630. var $children = [];
  631. for (var c = 0; c < data.children.length; c++) {
  632. var child = data.children[c];
  633. var $child = this.option(child);
  634. $children.push($child);
  635. }
  636. var $childrenContainer = $('<ul></ul>', {
  637. 'class': 'select2-results__options select2-results__options--nested'
  638. });
  639. $childrenContainer.append($children);
  640. $option.append(label);
  641. $option.append($childrenContainer);
  642. } else {
  643. this.template(data, option);
  644. }
  645. $.data(option, 'data', data);
  646. return option;
  647. };
  648. Results.prototype.bind = function (container, $container) {
  649. var self = this;
  650. var id = container.id + '-results';
  651. this.$results.attr('id', id);
  652. container.on('results:all', function (params) {
  653. self.clear();
  654. self.append(params.data);
  655. if (container.isOpen()) {
  656. self.setClasses();
  657. }
  658. });
  659. container.on('results:append', function (params) {
  660. self.append(params.data);
  661. if (container.isOpen()) {
  662. self.setClasses();
  663. }
  664. });
  665. container.on('query', function (params) {
  666. self.showLoading(params);
  667. });
  668. container.on('select', function () {
  669. if (!container.isOpen()) {
  670. return;
  671. }
  672. self.setClasses();
  673. });
  674. container.on('unselect', function () {
  675. if (!container.isOpen()) {
  676. return;
  677. }
  678. self.setClasses();
  679. });
  680. container.on('open', function () {
  681. // When the dropdown is open, aria-expended="true"
  682. self.$results.attr('aria-expanded', 'true');
  683. self.$results.attr('aria-hidden', 'false');
  684. self.setClasses();
  685. self.ensureHighlightVisible();
  686. });
  687. container.on('close', function () {
  688. // When the dropdown is closed, aria-expended="false"
  689. self.$results.attr('aria-expanded', 'false');
  690. self.$results.attr('aria-hidden', 'true');
  691. self.$results.removeAttr('aria-activedescendant');
  692. });
  693. container.on('results:select', function () {
  694. var $highlighted = self.getHighlightedResults();
  695. if ($highlighted.length === 0) {
  696. return;
  697. }
  698. var data = $highlighted.data('data');
  699. if ($highlighted.attr('aria-selected') == 'true') {
  700. self.trigger('unselected', {
  701. data: data
  702. });
  703. } else {
  704. self.trigger('selected', {
  705. data: data
  706. });
  707. }
  708. });
  709. container.on('results:previous', function () {
  710. var $highlighted = self.getHighlightedResults();
  711. var $options = self.$results.find('[aria-selected]');
  712. var currentIndex = $options.index($highlighted);
  713. // If we are already at te top, don't move further
  714. if (currentIndex === 0) {
  715. return;
  716. }
  717. var nextIndex = currentIndex - 1;
  718. // If none are highlighted, highlight the first
  719. if ($highlighted.length === 0) {
  720. nextIndex = 0;
  721. }
  722. var $next = $options.eq(nextIndex);
  723. $next.trigger('mouseenter');
  724. var currentOffset = self.$results.offset().top;
  725. var nextTop = $next.offset().top;
  726. var nextOffset = self.$results.scrollTop() + (nextTop - currentOffset);
  727. if (nextIndex === 0) {
  728. self.$results.scrollTop(0);
  729. } else if (nextTop - currentOffset < 0) {
  730. self.$results.scrollTop(nextOffset);
  731. }
  732. });
  733. container.on('results:next', function () {
  734. var $highlighted = self.getHighlightedResults();
  735. var $options = self.$results.find('[aria-selected]');
  736. var currentIndex = $options.index($highlighted);
  737. var nextIndex = currentIndex + 1;
  738. // If we are at the last option, stay there
  739. if (nextIndex >= $options.length) {
  740. return;
  741. }
  742. var $next = $options.eq(nextIndex);
  743. $next.trigger('mouseenter');
  744. var currentOffset = self.$results.offset().top +
  745. self.$results.outerHeight(false);
  746. var nextBottom = $next.offset().top + $next.outerHeight(false);
  747. var nextOffset = self.$results.scrollTop() + nextBottom - currentOffset;
  748. if (nextIndex === 0) {
  749. self.$results.scrollTop(0);
  750. } else if (nextBottom > currentOffset) {
  751. self.$results.scrollTop(nextOffset);
  752. }
  753. });
  754. container.on('results:focus', function (params) {
  755. params.element.addClass('select2-results__option--highlighted');
  756. });
  757. container.on('results:message', function (params) {
  758. self.trigger('results:message', params);
  759. });
  760. this.on('results:message', function (params) {
  761. self.displayMessage(params);
  762. });
  763. this.$results.on('mouseup', '.select2-results__option[aria-selected]',
  764. function (evt) {
  765. var $this = $(this);
  766. var data = $this.data('data');
  767. if ($this.attr('aria-selected') === 'true') {
  768. self.trigger('unselected', {
  769. originalEvent: evt,
  770. data: data
  771. });
  772. return;
  773. }
  774. self.trigger('selected', {
  775. originalEvent: evt,
  776. data: data
  777. });
  778. });
  779. this.$results.on('mouseenter', '.select2-results__option[aria-selected]',
  780. function (evt) {
  781. var data = $(this).data('data');
  782. self.getHighlightedResults()
  783. .removeClass('select2-results__option--highlighted');
  784. self.trigger('results:focus', {
  785. data: data,
  786. element: $(this)
  787. });
  788. });
  789. };
  790. Results.prototype.getHighlightedResults = function () {
  791. var $highlighted = this.$results
  792. .find('.select2-results__option--highlighted');
  793. return $highlighted;
  794. };
  795. Results.prototype.destroy = function () {
  796. this.$results.remove();
  797. };
  798. Results.prototype.ensureHighlightVisible = function () {
  799. var $highlighted = this.getHighlightedResults();
  800. if ($highlighted.length === 0) {
  801. return;
  802. }
  803. var $options = this.$results.find('[aria-selected]');
  804. var currentIndex = $options.index($highlighted);
  805. var currentOffset = this.$results.offset().top;
  806. var nextTop = $highlighted.offset().top;
  807. var nextOffset = this.$results.scrollTop() + (nextTop - currentOffset);
  808. var offsetDelta = nextTop - currentOffset;
  809. nextOffset -= $highlighted.outerHeight(false) * 2;
  810. if (currentIndex <= 2) {
  811. this.$results.scrollTop(0);
  812. } else if (offsetDelta > this.$results.outerHeight() || offsetDelta < 0) {
  813. this.$results.scrollTop(nextOffset);
  814. }
  815. };
  816. Results.prototype.template = function (result, container) {
  817. var template = this.options.get('templateResult');
  818. container.innerHTML = template(result);
  819. };
  820. return Results;
  821. });
  822. define('select2/keys',[
  823. ], function () {
  824. var KEYS = {
  825. BACKSPACE: 8,
  826. TAB: 9,
  827. ENTER: 13,
  828. SHIFT: 16,
  829. CTRL: 17,
  830. ALT: 18,
  831. ESC: 27,
  832. SPACE: 32,
  833. PAGE_UP: 33,
  834. PAGE_DOWN: 34,
  835. END: 35,
  836. HOME: 36,
  837. LEFT: 37,
  838. UP: 38,
  839. RIGHT: 39,
  840. DOWN: 40,
  841. DELETE: 46,
  842. isArrow: function (k) {
  843. k = k.which ? k.which : k;
  844. switch (k) {
  845. case KEY.LEFT:
  846. case KEY.RIGHT:
  847. case KEY.UP:
  848. case KEY.DOWN:
  849. return true;
  850. }
  851. return false;
  852. }
  853. };
  854. return KEYS;
  855. });
  856. define('select2/selection/base',[
  857. '../utils',
  858. '../keys'
  859. ], function (Utils, KEYS) {
  860. function BaseSelection ($element, options) {
  861. this.$element = $element;
  862. this.options = options;
  863. BaseSelection.__super__.constructor.call(this);
  864. }
  865. Utils.Extend(BaseSelection, Utils.Observable);
  866. BaseSelection.prototype.render = function () {
  867. throw new Error('The `render` method must be defined in child classes.');
  868. };
  869. BaseSelection.prototype.bind = function (container, $container) {
  870. var self = this;
  871. var id = container.id + '-container';
  872. var resultsId = container.id + '-results';
  873. this.container = container;
  874. this.$selection.attr('aria-owns', resultsId);
  875. this.$selection.on('keydown', function (evt) {
  876. self.trigger('keypress', evt);
  877. if (evt.which === KEYS.SPACE) {
  878. evt.preventDefault();
  879. }
  880. });
  881. container.on('results:focus', function (params) {
  882. self.$selection.attr('aria-activedescendant', params.data._resultId);
  883. });
  884. container.on('selection:update', function (params) {
  885. self.update(params.data);
  886. });
  887. container.on('open', function () {
  888. // When the dropdown is open, aria-expanded="true"
  889. self.$selection.attr('aria-expanded', 'true');
  890. self._attachCloseHandler(container);
  891. });
  892. container.on('close', function () {
  893. // When the dropdown is closed, aria-expanded="false"
  894. self.$selection.attr('aria-expanded', 'false');
  895. self.$selection.removeAttr('aria-activedescendant');
  896. self.$selection.focus();
  897. self._detachCloseHandler(container);
  898. });
  899. };
  900. BaseSelection.prototype._attachCloseHandler = function (container) {
  901. var self = this;
  902. $(document.body).on('mousedown.select2.' + container.id, function (e) {
  903. var $target = $(e.target);
  904. var $select = $target.closest('.select2');
  905. var $all = $('.select2.select2-container--open');
  906. $all.each(function () {
  907. var $this = $(this);
  908. if (this == $select[0]) {
  909. return;
  910. }
  911. var $element = $this.data('element');
  912. $element.select2('close');
  913. });
  914. });
  915. $(window).on('scroll.select2.' + container.id, function (e) {
  916. self.trigger('close');
  917. });
  918. };
  919. BaseSelection.prototype._detachCloseHandler = function (container) {
  920. $(document.body).off('mousedown.select2.' + container.id);
  921. $(window).off('scroll.select2.' + container.id);
  922. };
  923. BaseSelection.prototype.position = function ($selection, $container) {
  924. var $selectionContainer = $container.find('.selection');
  925. $selectionContainer.append($selection);
  926. };
  927. BaseSelection.prototype.destroy = function () {
  928. this._detachCloseHandler(this.container);
  929. };
  930. BaseSelection.prototype.update = function (data) {
  931. throw new Error('The `update` method must be defined in child classes.');
  932. };
  933. return BaseSelection;
  934. });
  935. define('select2/selection/single',[
  936. './base',
  937. '../utils',
  938. '../keys'
  939. ], function (BaseSelection, Utils, KEYS) {
  940. function SingleSelection () {
  941. SingleSelection.__super__.constructor.apply(this, arguments);
  942. }
  943. Utils.Extend(SingleSelection, BaseSelection);
  944. SingleSelection.prototype.render = function () {
  945. var $selection = $(
  946. '<span class="select2-selection select2-selection--single" tabindex="0"' +
  947. ' role="combobox" aria-autocomplete="list" aria-haspopup="true"' +
  948. ' aria-expanded="false">' +
  949. '<span class="select2-selection__rendered"></span>' +
  950. '<span class="select2-selection__arrow" role="presentation">' +
  951. '<b role="presentation"></b>' +
  952. '</span>' +
  953. '</span>'
  954. );
  955. $selection.attr('title', this.$element.attr('title'));
  956. this.$selection = $selection;
  957. return $selection;
  958. };
  959. SingleSelection.prototype.bind = function (container, $container) {
  960. var self = this;
  961. SingleSelection.__super__.bind.apply(this, arguments);
  962. var id = container.id + '-container';
  963. this.$selection.find('.select2-selection__rendered').attr('id', id);
  964. this.$selection.attr('aria-labelledby', id);
  965. this.$selection.on('mousedown', function (evt) {
  966. // Only respond to left clicks
  967. if (evt.which !== 1) {
  968. return;
  969. }
  970. self.trigger('toggle', {
  971. originalEvent: evt
  972. });
  973. });
  974. this.$selection.on('focus', function (evt) {
  975. // User focuses on the container
  976. });
  977. this.$selection.on('blur', function (evt) {
  978. // User exits the container
  979. });
  980. container.on('enable', function () {
  981. self.$selection.attr('tabindex', '0');
  982. });
  983. container.on('disable', function () {
  984. self.$selection.attr('tabindex', '-1');
  985. });
  986. container.on('selection:update', function (params) {
  987. self.update(params.data);
  988. });
  989. };
  990. SingleSelection.prototype.clear = function () {
  991. this.$selection.find('.select2-selection__rendered').empty();
  992. };
  993. SingleSelection.prototype.display = function (data) {
  994. var template = this.options.get('templateSelection');
  995. return template(data);
  996. };
  997. SingleSelection.prototype.selectionContainer = function () {
  998. return $('<span></span>');
  999. };
  1000. SingleSelection.prototype.update = function (data) {
  1001. if (data.length === 0) {
  1002. this.clear();
  1003. return;
  1004. }
  1005. var selection = data[0];
  1006. var formatted = this.display(selection);
  1007. this.$selection.find('.select2-selection__rendered').html(formatted);
  1008. };
  1009. return SingleSelection;
  1010. });
  1011. define('select2/selection/multiple',[
  1012. './base',
  1013. '../utils'
  1014. ], function (BaseSelection, Utils) {
  1015. function MultipleSelection ($element, options) {
  1016. MultipleSelection.__super__.constructor.apply(this, arguments);
  1017. }
  1018. Utils.Extend(MultipleSelection, BaseSelection);
  1019. MultipleSelection.prototype.render = function () {
  1020. var $selection = $(
  1021. '<span class="select2-selection select2-selection--multiple"' +
  1022. ' tabindex="0" role="combobox" aria-autocomplete="list"' +
  1023. ' aria-haspopup="true" aria-expanded="false">' +
  1024. '<ul class="select2-selection__rendered"></ul>' +
  1025. '</span>'
  1026. );
  1027. $selection.attr('title', this.$element.attr('title'));
  1028. this.$selection = $selection;
  1029. return $selection;
  1030. };
  1031. MultipleSelection.prototype.bind = function (container, $container) {
  1032. var self = this;
  1033. MultipleSelection.__super__.bind.apply(this, arguments);
  1034. this.$selection.on('click', function (evt) {
  1035. self.trigger('toggle', {
  1036. originalEvent: evt
  1037. });
  1038. });
  1039. this.$selection.on('click', '.select2-selection__choice__remove',
  1040. function (evt) {
  1041. var $remove = $(this);
  1042. var $selection = $remove.parent();
  1043. var data = $selection.data('data');
  1044. self.trigger('unselected', {
  1045. originalEvent: evt,
  1046. data: data
  1047. });
  1048. });
  1049. container.on('enable', function () {
  1050. self.$selection.attr('tabindex', '0');
  1051. });
  1052. container.on('disable', function () {
  1053. self.$selection.attr('tabindex', '-1');
  1054. });
  1055. };
  1056. MultipleSelection.prototype.clear = function () {
  1057. this.$selection.find('.select2-selection__rendered').empty();
  1058. };
  1059. MultipleSelection.prototype.display = function (data) {
  1060. var template = this.options.get('templateSelection');
  1061. return template(data);
  1062. };
  1063. MultipleSelection.prototype.selectionContainer = function () {
  1064. var $container = $(
  1065. '<li class="select2-selection__choice">' +
  1066. '<span class="select2-selection__choice__remove" role="presentation">' +
  1067. '&times;' +
  1068. '</span>' +
  1069. '</li>'
  1070. );
  1071. return $container;
  1072. };
  1073. MultipleSelection.prototype.update = function (data) {
  1074. this.clear();
  1075. if (data.length === 0) {
  1076. return;
  1077. }
  1078. var $selections = [];
  1079. for (var d = 0; d < data.length; d++) {
  1080. var selection = data[d];
  1081. var formatted = this.display(selection);
  1082. var $selection = this.selectionContainer();
  1083. $selection.append(formatted);
  1084. $selection.data('data', selection);
  1085. $selections.push($selection);
  1086. }
  1087. this.$selection.find('.select2-selection__rendered').append($selections);
  1088. };
  1089. return MultipleSelection;
  1090. });
  1091. define('select2/selection/placeholder',[
  1092. '../utils'
  1093. ], function (Utils) {
  1094. function Placeholder (decorated, $element, options) {
  1095. this.placeholder = this.normalizePlaceholder(options.get('placeholder'));
  1096. decorated.call(this, $element, options);
  1097. }
  1098. Placeholder.prototype.normalizePlaceholder = function (_, placeholder) {
  1099. if (typeof placeholder === 'string') {
  1100. placeholder = {
  1101. id: '',
  1102. text: placeholder
  1103. };
  1104. }
  1105. return placeholder;
  1106. };
  1107. Placeholder.prototype.createPlaceholder = function (decorated, placeholder) {
  1108. var $placeholder = this.selectionContainer();
  1109. $placeholder.html(this.display(placeholder));
  1110. $placeholder.addClass('select2-selection__placeholder')
  1111. .removeClass('select2-selection__choice');
  1112. return $placeholder;
  1113. };
  1114. Placeholder.prototype.update = function (decorated, data) {
  1115. var singlePlaceholder = (
  1116. data.length == 1 && data[0].id != this.placeholder.id
  1117. );
  1118. var multipleSelections = data.length > 1;
  1119. if (multipleSelections || singlePlaceholder) {
  1120. return decorated.call(this, data);
  1121. }
  1122. this.clear();
  1123. var $placeholder = this.createPlaceholder(this.placeholder);
  1124. this.$selection.find('.select2-selection__rendered').append($placeholder);
  1125. };
  1126. return Placeholder;
  1127. });
  1128. define('select2/selection/allowClear',[
  1129. ], function () {
  1130. function AllowClear () { }
  1131. AllowClear.prototype.bind = function (decorated, container, $container) {
  1132. var self = this;
  1133. decorated.call(this, container, $container);
  1134. this.$selection.on('mousedown', '.select2-selection__clear',
  1135. function (evt) {
  1136. evt.stopPropagation();
  1137. self.$element.val(self.placeholder.id).trigger('change');
  1138. self.trigger('toggle');
  1139. });
  1140. };
  1141. AllowClear.prototype.update = function (decorated, data) {
  1142. decorated.call(this, data);
  1143. if (this.$selection.find('.select2-selection__placeholder').length > 0) {
  1144. return;
  1145. }
  1146. var $remove = $(
  1147. '<span class="select2-selection__clear">' +
  1148. '&times;' +
  1149. '</span>'
  1150. );
  1151. this.$selection.find('.select2-selection__rendered').append($remove);
  1152. };
  1153. return AllowClear;
  1154. });
  1155. define('select2/selection/search',[
  1156. '../utils',
  1157. '../keys'
  1158. ], function (Utils, KEYS) {
  1159. function Search (decorated, $element, options) {
  1160. decorated.call(this, $element, options);
  1161. }
  1162. Search.prototype.render = function (decorated) {
  1163. var $search = $(
  1164. '<li class="select2-search select2-search--inline">' +
  1165. '<input class="select2-search__field" type="search" tabindex="-1"' +
  1166. ' role="textbox" />' +
  1167. '</li>'
  1168. );
  1169. this.$searchContainer = $search;
  1170. this.$search = $search.find('input');
  1171. var $rendered = decorated.call(this);
  1172. return $rendered;
  1173. };
  1174. Search.prototype.bind = function (decorated, container, $container) {
  1175. var self = this;
  1176. decorated.call(this, container, $container);
  1177. container.on('open', function () {
  1178. self.$search.attr('tabindex', 0);
  1179. self.$search.focus();
  1180. });
  1181. container.on('close', function () {
  1182. self.$search.attr('tabindex', -1);
  1183. self.$search.val('');
  1184. });
  1185. container.on('enable', function () {
  1186. self.$search.prop('disabled', false);
  1187. });
  1188. container.on('disable', function () {
  1189. self.$search.prop('disabled', true);
  1190. });
  1191. this.$selection.on('keydown', '.select2-search--inline', function (evt) {
  1192. evt.stopPropagation();
  1193. self.trigger('keypress', evt);
  1194. self._keyUpPrevented = evt.isDefaultPrevented();
  1195. var key = evt.which;
  1196. if (key === KEYS.BACKSPACE && self.$search.val() === '') {
  1197. var $previousChoice = self.$searchContainer
  1198. .prev('.select2-selection__choice');
  1199. if ($previousChoice.length > 0) {
  1200. var item = $previousChoice.data('data');
  1201. self.searchRemoveChoice(item);
  1202. }
  1203. }
  1204. });
  1205. this.$selection.on('keyup', '.select2-search--inline', function (evt) {
  1206. self.handleSearch(evt);
  1207. });
  1208. };
  1209. Search.prototype.createPlaceholder = function (decorated, placeholder) {
  1210. this.$search.attr('placeholder', placeholder.text);
  1211. };
  1212. Search.prototype.update = function (decorated, data) {
  1213. this.$search.attr('placeholder', '');
  1214. decorated.call(this, data);
  1215. this.$selection.find('.select2-selection__rendered')
  1216. .append(this.$searchContainer);
  1217. this.resizeSearch();
  1218. };
  1219. Search.prototype.handleSearch = function () {
  1220. this.resizeSearch();
  1221. if (!this._keyUpPrevented) {
  1222. var input = this.$search.val();
  1223. this.trigger('query', {
  1224. term: input
  1225. });
  1226. }
  1227. this._keyUpPrevented = false;
  1228. };
  1229. Search.prototype.searchRemoveChoice = function (decorated, item) {
  1230. this.trigger('unselected', {
  1231. data: item
  1232. });
  1233. this.trigger('open');
  1234. this.$search.val(item.text + ' ');
  1235. };
  1236. Search.prototype.resizeSearch = function () {
  1237. this.$search.css('width', '25px');
  1238. var width = '';
  1239. if (this.$search.attr('placeholder') !== '') {
  1240. width = this.$selection.innerWidth();
  1241. width -= this.$selection.find('.select2-selection__rendered')
  1242. .innerWidth();
  1243. width = width + 'px';
  1244. } else {
  1245. var minimumWidth = this.$search.val().length + 1;
  1246. width = (minimumWidth * 0.75) + 'em';
  1247. }
  1248. this.$search.css('width', width);
  1249. };
  1250. return Search;
  1251. });
  1252. define('select2/translation',[
  1253. ], function () {
  1254. function Translation (dict) {
  1255. this.dict = dict || {};
  1256. }
  1257. Translation.prototype.all = function () {
  1258. return this.dict;
  1259. };
  1260. Translation.prototype.get = function (key) {
  1261. return this.dict[key];
  1262. };
  1263. Translation.prototype.extend = function (translation) {
  1264. this.dict = $.extend({}, translation.all(), this.dict);
  1265. };
  1266. // Static functions
  1267. Translation._cache = {};
  1268. Translation.loadPath = function (path) {
  1269. if (!(path in Translation._cache)) {
  1270. var translations = require(path);
  1271. Translation._cache[path] = translations;
  1272. }
  1273. return new Translation(Translation._cache[path]);
  1274. };
  1275. return Translation;
  1276. });
  1277. define('select2/diacritics',[
  1278. ], function () {
  1279. var diacritics = {
  1280. '\u24B6': 'A',
  1281. '\uFF21': 'A',
  1282. '\u00C0': 'A',
  1283. '\u00C1': 'A',
  1284. '\u00C2': 'A',
  1285. '\u1EA6': 'A',
  1286. '\u1EA4': 'A',
  1287. '\u1EAA': 'A',
  1288. '\u1EA8': 'A',
  1289. '\u00C3': 'A',
  1290. '\u0100': 'A',
  1291. '\u0102': 'A',
  1292. '\u1EB0': 'A',
  1293. '\u1EAE': 'A',
  1294. '\u1EB4': 'A',
  1295. '\u1EB2': 'A',
  1296. '\u0226': 'A',
  1297. '\u01E0': 'A',
  1298. '\u00C4': 'A',
  1299. '\u01DE': 'A',
  1300. '\u1EA2': 'A',
  1301. '\u00C5': 'A',
  1302. '\u01FA': 'A',
  1303. '\u01CD': 'A',
  1304. '\u0200': 'A',
  1305. '\u0202': 'A',
  1306. '\u1EA0': 'A',
  1307. '\u1EAC': 'A',
  1308. '\u1EB6': 'A',
  1309. '\u1E00': 'A',
  1310. '\u0104': 'A',
  1311. '\u023A': 'A',
  1312. '\u2C6F': 'A',
  1313. '\uA732': 'AA',
  1314. '\u00C6': 'AE',
  1315. '\u01FC': 'AE',
  1316. '\u01E2': 'AE',
  1317. '\uA734': 'AO',
  1318. '\uA736': 'AU',
  1319. '\uA738': 'AV',
  1320. '\uA73A': 'AV',
  1321. '\uA73C': 'AY',
  1322. '\u24B7': 'B',
  1323. '\uFF22': 'B',
  1324. '\u1E02': 'B',
  1325. '\u1E04': 'B',
  1326. '\u1E06': 'B',
  1327. '\u0243': 'B',
  1328. '\u0182': 'B',
  1329. '\u0181': 'B',
  1330. '\u24B8': 'C',
  1331. '\uFF23': 'C',
  1332. '\u0106': 'C',
  1333. '\u0108': 'C',
  1334. '\u010A': 'C',
  1335. '\u010C': 'C',
  1336. '\u00C7': 'C',
  1337. '\u1E08': 'C',
  1338. '\u0187': 'C',
  1339. '\u023B': 'C',
  1340. '\uA73E': 'C',
  1341. '\u24B9': 'D',
  1342. '\uFF24': 'D',
  1343. '\u1E0A': 'D',
  1344. '\u010E': 'D',
  1345. '\u1E0C': 'D',
  1346. '\u1E10': 'D',
  1347. '\u1E12': 'D',
  1348. '\u1E0E': 'D',
  1349. '\u0110': 'D',
  1350. '\u018B': 'D',
  1351. '\u018A': 'D',
  1352. '\u0189': 'D',
  1353. '\uA779': 'D',
  1354. '\u01F1': 'DZ',
  1355. '\u01C4': 'DZ',
  1356. '\u01F2': 'Dz',
  1357. '\u01C5': 'Dz',
  1358. '\u24BA': 'E',
  1359. '\uFF25': 'E',
  1360. '\u00C8': 'E',
  1361. '\u00C9': 'E',
  1362. '\u00CA': 'E',
  1363. '\u1EC0': 'E',
  1364. '\u1EBE': 'E',
  1365. '\u1EC4': 'E',
  1366. '\u1EC2': 'E',
  1367. '\u1EBC': 'E',
  1368. '\u0112': 'E',
  1369. '\u1E14': 'E',
  1370. '\u1E16': 'E',
  1371. '\u0114': 'E',
  1372. '\u0116': 'E',
  1373. '\u00CB': 'E',
  1374. '\u1EBA': 'E',
  1375. '\u011A': 'E',
  1376. '\u0204': 'E',
  1377. '\u0206': 'E',
  1378. '\u1EB8': 'E',
  1379. '\u1EC6': 'E',
  1380. '\u0228': 'E',
  1381. '\u1E1C': 'E',
  1382. '\u0118': 'E',
  1383. '\u1E18': 'E',
  1384. '\u1E1A': 'E',
  1385. '\u0190': 'E',
  1386. '\u018E': 'E',
  1387. '\u24BB': 'F',
  1388. '\uFF26': 'F',
  1389. '\u1E1E': 'F',
  1390. '\u0191': 'F',
  1391. '\uA77B': 'F',
  1392. '\u24BC': 'G',
  1393. '\uFF27': 'G',
  1394. '\u01F4': 'G',
  1395. '\u011C': 'G',
  1396. '\u1E20': 'G',
  1397. '\u011E': 'G',
  1398. '\u0120': 'G',
  1399. '\u01E6': 'G',
  1400. '\u0122': 'G',
  1401. '\u01E4': 'G',
  1402. '\u0193': 'G',
  1403. '\uA7A0': 'G',
  1404. '\uA77D': 'G',
  1405. '\uA77E': 'G',
  1406. '\u24BD': 'H',
  1407. '\uFF28': 'H',
  1408. '\u0124': 'H',
  1409. '\u1E22': 'H',
  1410. '\u1E26': 'H',
  1411. '\u021E': 'H',
  1412. '\u1E24': 'H',
  1413. '\u1E28': 'H',
  1414. '\u1E2A': 'H',
  1415. '\u0126': 'H',
  1416. '\u2C67': 'H',
  1417. '\u2C75': 'H',
  1418. '\uA78D': 'H',
  1419. '\u24BE': 'I',
  1420. '\uFF29': 'I',
  1421. '\u00CC': 'I',
  1422. '\u00CD': 'I',
  1423. '\u00CE': 'I',
  1424. '\u0128': 'I',
  1425. '\u012A': 'I',
  1426. '\u012C': 'I',
  1427. '\u0130': 'I',
  1428. '\u00CF': 'I',
  1429. '\u1E2E': 'I',
  1430. '\u1EC8': 'I',
  1431. '\u01CF': 'I',
  1432. '\u0208': 'I',
  1433. '\u020A': 'I',
  1434. '\u1ECA': 'I',
  1435. '\u012E': 'I',
  1436. '\u1E2C': 'I',
  1437. '\u0197': 'I',
  1438. '\u24BF': 'J',
  1439. '\uFF2A': 'J',
  1440. '\u0134': 'J',
  1441. '\u0248': 'J',
  1442. '\u24C0': 'K',
  1443. '\uFF2B': 'K',
  1444. '\u1E30': 'K',
  1445. '\u01E8': 'K',
  1446. '\u1E32': 'K',
  1447. '\u0136': 'K',
  1448. '\u1E34': 'K',
  1449. '\u0198': 'K',
  1450. '\u2C69': 'K',
  1451. '\uA740': 'K',
  1452. '\uA742': 'K',
  1453. '\uA744': 'K',
  1454. '\uA7A2': 'K',
  1455. '\u24C1': 'L',
  1456. '\uFF2C': 'L',
  1457. '\u013F': 'L',
  1458. '\u0139': 'L',
  1459. '\u013D': 'L',
  1460. '\u1E36': 'L',
  1461. '\u1E38': 'L',
  1462. '\u013B': 'L',
  1463. '\u1E3C': 'L',
  1464. '\u1E3A': 'L',
  1465. '\u0141': 'L',
  1466. '\u023D': 'L',
  1467. '\u2C62': 'L',
  1468. '\u2C60': 'L',
  1469. '\uA748': 'L',
  1470. '\uA746': 'L',
  1471. '\uA780': 'L',
  1472. '\u01C7': 'LJ',
  1473. '\u01C8': 'Lj',
  1474. '\u24C2': 'M',
  1475. '\uFF2D': 'M',
  1476. '\u1E3E': 'M',
  1477. '\u1E40': 'M',
  1478. '\u1E42': 'M',
  1479. '\u2C6E': 'M',
  1480. '\u019C': 'M',
  1481. '\u24C3': 'N',
  1482. '\uFF2E': 'N',
  1483. '\u01F8': 'N',
  1484. '\u0143': 'N',
  1485. '\u00D1': 'N',
  1486. '\u1E44': 'N',
  1487. '\u0147': 'N',
  1488. '\u1E46': 'N',
  1489. '\u0145': 'N',
  1490. '\u1E4A': 'N',
  1491. '\u1E48': 'N',
  1492. '\u0220': 'N',
  1493. '\u019D': 'N',
  1494. '\uA790': 'N',
  1495. '\uA7A4': 'N',
  1496. '\u01CA': 'NJ',
  1497. '\u01CB': 'Nj',
  1498. '\u24C4': 'O',
  1499. '\uFF2F': 'O',
  1500. '\u00D2': 'O',
  1501. '\u00D3': 'O',
  1502. '\u00D4': 'O',
  1503. '\u1ED2': 'O',
  1504. '\u1ED0': 'O',
  1505. '\u1ED6': 'O',
  1506. '\u1ED4': 'O',
  1507. '\u00D5': 'O',
  1508. '\u1E4C': 'O',
  1509. '\u022C': 'O',
  1510. '\u1E4E': 'O',
  1511. '\u014C': 'O',
  1512. '\u1E50': 'O',
  1513. '\u1E52': 'O',
  1514. '\u014E': 'O',
  1515. '\u022E': 'O',
  1516. '\u0230': 'O',
  1517. '\u00D6': 'O',
  1518. '\u022A': 'O',
  1519. '\u1ECE': 'O',
  1520. '\u0150': 'O',
  1521. '\u01D1': 'O',
  1522. '\u020C': 'O',
  1523. '\u020E': 'O',
  1524. '\u01A0': 'O',
  1525. '\u1EDC': 'O',
  1526. '\u1EDA': 'O',
  1527. '\u1EE0': 'O',
  1528. '\u1EDE': 'O',
  1529. '\u1EE2': 'O',
  1530. '\u1ECC': 'O',
  1531. '\u1ED8': 'O',
  1532. '\u01EA': 'O',
  1533. '\u01EC': 'O',
  1534. '\u00D8': 'O',
  1535. '\u01FE': 'O',
  1536. '\u0186': 'O',
  1537. '\u019F': 'O',
  1538. '\uA74A': 'O',
  1539. '\uA74C': 'O',
  1540. '\u01A2': 'OI',
  1541. '\uA74E': 'OO',
  1542. '\u0222': 'OU',
  1543. '\u24C5': 'P',
  1544. '\uFF30': 'P',
  1545. '\u1E54': 'P',
  1546. '\u1E56': 'P',
  1547. '\u01A4': 'P',
  1548. '\u2C63': 'P',
  1549. '\uA750': 'P',
  1550. '\uA752': 'P',
  1551. '\uA754': 'P',
  1552. '\u24C6': 'Q',
  1553. '\uFF31': 'Q',
  1554. '\uA756': 'Q',
  1555. '\uA758': 'Q',
  1556. '\u024A': 'Q',
  1557. '\u24C7': 'R',
  1558. '\uFF32': 'R',
  1559. '\u0154': 'R',
  1560. '\u1E58': 'R',
  1561. '\u0158': 'R',
  1562. '\u0210': 'R',
  1563. '\u0212': 'R',
  1564. '\u1E5A': 'R',
  1565. '\u1E5C': 'R',
  1566. '\u0156': 'R',
  1567. '\u1E5E': 'R',
  1568. '\u024C': 'R',
  1569. '\u2C64': 'R',
  1570. '\uA75A': 'R',
  1571. '\uA7A6': 'R',
  1572. '\uA782': 'R',
  1573. '\u24C8': 'S',
  1574. '\uFF33': 'S',
  1575. '\u1E9E': 'S',
  1576. '\u015A': 'S',
  1577. '\u1E64': 'S',
  1578. '\u015C': 'S',
  1579. '\u1E60': 'S',
  1580. '\u0160': 'S',
  1581. '\u1E66': 'S',
  1582. '\u1E62': 'S',
  1583. '\u1E68': 'S',
  1584. '\u0218': 'S',
  1585. '\u015E': 'S',
  1586. '\u2C7E': 'S',
  1587. '\uA7A8': 'S',
  1588. '\uA784': 'S',
  1589. '\u24C9': 'T',
  1590. '\uFF34': 'T',
  1591. '\u1E6A': 'T',
  1592. '\u0164': 'T',
  1593. '\u1E6C': 'T',
  1594. '\u021A': 'T',
  1595. '\u0162': 'T',
  1596. '\u1E70': 'T',
  1597. '\u1E6E': 'T',
  1598. '\u0166': 'T',
  1599. '\u01AC': 'T',
  1600. '\u01AE': 'T',
  1601. '\u023E': 'T',
  1602. '\uA786': 'T',
  1603. '\uA728': 'TZ',
  1604. '\u24CA': 'U',
  1605. '\uFF35': 'U',
  1606. '\u00D9': 'U',
  1607. '\u00DA': 'U',
  1608. '\u00DB': 'U',
  1609. '\u0168': 'U',
  1610. '\u1E78': 'U',
  1611. '\u016A': 'U',
  1612. '\u1E7A': 'U',
  1613. '\u016C': 'U',
  1614. '\u00DC': 'U',
  1615. '\u01DB': 'U',
  1616. '\u01D7': 'U',
  1617. '\u01D5': 'U',
  1618. '\u01D9': 'U',
  1619. '\u1EE6': 'U',
  1620. '\u016E': 'U',
  1621. '\u0170': 'U',
  1622. '\u01D3': 'U',
  1623. '\u0214': 'U',
  1624. '\u0216': 'U',
  1625. '\u01AF': 'U',
  1626. '\u1EEA': 'U',
  1627. '\u1EE8': 'U',
  1628. '\u1EEE': 'U',
  1629. '\u1EEC': 'U',
  1630. '\u1EF0': 'U',
  1631. '\u1EE4': 'U',
  1632. '\u1E72': 'U',
  1633. '\u0172': 'U',
  1634. '\u1E76': 'U',
  1635. '\u1E74': 'U',
  1636. '\u0244': 'U',
  1637. '\u24CB': 'V',
  1638. '\uFF36': 'V',
  1639. '\u1E7C': 'V',
  1640. '\u1E7E': 'V',
  1641. '\u01B2': 'V',
  1642. '\uA75E': 'V',
  1643. '\u0245': 'V',
  1644. '\uA760': 'VY',
  1645. '\u24CC': 'W',
  1646. '\uFF37': 'W',
  1647. '\u1E80': 'W',
  1648. '\u1E82': 'W',
  1649. '\u0174': 'W',
  1650. '\u1E86': 'W',
  1651. '\u1E84': 'W',
  1652. '\u1E88': 'W',
  1653. '\u2C72': 'W',
  1654. '\u24CD': 'X',
  1655. '\uFF38': 'X',
  1656. '\u1E8A': 'X',
  1657. '\u1E8C': 'X',
  1658. '\u24CE': 'Y',
  1659. '\uFF39': 'Y',
  1660. '\u1EF2': 'Y',
  1661. '\u00DD': 'Y',
  1662. '\u0176': 'Y',
  1663. '\u1EF8': 'Y',
  1664. '\u0232': 'Y',
  1665. '\u1E8E': 'Y',
  1666. '\u0178': 'Y',
  1667. '\u1EF6': 'Y',
  1668. '\u1EF4': 'Y',
  1669. '\u01B3': 'Y',
  1670. '\u024E': 'Y',
  1671. '\u1EFE': 'Y',
  1672. '\u24CF': 'Z',
  1673. '\uFF3A': 'Z',
  1674. '\u0179': 'Z',
  1675. '\u1E90': 'Z',
  1676. '\u017B': 'Z',
  1677. '\u017D': 'Z',
  1678. '\u1E92': 'Z',
  1679. '\u1E94': 'Z',
  1680. '\u01B5': 'Z',
  1681. '\u0224': 'Z',
  1682. '\u2C7F': 'Z',
  1683. '\u2C6B': 'Z',
  1684. '\uA762': 'Z',
  1685. '\u24D0': 'a',
  1686. '\uFF41': 'a',
  1687. '\u1E9A': 'a',
  1688. '\u00E0': 'a',
  1689. '\u00E1': 'a',
  1690. '\u00E2': 'a',
  1691. '\u1EA7': 'a',
  1692. '\u1EA5': 'a',
  1693. '\u1EAB': 'a',
  1694. '\u1EA9': 'a',
  1695. '\u00E3': 'a',
  1696. '\u0101': 'a',
  1697. '\u0103': 'a',
  1698. '\u1EB1': 'a',
  1699. '\u1EAF': 'a',
  1700. '\u1EB5': 'a',
  1701. '\u1EB3': 'a',
  1702. '\u0227': 'a',
  1703. '\u01E1': 'a',
  1704. '\u00E4': 'a',
  1705. '\u01DF': 'a',
  1706. '\u1EA3': 'a',
  1707. '\u00E5': 'a',
  1708. '\u01FB': 'a',
  1709. '\u01CE': 'a',
  1710. '\u0201': 'a',
  1711. '\u0203': 'a',
  1712. '\u1EA1': 'a',
  1713. '\u1EAD': 'a',
  1714. '\u1EB7': 'a',
  1715. '\u1E01': 'a',
  1716. '\u0105': 'a',
  1717. '\u2C65': 'a',
  1718. '\u0250': 'a',
  1719. '\uA733': 'aa',
  1720. '\u00E6': 'ae',
  1721. '\u01FD': 'ae',
  1722. '\u01E3': 'ae',
  1723. '\uA735': 'ao',
  1724. '\uA737': 'au',
  1725. '\uA739': 'av',
  1726. '\uA73B': 'av',
  1727. '\uA73D': 'ay',
  1728. '\u24D1': 'b',
  1729. '\uFF42': 'b',
  1730. '\u1E03': 'b',
  1731. '\u1E05': 'b',
  1732. '\u1E07': 'b',
  1733. '\u0180': 'b',
  1734. '\u0183': 'b',
  1735. '\u0253': 'b',
  1736. '\u24D2': 'c',
  1737. '\uFF43': 'c',
  1738. '\u0107': 'c',
  1739. '\u0109': 'c',
  1740. '\u010B': 'c',
  1741. '\u010D': 'c',
  1742. '\u00E7': 'c',
  1743. '\u1E09': 'c',
  1744. '\u0188': 'c',
  1745. '\u023C': 'c',
  1746. '\uA73F': 'c',
  1747. '\u2184': 'c',
  1748. '\u24D3': 'd',
  1749. '\uFF44': 'd',
  1750. '\u1E0B': 'd',
  1751. '\u010F': 'd',
  1752. '\u1E0D': 'd',
  1753. '\u1E11': 'd',
  1754. '\u1E13': 'd',
  1755. '\u1E0F': 'd',
  1756. '\u0111': 'd',
  1757. '\u018C': 'd',
  1758. '\u0256': 'd',
  1759. '\u0257': 'd',
  1760. '\uA77A': 'd',
  1761. '\u01F3': 'dz',
  1762. '\u01C6': 'dz',
  1763. '\u24D4': 'e',
  1764. '\uFF45': 'e',
  1765. '\u00E8': 'e',
  1766. '\u00E9': 'e',
  1767. '\u00EA': 'e',
  1768. '\u1EC1': 'e',
  1769. '\u1EBF': 'e',
  1770. '\u1EC5': 'e',
  1771. '\u1EC3': 'e',
  1772. '\u1EBD': 'e',
  1773. '\u0113': 'e',
  1774. '\u1E15': 'e',
  1775. '\u1E17': 'e',
  1776. '\u0115': 'e',
  1777. '\u0117': 'e',
  1778. '\u00EB': 'e',
  1779. '\u1EBB': 'e',
  1780. '\u011B': 'e',
  1781. '\u0205': 'e',
  1782. '\u0207': 'e',
  1783. '\u1EB9': 'e',
  1784. '\u1EC7': 'e',
  1785. '\u0229': 'e',
  1786. '\u1E1D': 'e',
  1787. '\u0119': 'e',
  1788. '\u1E19': 'e',
  1789. '\u1E1B': 'e',
  1790. '\u0247': 'e',
  1791. '\u025B': 'e',
  1792. '\u01DD': 'e',
  1793. '\u24D5': 'f',
  1794. '\uFF46': 'f',
  1795. '\u1E1F': 'f',
  1796. '\u0192': 'f',
  1797. '\uA77C': 'f',
  1798. '\u24D6': 'g',
  1799. '\uFF47': 'g',
  1800. '\u01F5': 'g',
  1801. '\u011D': 'g',
  1802. '\u1E21': 'g',
  1803. '\u011F': 'g',
  1804. '\u0121': 'g',
  1805. '\u01E7': 'g',
  1806. '\u0123': 'g',
  1807. '\u01E5': 'g',
  1808. '\u0260': 'g',
  1809. '\uA7A1': 'g',
  1810. '\u1D79': 'g',
  1811. '\uA77F': 'g',
  1812. '\u24D7': 'h',
  1813. '\uFF48': 'h',
  1814. '\u0125': 'h',
  1815. '\u1E23': 'h',
  1816. '\u1E27': 'h',
  1817. '\u021F': 'h',
  1818. '\u1E25': 'h',
  1819. '\u1E29': 'h',
  1820. '\u1E2B': 'h',
  1821. '\u1E96': 'h',
  1822. '\u0127': 'h',
  1823. '\u2C68': 'h',
  1824. '\u2C76': 'h',
  1825. '\u0265': 'h',
  1826. '\u0195': 'hv',
  1827. '\u24D8': 'i',
  1828. '\uFF49': 'i',
  1829. '\u00EC': 'i',
  1830. '\u00ED': 'i',
  1831. '\u00EE': 'i',
  1832. '\u0129': 'i',
  1833. '\u012B': 'i',
  1834. '\u012D': 'i',
  1835. '\u00EF': 'i',
  1836. '\u1E2F': 'i',
  1837. '\u1EC9': 'i',
  1838. '\u01D0': 'i',
  1839. '\u0209': 'i',
  1840. '\u020B': 'i',
  1841. '\u1ECB': 'i',
  1842. '\u012F': 'i',
  1843. '\u1E2D': 'i',
  1844. '\u0268': 'i',
  1845. '\u0131': 'i',
  1846. '\u24D9': 'j',
  1847. '\uFF4A': 'j',
  1848. '\u0135': 'j',
  1849. '\u01F0': 'j',
  1850. '\u0249': 'j',
  1851. '\u24DA': 'k',
  1852. '\uFF4B': 'k',
  1853. '\u1E31': 'k',
  1854. '\u01E9': 'k',
  1855. '\u1E33': 'k',
  1856. '\u0137': 'k',
  1857. '\u1E35': 'k',
  1858. '\u0199': 'k',
  1859. '\u2C6A': 'k',
  1860. '\uA741': 'k',
  1861. '\uA743': 'k',
  1862. '\uA745': 'k',
  1863. '\uA7A3': 'k',
  1864. '\u24DB': 'l',
  1865. '\uFF4C': 'l',
  1866. '\u0140': 'l',
  1867. '\u013A': 'l',
  1868. '\u013E': 'l',
  1869. '\u1E37': 'l',
  1870. '\u1E39': 'l',
  1871. '\u013C': 'l',
  1872. '\u1E3D': 'l',
  1873. '\u1E3B': 'l',
  1874. '\u017F': 'l',
  1875. '\u0142': 'l',
  1876. '\u019A': 'l',
  1877. '\u026B': 'l',
  1878. '\u2C61': 'l',
  1879. '\uA749': 'l',
  1880. '\uA781': 'l',
  1881. '\uA747': 'l',
  1882. '\u01C9': 'lj',
  1883. '\u24DC': 'm',
  1884. '\uFF4D': 'm',
  1885. '\u1E3F': 'm',
  1886. '\u1E41': 'm',
  1887. '\u1E43': 'm',
  1888. '\u0271': 'm',
  1889. '\u026F': 'm',
  1890. '\u24DD': 'n',
  1891. '\uFF4E': 'n',
  1892. '\u01F9': 'n',
  1893. '\u0144': 'n',
  1894. '\u00F1': 'n',
  1895. '\u1E45': 'n',
  1896. '\u0148': 'n',
  1897. '\u1E47': 'n',
  1898. '\u0146': 'n',
  1899. '\u1E4B': 'n',
  1900. '\u1E49': 'n',
  1901. '\u019E': 'n',
  1902. '\u0272': 'n',
  1903. '\u0149': 'n',
  1904. '\uA791': 'n',
  1905. '\uA7A5': 'n',
  1906. '\u01CC': 'nj',
  1907. '\u24DE': 'o',
  1908. '\uFF4F': 'o',
  1909. '\u00F2': 'o',
  1910. '\u00F3': 'o',
  1911. '\u00F4': 'o',
  1912. '\u1ED3': 'o',
  1913. '\u1ED1': 'o',
  1914. '\u1ED7': 'o',
  1915. '\u1ED5': 'o',
  1916. '\u00F5': 'o',
  1917. '\u1E4D': 'o',
  1918. '\u022D': 'o',
  1919. '\u1E4F': 'o',
  1920. '\u014D': 'o',
  1921. '\u1E51': 'o',
  1922. '\u1E53': 'o',
  1923. '\u014F': 'o',
  1924. '\u022F': 'o',
  1925. '\u0231': 'o',
  1926. '\u00F6': 'o',
  1927. '\u022B': 'o',
  1928. '\u1ECF': 'o',
  1929. '\u0151': 'o',
  1930. '\u01D2': 'o',
  1931. '\u020D': 'o',
  1932. '\u020F': 'o',
  1933. '\u01A1': 'o',
  1934. '\u1EDD': 'o',
  1935. '\u1EDB': 'o',
  1936. '\u1EE1': 'o',
  1937. '\u1EDF': 'o',
  1938. '\u1EE3': 'o',
  1939. '\u1ECD': 'o',
  1940. '\u1ED9': 'o',
  1941. '\u01EB': 'o',
  1942. '\u01ED': 'o',
  1943. '\u00F8': 'o',
  1944. '\u01FF': 'o',
  1945. '\u0254': 'o',
  1946. '\uA74B': 'o',
  1947. '\uA74D': 'o',
  1948. '\u0275': 'o',
  1949. '\u01A3': 'oi',
  1950. '\u0223': 'ou',
  1951. '\uA74F': 'oo',
  1952. '\u24DF': 'p',
  1953. '\uFF50': 'p',
  1954. '\u1E55': 'p',
  1955. '\u1E57': 'p',
  1956. '\u01A5': 'p',
  1957. '\u1D7D': 'p',
  1958. '\uA751': 'p',
  1959. '\uA753': 'p',
  1960. '\uA755': 'p',
  1961. '\u24E0': 'q',
  1962. '\uFF51': 'q',
  1963. '\u024B': 'q',
  1964. '\uA757': 'q',
  1965. '\uA759': 'q',
  1966. '\u24E1': 'r',
  1967. '\uFF52': 'r',
  1968. '\u0155': 'r',
  1969. '\u1E59': 'r',
  1970. '\u0159': 'r',
  1971. '\u0211': 'r',
  1972. '\u0213': 'r',
  1973. '\u1E5B': 'r',
  1974. '\u1E5D': 'r',
  1975. '\u0157': 'r',
  1976. '\u1E5F': 'r',
  1977. '\u024D': 'r',
  1978. '\u027D': 'r',
  1979. '\uA75B': 'r',
  1980. '\uA7A7': 'r',
  1981. '\uA783': 'r',
  1982. '\u24E2': 's',
  1983. '\uFF53': 's',
  1984. '\u00DF': 's',
  1985. '\u015B': 's',
  1986. '\u1E65': 's',
  1987. '\u015D': 's',
  1988. '\u1E61': 's',
  1989. '\u0161': 's',
  1990. '\u1E67': 's',
  1991. '\u1E63': 's',
  1992. '\u1E69': 's',
  1993. '\u0219': 's',
  1994. '\u015F': 's',
  1995. '\u023F': 's',
  1996. '\uA7A9': 's',
  1997. '\uA785': 's',
  1998. '\u1E9B': 's',
  1999. '\u24E3': 't',
  2000. '\uFF54': 't',
  2001. '\u1E6B': 't',
  2002. '\u1E97': 't',
  2003. '\u0165': 't',
  2004. '\u1E6D': 't',
  2005. '\u021B': 't',
  2006. '\u0163': 't',
  2007. '\u1E71': 't',
  2008. '\u1E6F': 't',
  2009. '\u0167': 't',
  2010. '\u01AD': 't',
  2011. '\u0288': 't',
  2012. '\u2C66': 't',
  2013. '\uA787': 't',
  2014. '\uA729': 'tz',
  2015. '\u24E4': 'u',
  2016. '\uFF55': 'u',
  2017. '\u00F9': 'u',
  2018. '\u00FA': 'u',
  2019. '\u00FB': 'u',
  2020. '\u0169': 'u',
  2021. '\u1E79': 'u',
  2022. '\u016B': 'u',
  2023. '\u1E7B': 'u',
  2024. '\u016D': 'u',
  2025. '\u00FC': 'u',
  2026. '\u01DC': 'u',
  2027. '\u01D8': 'u',
  2028. '\u01D6': 'u',
  2029. '\u01DA': 'u',
  2030. '\u1EE7': 'u',
  2031. '\u016F': 'u',
  2032. '\u0171': 'u',
  2033. '\u01D4': 'u',
  2034. '\u0215': 'u',
  2035. '\u0217': 'u',
  2036. '\u01B0': 'u',
  2037. '\u1EEB': 'u',
  2038. '\u1EE9': 'u',
  2039. '\u1EEF': 'u',
  2040. '\u1EED': 'u',
  2041. '\u1EF1': 'u',
  2042. '\u1EE5': 'u',
  2043. '\u1E73': 'u',
  2044. '\u0173': 'u',
  2045. '\u1E77': 'u',
  2046. '\u1E75': 'u',
  2047. '\u0289': 'u',
  2048. '\u24E5': 'v',
  2049. '\uFF56': 'v',
  2050. '\u1E7D': 'v',
  2051. '\u1E7F': 'v',
  2052. '\u028B': 'v',
  2053. '\uA75F': 'v',
  2054. '\u028C': 'v',
  2055. '\uA761': 'vy',
  2056. '\u24E6': 'w',
  2057. '\uFF57': 'w',
  2058. '\u1E81': 'w',
  2059. '\u1E83': 'w',
  2060. '\u0175': 'w',
  2061. '\u1E87': 'w',
  2062. '\u1E85': 'w',
  2063. '\u1E98': 'w',
  2064. '\u1E89': 'w',
  2065. '\u2C73': 'w',
  2066. '\u24E7': 'x',
  2067. '\uFF58': 'x',
  2068. '\u1E8B': 'x',
  2069. '\u1E8D': 'x',
  2070. '\u24E8': 'y',
  2071. '\uFF59': 'y',
  2072. '\u1EF3': 'y',
  2073. '\u00FD': 'y',
  2074. '\u0177': 'y',
  2075. '\u1EF9': 'y',
  2076. '\u0233': 'y',
  2077. '\u1E8F': 'y',
  2078. '\u00FF': 'y',
  2079. '\u1EF7': 'y',
  2080. '\u1E99': 'y',
  2081. '\u1EF5': 'y',
  2082. '\u01B4': 'y',
  2083. '\u024F': 'y',
  2084. '\u1EFF': 'y',
  2085. '\u24E9': 'z',
  2086. '\uFF5A': 'z',
  2087. '\u017A': 'z',
  2088. '\u1E91': 'z',
  2089. '\u017C': 'z',
  2090. '\u017E': 'z',
  2091. '\u1E93': 'z',
  2092. '\u1E95': 'z',
  2093. '\u01B6': 'z',
  2094. '\u0225': 'z',
  2095. '\u0240': 'z',
  2096. '\u2C6C': 'z',
  2097. '\uA763': 'z',
  2098. '\u0386': '\u0391',
  2099. '\u0388': '\u0395',
  2100. '\u0389': '\u0397',
  2101. '\u038A': '\u0399',
  2102. '\u03AA': '\u0399',
  2103. '\u038C': '\u039F',
  2104. '\u038E': '\u03A5',
  2105. '\u03AB': '\u03A5',
  2106. '\u038F': '\u03A9',
  2107. '\u03AC': '\u03B1',
  2108. '\u03AD': '\u03B5',
  2109. '\u03AE': '\u03B7',
  2110. '\u03AF': '\u03B9',
  2111. '\u03CA': '\u03B9',
  2112. '\u0390': '\u03B9',
  2113. '\u03CC': '\u03BF',
  2114. '\u03CD': '\u03C5',
  2115. '\u03CB': '\u03C5',
  2116. '\u03B0': '\u03C5',
  2117. '\u03C9': '\u03C9',
  2118. '\u03C2': '\u03C3'
  2119. };
  2120. return diacritics;
  2121. });
  2122. define('select2/data/base',[
  2123. '../utils'
  2124. ], function (Utils) {
  2125. function BaseAdapter ($element, options) {
  2126. BaseAdapter.__super__.constructor.call(this);
  2127. }
  2128. Utils.Extend(BaseAdapter, Utils.Observable);
  2129. BaseAdapter.prototype.current = function (callback) {
  2130. throw new Error('The `current` method must be defined in child classes.');
  2131. };
  2132. BaseAdapter.prototype.query = function (params, callback) {
  2133. throw new Error('The `query` method must be defined in child classes.');
  2134. };
  2135. BaseAdapter.prototype.bind = function (container, $container) {
  2136. // Can be implemented in subclasses
  2137. };
  2138. BaseAdapter.prototype.destroy = function () {
  2139. // Can be implemented in subclasses
  2140. };
  2141. BaseAdapter.prototype.generateResultId = function (container, data) {
  2142. var id = container.id + '-result-';
  2143. id += Utils.generateChars(4);
  2144. if (data.id != null) {
  2145. id += '-' + data.id.toString();
  2146. } else {
  2147. id += '-' + Utils.generateChars(4);
  2148. }
  2149. return id;
  2150. };
  2151. return BaseAdapter;
  2152. });
  2153. define('select2/data/select',[
  2154. './base',
  2155. '../utils',
  2156. 'jquery'
  2157. ], function (BaseAdapter, Utils, $) {
  2158. function SelectAdapter ($element, options) {
  2159. this.$element = $element;
  2160. this.options = options;
  2161. SelectAdapter.__super__.constructor.call(this);
  2162. }
  2163. Utils.Extend(SelectAdapter, BaseAdapter);
  2164. SelectAdapter.prototype.current = function (callback) {
  2165. var data = [];
  2166. var self = this;
  2167. this.$element.find(':selected').each(function () {
  2168. var $option = $(this);
  2169. var option = self.item($option);
  2170. data.push(option);
  2171. });
  2172. callback(data);
  2173. };
  2174. SelectAdapter.prototype.select = function (data) {
  2175. var self = this;
  2176. if (this.$element.prop('multiple')) {
  2177. this.current(function (currentData) {
  2178. var val = [];
  2179. data = [data];
  2180. data.push.apply(data, currentData);
  2181. for (var d = 0; d < data.length; d++) {
  2182. id = data[d].id;
  2183. if (val.indexOf(id) === -1) {
  2184. val.push(id);
  2185. }
  2186. }
  2187. self.$element.val(val);
  2188. self.$element.trigger('change');
  2189. });
  2190. } else {
  2191. var val = data.id;
  2192. this.$element.val(val);
  2193. this.$element.trigger('change');
  2194. }
  2195. };
  2196. SelectAdapter.prototype.unselect = function (data) {
  2197. var self = this;
  2198. if (!this.$element.prop('multiple')) {
  2199. return;
  2200. }
  2201. this.current(function (currentData) {
  2202. var val = [];
  2203. for (var d = 0; d < currentData.length; d++) {
  2204. id = currentData[d].id;
  2205. if (id !== data.id && val.indexOf(id) === -1) {
  2206. val.push(id);
  2207. }
  2208. }
  2209. self.$element.val(val);
  2210. self.$element.trigger('change');
  2211. });
  2212. };
  2213. SelectAdapter.prototype.bind = function (container, $container) {
  2214. var self = this;
  2215. this.container = container;
  2216. container.on('select', function (params) {
  2217. self.select(params.data);
  2218. });
  2219. container.on('unselect', function (params) {
  2220. self.unselect(params.data);
  2221. });
  2222. };
  2223. SelectAdapter.prototype.destroy = function () {
  2224. // Remove anything added to child elements
  2225. this.$element.find('*').each(function () {
  2226. // Remove any custom data set by Select2
  2227. $.removeData(this, 'data');
  2228. });
  2229. };
  2230. SelectAdapter.prototype.query = function (params, callback) {
  2231. var data = [];
  2232. var self = this;
  2233. var $options = this.$element.children();
  2234. $options.each(function () {
  2235. var $option = $(this);
  2236. if (!$option.is('option') && !$option.is('optgroup')) {
  2237. return;
  2238. }
  2239. var option = self.item($option);
  2240. var matches = self.matches(params, option);
  2241. if (matches !== null) {
  2242. data.push(matches);
  2243. }
  2244. });
  2245. callback(data);
  2246. };
  2247. SelectAdapter.prototype.option = function (data) {
  2248. var option = document.createElement('option');
  2249. option.value = data.id;
  2250. if (data.disabled) {
  2251. option.disabled = true;
  2252. }
  2253. if (data.selected) {
  2254. option.selected = true;
  2255. }
  2256. option.innerText = data.text;
  2257. var $option = $(option);
  2258. var normalizedData = this._normalizeItem(data);
  2259. normalizedData.element = option;
  2260. // Override the option's data with the combined data
  2261. $.data(option, 'data', normalizedData);
  2262. return $option;
  2263. };
  2264. SelectAdapter.prototype.item = function ($option) {
  2265. var data = {};
  2266. data = $.data($option[0], 'data');
  2267. if (data != null) {
  2268. return data;
  2269. }
  2270. if ($option.is('option')) {
  2271. data = {
  2272. id: $option.val(),
  2273. text: $option.html(),
  2274. disabled: $option.prop('disabled'),
  2275. selected: $option.prop('selected')
  2276. };
  2277. } else if ($option.is('optgroup')) {
  2278. data = {
  2279. text: $option.attr('label'),
  2280. children: []
  2281. };
  2282. var $children = $option.children('option');
  2283. var children = [];
  2284. for (var c = 0; c < $children.length; c++) {
  2285. var $child = $($children[c]);
  2286. var child = this.item($child);
  2287. children.push(child);
  2288. }
  2289. data.children = children;
  2290. }
  2291. data = this._normalizeItem(data);
  2292. data.element = $option[0];
  2293. $.data($option[0], 'data', data);
  2294. return data;
  2295. };
  2296. SelectAdapter.prototype._normalizeItem = function (item) {
  2297. if (!$.isPlainObject(item)) {
  2298. item = {
  2299. id: item,
  2300. text: item
  2301. };
  2302. }
  2303. item = $.extend({}, {
  2304. id: '',
  2305. text: ''
  2306. }, item);
  2307. var defaults = {
  2308. selected: false,
  2309. disabled: false
  2310. };
  2311. if (item.id != null) {
  2312. item.id = item.id.toString();
  2313. }
  2314. if (item.text != null) {
  2315. item.text = item.text.toString();
  2316. }
  2317. if (item._resultId == null && item.id && this.container != null) {
  2318. item._resultId = this.generateResultId(this.container, item);
  2319. }
  2320. return $.extend({}, defaults, item);
  2321. };
  2322. SelectAdapter.prototype.matches = function (params, data) {
  2323. var matcher = this.options.get('matcher');
  2324. return matcher(params, data);
  2325. };
  2326. return SelectAdapter;
  2327. });
  2328. define('select2/data/array',[
  2329. './select',
  2330. '../utils',
  2331. 'jquery'
  2332. ], function (SelectAdapter, Utils, $) {
  2333. function ArrayAdapter ($element, options) {
  2334. var data = options.get('data');
  2335. ArrayAdapter.__super__.constructor.call(this, $element, options);
  2336. this.convertToOptions(data);
  2337. }
  2338. Utils.Extend(ArrayAdapter, SelectAdapter);
  2339. ArrayAdapter.prototype.select = function (data) {
  2340. var $option = this.$element.find('option[value="' + data.id + '"]');
  2341. if ($option.length === 0) {
  2342. $option = this.option(data);
  2343. this.$element.append($option);
  2344. }
  2345. ArrayAdapter.__super__.select.call(this, data);
  2346. };
  2347. ArrayAdapter.prototype.convertToOptions = function (data) {
  2348. var self = this;
  2349. var $existing = this.$element.find('option');
  2350. var existingIds = $existing.map(function () {
  2351. return self.item($(this)).id;
  2352. }).get();
  2353. // Filter out all items except for the one passed in the argument
  2354. function onlyItem (item) {
  2355. return function () {
  2356. return $(this).val() == item.id;
  2357. };
  2358. }
  2359. for (var d = 0; d < data.length; d++) {
  2360. var item = data[d];
  2361. item.id = item.id.toString();
  2362. // Skip items which were pre-loaded, only merge the data
  2363. if (existingIds.indexOf(item.id) >= 0) {
  2364. var $existingOption = $existing.filter(onlyItem(item));
  2365. var existingData = this.item($existingOption);
  2366. var newData = $.extend(true, {}, existingData, item);
  2367. var $newOption = this.option(existingData);
  2368. $existingOption.replaceWith($newOption);
  2369. continue;
  2370. }
  2371. var $option = this.option(item);
  2372. this.$element.append($option);
  2373. }
  2374. };
  2375. return ArrayAdapter;
  2376. });
  2377. define('select2/data/ajax',[
  2378. './array',
  2379. '../utils',
  2380. 'jquery'
  2381. ], function (ArrayAdapter, Utils, $) {
  2382. function AjaxAdapter ($element, options) {
  2383. this.ajaxOptions = options.get('ajax');
  2384. if (this.ajaxOptions.processResults != null) {
  2385. this.processResults = this.ajaxOptions.processResults;
  2386. }
  2387. ArrayAdapter.__super__.constructor.call(this, $element, options);
  2388. }
  2389. Utils.Extend(AjaxAdapter, ArrayAdapter);
  2390. AjaxAdapter.prototype.processResults = function (results) {
  2391. return results;
  2392. };
  2393. AjaxAdapter.prototype.query = function (params, callback) {
  2394. var matches = [];
  2395. var self = this;
  2396. if (this._request) {
  2397. this._request.abort();
  2398. this._request = null;
  2399. }
  2400. var options = $.extend({
  2401. type: 'GET'
  2402. }, this.ajaxOptions);
  2403. if (typeof options.url === 'function') {
  2404. options.url = options.url(params);
  2405. }
  2406. if (typeof options.data === 'function') {
  2407. options.data = options.data(params);
  2408. }
  2409. function request () {
  2410. var $request = $.ajax(options);
  2411. $request.success(function (data) {
  2412. var results = self.processResults(data);
  2413. callback(results);
  2414. });
  2415. self._request = $request;
  2416. }
  2417. if (this.ajaxOptions.delay && params.term !== '') {
  2418. if (this._queryTimeout) {
  2419. window.clearTimeout(this._queryTimeout);
  2420. }
  2421. this._queryTimeout = window.setTimeout(request, this.ajaxOptions.delay);
  2422. } else {
  2423. request();
  2424. }
  2425. };
  2426. return AjaxAdapter;
  2427. });
  2428. define('select2/data/tags',[
  2429. ], function () {
  2430. function Tags (decorated, $element, options) {
  2431. var tags = options.get('tags');
  2432. decorated.call(this, $element, options);
  2433. if ($.isArray(tags)) {
  2434. for (var t = 0; t < tags.length; t++) {
  2435. var tag = tags[t];
  2436. var item = this._normalizeItem(tag);
  2437. var $option = this.option(item);
  2438. this.$element.append($option);
  2439. }
  2440. }
  2441. }
  2442. Tags.prototype.query = function (decorated, params, callback) {
  2443. var self = this;
  2444. this._removeOldTags();
  2445. if (params.term == null || params.term === '' || params.page != null) {
  2446. decorated.call(this, params, callback);
  2447. return;
  2448. }
  2449. function wrapper (data, child) {
  2450. for (var i = 0; i < data.length; i++) {
  2451. var option = data[i];
  2452. var checkChildren = (
  2453. option.children != null && !wrapper(option.children, true)
  2454. );
  2455. var checkText = option.text === params.term;
  2456. if (checkText || checkChildren) {
  2457. if (child) {
  2458. return false;
  2459. }
  2460. callback(data);
  2461. return;
  2462. }
  2463. }
  2464. if (child) {
  2465. return true;
  2466. }
  2467. var tag = self.createTag(params);
  2468. if (tag != null) {
  2469. var $option = self.option(tag);
  2470. $option.attr('data-select2-tag', true);
  2471. self.$element.append($option);
  2472. self.insertTag(data, tag);
  2473. }
  2474. callback(data);
  2475. }
  2476. decorated.call(this, params, wrapper);
  2477. };
  2478. Tags.prototype.createTag = function (decorated, params) {
  2479. return {
  2480. id: params.term,
  2481. text: params.term
  2482. };
  2483. };
  2484. Tags.prototype.insertTag = function (_, data, tag) {
  2485. data.unshift(tag);
  2486. };
  2487. Tags.prototype._removeOldTags = function (_) {
  2488. var tag = this._lastTag;
  2489. var $options = this.$element.find('option[data-select2-tag]');
  2490. $options.each(function () {
  2491. if (this.selected) {
  2492. return;
  2493. }
  2494. $(this).remove();
  2495. });
  2496. };
  2497. return Tags;
  2498. });
  2499. define('select2/data/minimumInputLength',[
  2500. ], function () {
  2501. function MinimumInputLength (decorated, $e, options) {
  2502. this.minimumInputLength = options.get('minimumInputLength');
  2503. decorated.call(this, $e, options);
  2504. }
  2505. MinimumInputLength.prototype.query = function (decorated, params, callback) {
  2506. params.term = params.term || '';
  2507. if (params.term.length < this.minimumInputLength) {
  2508. this.trigger('results:message', {
  2509. message: 'inputTooShort',
  2510. args: {
  2511. minimum: this.minimumInputLength,
  2512. input: params.term,
  2513. params: params
  2514. }
  2515. });
  2516. return;
  2517. }
  2518. decorated.call(this, params, callback);
  2519. };
  2520. return MinimumInputLength;
  2521. });
  2522. define('select2/data/maximumInputLength',[
  2523. ], function () {
  2524. function MaximumInputLength (decorated, $e, options) {
  2525. this.maximumInputLength = options.get('maximumInputLength');
  2526. decorated.call(this, $e, options);
  2527. }
  2528. MaximumInputLength.prototype.query = function (decorated, params, callback) {
  2529. params.term = params.term || '';
  2530. if (this.maximumInputLength > 0 &&
  2531. params.term.length > this.maximumInputLength) {
  2532. this.trigger('results:message', {
  2533. message: 'inputTooLong',
  2534. args: {
  2535. minimum: this.maximumInputLength,
  2536. input: params.term,
  2537. params: params
  2538. }
  2539. });
  2540. return;
  2541. }
  2542. decorated.call(this, params, callback);
  2543. };
  2544. return MaximumInputLength;
  2545. });
  2546. define('select2/dropdown',[
  2547. './utils'
  2548. ], function (Utils) {
  2549. function Dropdown ($element, options) {
  2550. this.$element = $element;
  2551. }
  2552. Utils.Extend(Dropdown, Utils.Observable);
  2553. Dropdown.prototype.render = function () {
  2554. var $dropdown = $(
  2555. '<span class="select2-dropdown">' +
  2556. '<span class="select2-results"></span>' +
  2557. '</span>'
  2558. );
  2559. this.$dropdown = $dropdown;
  2560. return $dropdown;
  2561. };
  2562. Dropdown.prototype.position = function ($dropdown, $container) {
  2563. // Should be implmented in subclasses
  2564. };
  2565. Dropdown.prototype.destroy = function () {
  2566. // Remove the dropdown from the DOM
  2567. this.$dropdown.remove();
  2568. };
  2569. Dropdown.prototype.bind = function (container, $container) {
  2570. // Can be implemented in subclasses
  2571. };
  2572. return Dropdown;
  2573. });
  2574. define('select2/dropdown/search',[
  2575. '../utils'
  2576. ], function (Utils) {
  2577. function Search () { }
  2578. Search.prototype.render = function (decorated) {
  2579. var $rendered = decorated.call(this);
  2580. var $search = $(
  2581. '<span class="select2-search select2-search--dropdown">' +
  2582. '<input class="select2-search__field" type="search" tabindex="-1"' +
  2583. ' role="textbox" />' +
  2584. '</span>'
  2585. );
  2586. this.$searchContainer = $search;
  2587. this.$search = $search.find('input');
  2588. $rendered.prepend($search);
  2589. return $rendered;
  2590. };
  2591. Search.prototype.bind = function (decorated, container, $container) {
  2592. var self = this;
  2593. decorated.call(this, container, $container);
  2594. this.$search.on('keydown', function (evt) {
  2595. self.trigger('keypress', evt);
  2596. self._keyUpPrevented = evt.isDefaultPrevented();
  2597. });
  2598. this.$search.on('keyup', function (evt) {
  2599. self.handleSearch(evt);
  2600. });
  2601. container.on('open', function () {
  2602. self.$search.attr('tabindex', 0);
  2603. self.$search.focus();
  2604. });
  2605. container.on('close', function () {
  2606. self.$search.attr('tabindex', -1);
  2607. self.$search.val('');
  2608. });
  2609. container.on('results:all', function (params) {
  2610. if (params.query.term == null || params.query.term === '') {
  2611. var showSearch = self.showSearch(params);
  2612. if (showSearch) {
  2613. self.$searchContainer.removeClass('select2-search--hide');
  2614. } else {
  2615. self.$searchContainer.addClass('select2-search--hide');
  2616. }
  2617. }
  2618. });
  2619. };
  2620. Search.prototype.handleSearch = function (evt) {
  2621. if (!this._keyUpPrevented) {
  2622. var input = this.$search.val();
  2623. this.trigger('query', {
  2624. term: input
  2625. });
  2626. }
  2627. this._keyUpPrevented = false;
  2628. };
  2629. Search.prototype.showSearch = function (_, params) {
  2630. return true;
  2631. };
  2632. return Search;
  2633. });
  2634. define('select2/dropdown/hidePlaceholder',[
  2635. ], function () {
  2636. function HidePlaceholder (decorated, $element, options, dataAdapter) {
  2637. this.placeholder = this.normalizePlaceholder(options.get('placeholder'));
  2638. decorated.call(this, $element, options, dataAdapter);
  2639. }
  2640. HidePlaceholder.prototype.append = function (decorated, data) {
  2641. data = this.removePlaceholder(data);
  2642. decorated.call(this, data);
  2643. };
  2644. HidePlaceholder.prototype.normalizePlaceholder = function (_, placeholder) {
  2645. if (typeof placeholder === 'string') {
  2646. placeholder = {
  2647. id: '',
  2648. text: placeholder
  2649. };
  2650. }
  2651. return placeholder;
  2652. };
  2653. HidePlaceholder.prototype.removePlaceholder = function (_, data) {
  2654. var modifiedData = data.slice(0);
  2655. for (var d = data.length - 1; d >= 0; d--) {
  2656. var item = data[d];
  2657. if (this.placeholder.id === item.id) {
  2658. modifiedData.splice(d, 1);
  2659. }
  2660. }
  2661. return modifiedData;
  2662. };
  2663. return HidePlaceholder;
  2664. });
  2665. define('select2/dropdown/infiniteScroll',[
  2666. 'jquery'
  2667. ], function ($) {
  2668. function InfiniteScroll (decorated, $element, options, dataAdapter) {
  2669. this.lastParams = {};
  2670. decorated.call(this, $element, options, dataAdapter);
  2671. this.$loadingMore = this.createLoadingMore();
  2672. this.loading = false;
  2673. }
  2674. InfiniteScroll.prototype.append = function (decorated, data) {
  2675. this.$loadingMore.remove();
  2676. decorated.call(this, data);
  2677. if (data.length > 0) {
  2678. this.$results.append(this.$loadingMore);
  2679. }
  2680. this.loading = false;
  2681. };
  2682. InfiniteScroll.prototype.bind = function (decorated, container, $container) {
  2683. var self = this;
  2684. decorated.call(this, container, $container);
  2685. container.on('query', function (params) {
  2686. self.lastParams = params;
  2687. self.loading = true;
  2688. });
  2689. container.on('query:append', function (params) {
  2690. self.lastParams = params;
  2691. self.loading = true;
  2692. });
  2693. this.$results.on('scroll', function () {
  2694. var loadMoreVisible = $.contains(
  2695. document.documentElement,
  2696. self.$loadingMore[0]
  2697. );
  2698. if (self.loading || !loadMoreVisible) {
  2699. return;
  2700. }
  2701. var currentOffset = self.$results.offset().top +
  2702. self.$results.outerHeight(false);
  2703. var loadingMoreOffset = self.$loadingMore.offset().top +
  2704. self.$loadingMore.outerHeight(false);
  2705. if (currentOffset + 50 >= loadingMoreOffset) {
  2706. self.loadMore();
  2707. }
  2708. });
  2709. };
  2710. InfiniteScroll.prototype.loadMore = function () {
  2711. this.loading = true;
  2712. var params = $.extend({}, {page: 1}, this.lastParams);
  2713. params.page++;
  2714. this.trigger('query:append', params);
  2715. };
  2716. InfiniteScroll.prototype.createLoadingMore = function () {
  2717. var $option = $(
  2718. '<li class="option load-more" role="treeitem"></li>'
  2719. );
  2720. var message = this.options.get('translations').get('loadingMore');
  2721. $option.html(message(this.lastParams));
  2722. return $option;
  2723. };
  2724. return InfiniteScroll;
  2725. });
  2726. define('select2/dropdown/attachBody',[
  2727. ], function () {
  2728. function AttachBody (decorated, $element, options) {
  2729. this.$dropdownParent = options.get('dropdownParent') || document.body;
  2730. decorated.call(this, $element, options);
  2731. }
  2732. AttachBody.prototype.bind = function (decorated, container, $container) {
  2733. var self = this;
  2734. var setupResultsEvents = false;
  2735. decorated.call(this, container, $container);
  2736. container.on('open', function () {
  2737. self._showDropdown();
  2738. if (!setupResultsEvents) {
  2739. setupResultsEvents = true;
  2740. container.on('results:all', function () {
  2741. self._positionDropdown();
  2742. });
  2743. container.on('results:append', function () {
  2744. self._positionDropdown();
  2745. });
  2746. }
  2747. });
  2748. container.on('close', function () {
  2749. self._hideDropdown();
  2750. });
  2751. this.$dropdownContainer.on('mousedown', function (evt) {
  2752. evt.stopPropagation();
  2753. });
  2754. };
  2755. AttachBody.prototype.position = function (decorated, $dropdown, $container) {
  2756. // Clone all of the container classes
  2757. $dropdown.attr('class', $container.attr('class'));
  2758. $dropdown.removeClass('select2');
  2759. $dropdown.addClass('select2-container--open');
  2760. $dropdown.css({
  2761. position: 'absolute'
  2762. });
  2763. $dropdown.width($container.outerWidth(false));
  2764. this.$container = $container;
  2765. };
  2766. AttachBody.prototype.render = function (decorated) {
  2767. var $container = $('<span></span>');
  2768. var $dropdown = decorated.call(this);
  2769. $container.append($dropdown);
  2770. this.$dropdownContainer = $container;
  2771. return $container;
  2772. };
  2773. AttachBody.prototype._hideDropdown = function (decorated) {
  2774. this.$dropdownContainer.detach();
  2775. };
  2776. AttachBody.prototype._positionDropdown = function () {
  2777. var $window = $(window);
  2778. var isCurrentlyAbove = this.$dropdown.hasClass('select2-dropdown--above');
  2779. var isCurrentlyBelow = this.$dropdown.hasClass('select2-dropdown--below');
  2780. var newDirection = null;
  2781. var position = this.$container.position();
  2782. var offset = this.$container.offset();
  2783. offset.bottom = offset.top + this.$container.outerHeight(false);
  2784. var container = {
  2785. height: this.$container.outerHeight(false)
  2786. };
  2787. container.top = offset.top;
  2788. container.bottom = offset.top + container.height;
  2789. var dropdown = {
  2790. height: this.$dropdown.outerHeight(false)
  2791. };
  2792. var viewport = {
  2793. top: $window.scrollTop(),
  2794. bottom: $window.scrollTop() + $window.height()
  2795. };
  2796. var enoughRoomAbove = viewport.top < (offset.top - dropdown.height);
  2797. var enoughRoomBelow = viewport.bottom > (offset.bottom + dropdown.height);
  2798. var css = {
  2799. left: offset.left,
  2800. top: container.bottom
  2801. };
  2802. if (!isCurrentlyAbove && !isCurrentlyBelow) {
  2803. newDirection = 'below';
  2804. }
  2805. if (!enoughRoomBelow && enoughRoomAbove && !isCurrentlyAbove) {
  2806. newDirection = 'above';
  2807. } else if (!enoughRoomAbove && enoughRoomBelow && isCurrentlyAbove) {
  2808. newDirection = 'below';
  2809. }
  2810. if (newDirection == 'above' || isCurrentlyAbove) {
  2811. css.top = container.top - dropdown.height;
  2812. }
  2813. if (newDirection != null) {
  2814. this.$dropdown
  2815. .removeClass('select2-dropdown--below select2-dropdown--above')
  2816. .addClass('select2-dropdown--' + newDirection);
  2817. this.$container
  2818. .removeClass('select2-container--below select2-container--above')
  2819. .addClass('select2-container--' + newDirection);
  2820. }
  2821. this.$dropdownContainer.css(css);
  2822. };
  2823. AttachBody.prototype._showDropdown = function (decorated) {
  2824. this.$dropdownContainer.appendTo(this.$dropdownParent);
  2825. this._positionDropdown();
  2826. };
  2827. return AttachBody;
  2828. });
  2829. define('select2/dropdown/minimumResultsForSearch',[
  2830. ], function () {
  2831. function countResults (data) {
  2832. count = 0;
  2833. for (var d = 0; d < data.length; d++) {
  2834. var item = data[d];
  2835. if (item.children) {
  2836. count += countResults(item.children);
  2837. } else {
  2838. count++;
  2839. }
  2840. }
  2841. return count;
  2842. }
  2843. function MinimumResultsForSearch (decorated, $element, options, dataAdapter) {
  2844. this.minimumResultsForSearch = options.get('minimumResultsForSearch');
  2845. decorated.call(this, $element, options, dataAdapter);
  2846. }
  2847. MinimumResultsForSearch.prototype.showSearch = function (decorated, params) {
  2848. if (countResults(params.data) < this.minimumResultsForSearch) {
  2849. return false;
  2850. }
  2851. return decorated.call(this, params);
  2852. };
  2853. return MinimumResultsForSearch;
  2854. });
  2855. define('select2/i18n/en',[],function () {
  2856. return {
  2857. errorLoading: function () {
  2858. return 'The results could not be loaded.';
  2859. },
  2860. inputTooLong: function (args) {
  2861. var overChars = args.input.length - args.maximum;
  2862. var message = 'Please delete ' + overChars + ' character';
  2863. if (overChars != 1) {
  2864. message += 's';
  2865. }
  2866. return message;
  2867. },
  2868. inputTooShort: function (args) {
  2869. var remainingChars = args.minimum - args.input.length;
  2870. var message = 'Please enter ' + remainingChars + ' or more characters';
  2871. return message;
  2872. },
  2873. loadingMore: function () {
  2874. return 'Loading more results…';
  2875. },
  2876. maximumSelected: function (args) {
  2877. var message = 'You can only select ' + args.maximum + ' item';
  2878. if (args.maximum != 1) {
  2879. message += 's';
  2880. }
  2881. return message;
  2882. },
  2883. noResults: function () {
  2884. return 'No results found';
  2885. },
  2886. searching: function () {
  2887. return 'Searching…';
  2888. }
  2889. };
  2890. });
  2891. define('select2/defaults',[
  2892. 'jquery',
  2893. './results',
  2894. './selection/single',
  2895. './selection/multiple',
  2896. './selection/placeholder',
  2897. './selection/allowClear',
  2898. './selection/search',
  2899. './utils',
  2900. './translation',
  2901. './diacritics',
  2902. './data/select',
  2903. './data/array',
  2904. './data/ajax',
  2905. './data/tags',
  2906. './data/minimumInputLength',
  2907. './data/maximumInputLength',
  2908. './dropdown',
  2909. './dropdown/search',
  2910. './dropdown/hidePlaceholder',
  2911. './dropdown/infiniteScroll',
  2912. './dropdown/attachBody',
  2913. './dropdown/minimumResultsForSearch',
  2914. './i18n/en'
  2915. ], function ($, ResultsList,
  2916. SingleSelection, MultipleSelection, Placeholder, AllowClear,
  2917. SelectionSearch,
  2918. Utils, Translation, DIACRITICS,
  2919. SelectData, ArrayData, AjaxData, Tags,
  2920. MinimumInputLength, MaximumInputLength,
  2921. Dropdown, DropdownSearch, HidePlaceholder, InfiniteScroll,
  2922. AttachBody, MinimumResultsForSearch,
  2923. EnglishTranslation) {
  2924. function Defaults () {
  2925. this.reset();
  2926. }
  2927. Defaults.prototype.apply = function (options) {
  2928. options = $.extend({}, this.defaults, options);
  2929. if (options.dataAdapter == null) {
  2930. if (options.ajax != null) {
  2931. options.dataAdapter = AjaxData;
  2932. } else if (options.data != null) {
  2933. options.dataAdapter = ArrayData;
  2934. } else {
  2935. options.dataAdapter = SelectData;
  2936. }
  2937. if (options.minimumInputLength > 0) {
  2938. options.dataAdapter = Utils.Decorate(
  2939. options.dataAdapter,
  2940. MinimumInputLength
  2941. );
  2942. }
  2943. if (options.maximumInputLength > 0) {
  2944. options.dataAdapter = Utils.Decorate(
  2945. options.dataAdapter,
  2946. MaximumInputLength
  2947. );
  2948. }
  2949. if (options.tags != null) {
  2950. options.dataAdapter = Utils.Decorate(options.dataAdapter, Tags);
  2951. }
  2952. }
  2953. if (options.resultsAdapter == null) {
  2954. options.resultsAdapter = ResultsList;
  2955. if (options.ajax != null) {
  2956. options.resultsAdapter = Utils.Decorate(
  2957. options.resultsAdapter,
  2958. InfiniteScroll
  2959. );
  2960. }
  2961. if (options.placeholder != null) {
  2962. options.resultsAdapter = Utils.Decorate(
  2963. options.resultsAdapter,
  2964. HidePlaceholder
  2965. );
  2966. }
  2967. }
  2968. if (options.dropdownAdapter == null) {
  2969. if (options.multiple) {
  2970. options.dropdownAdapter = Dropdown;
  2971. } else {
  2972. var SearchableDropdown = Utils.Decorate(Dropdown, DropdownSearch);
  2973. options.dropdownAdapter = SearchableDropdown;
  2974. }
  2975. if (options.minimumResultsForSearch > 0) {
  2976. options.dropdownAdapter = Utils.Decorate(
  2977. options.dropdownAdapter,
  2978. MinimumResultsForSearch
  2979. );
  2980. }
  2981. options.dropdownAdapter = Utils.Decorate(
  2982. options.dropdownAdapter,
  2983. AttachBody
  2984. );
  2985. }
  2986. if (options.selectionAdapter == null) {
  2987. if (options.multiple) {
  2988. options.selectionAdapter = MultipleSelection;
  2989. } else {
  2990. options.selectionAdapter = SingleSelection;
  2991. }
  2992. // Add the placeholder mixin if a placeholder was specified
  2993. if (options.placeholder != null) {
  2994. options.selectionAdapter = Utils.Decorate(
  2995. options.selectionAdapter,
  2996. Placeholder
  2997. );
  2998. if (options.allowClear) {
  2999. options.selectionAdapter = Utils.Decorate(
  3000. options.selectionAdapter,
  3001. AllowClear
  3002. );
  3003. }
  3004. }
  3005. if (options.multiple) {
  3006. options.selectionAdapter = Utils.Decorate(
  3007. options.selectionAdapter,
  3008. SelectionSearch
  3009. );
  3010. }
  3011. }
  3012. if (typeof options.language === 'string') {
  3013. options.language = [options.language];
  3014. }
  3015. if ($.isArray(options.language)) {
  3016. var languages = new Translation();
  3017. options.language.push('en');
  3018. var languageNames = options.language;
  3019. for (var l = 0; l < languageNames.length; l++) {
  3020. var name = languageNames[l];
  3021. var language = {};
  3022. try {
  3023. // Try to load it with the original name
  3024. language = Translation.loadPath(name);
  3025. } catch (e) {
  3026. // If we couldn't load it, check if it wasn't the full path
  3027. name = 'select2/i18n/' + name;
  3028. language = Translation.loadPath(name);
  3029. }
  3030. languages.extend(language);
  3031. }
  3032. options.translations = languages;
  3033. } else {
  3034. options.translations = new Translation(options.language);
  3035. }
  3036. return options;
  3037. };
  3038. Defaults.prototype.reset = function () {
  3039. function stripDiacritics (text) {
  3040. // Used 'uni range + named function' from http://jsperf.com/diacritics/18
  3041. function match(a) {
  3042. return DIACRITICS[a] || a;
  3043. }
  3044. return text.replace(/[^\u0000-\u007E]/g, match);
  3045. }
  3046. function matcher (params, data) {
  3047. // Always return the object if there is nothing to compare
  3048. if ($.trim(params.term) === '') {
  3049. return data;
  3050. }
  3051. // Do a recursive check for options with children
  3052. if (data.children && data.children.length > 0) {
  3053. // Clone the data object if there are children
  3054. // This is required as we modify the object to remove any non-matches
  3055. var match = $.extend(true, {}, data);
  3056. // Check each child of the option
  3057. for (var c = data.children.length - 1; c >= 0; c--) {
  3058. var child = data.children[c];
  3059. var matches = matcher(params, child);
  3060. // If there wasn't a match, remove the object in the array
  3061. if (matches == null) {
  3062. match.children.splice(c, 1);
  3063. }
  3064. }
  3065. // If any children matched, return the new object
  3066. if (match.children.length > 0) {
  3067. return match;
  3068. }
  3069. // If there were no matching children, check just the plain object
  3070. return matcher(params, match);
  3071. }
  3072. var original = stripDiacritics(data.text).toUpperCase();
  3073. var term = stripDiacritics(params.term).toUpperCase();
  3074. // Check if the text contains the term
  3075. if (original.indexOf(term) > -1) {
  3076. return data;
  3077. }
  3078. // If it doesn't contain the term, don't return anything
  3079. return null;
  3080. }
  3081. this.defaults = {
  3082. language: EnglishTranslation,
  3083. matcher: matcher,
  3084. sorter: function (data) {
  3085. return data;
  3086. },
  3087. minimumInputLength: 0,
  3088. maximumInputLength: 0,
  3089. minimumResultsForSearch: 0,
  3090. templateResult: function (result) {
  3091. return result.text;
  3092. },
  3093. templateSelection: function (selection) {
  3094. return selection.text;
  3095. },
  3096. theme: 'default'
  3097. };
  3098. };
  3099. var defaults = new Defaults();
  3100. return defaults;
  3101. });
  3102. define('select2/options',[
  3103. 'jquery',
  3104. './defaults'
  3105. ], function ($, Defaults) {
  3106. function Options (options, $element) {
  3107. this.options = options;
  3108. if ($element != null) {
  3109. this.fromElement($element);
  3110. }
  3111. this.options = Defaults.apply(this.options);
  3112. }
  3113. Options.prototype.fromElement = function ($e) {
  3114. var excludedData = ['select2'];
  3115. if (this.options.multiple == null) {
  3116. this.options.multiple = $e.prop('multiple');
  3117. }
  3118. if (this.options.disabled == null) {
  3119. this.options.disabled = $e.prop('disabled');
  3120. }
  3121. if (this.options.language == null) {
  3122. if ($e.prop('lang')) {
  3123. this.options.language = $e.prop('lang').toLowerCase();
  3124. } else if ($e.closest('[lang]').prop('lang')) {
  3125. this.options.language = $e.closest('[lang]').prop('lang');
  3126. }
  3127. }
  3128. $e.prop('disabled', this.options.disabled);
  3129. $e.prop('multiple', this.options.multiple);
  3130. var data = $e.data();
  3131. function convertData (data) {
  3132. for (var originalKey in data) {
  3133. var keys = originalKey.split('-');
  3134. var dataLevel = data;
  3135. if (keys.length === 1) {
  3136. continue;
  3137. }
  3138. for (var k = 0; k < keys.length; k++) {
  3139. var key = keys[k];
  3140. // Lowercase the first letter
  3141. // By default, dash-separated becomes camelCase
  3142. key = key.substring(0, 1).toLowerCase() + key.substring(1);
  3143. if (!(key in dataLevel)) {
  3144. dataLevel[key] = {};
  3145. }
  3146. if (k == keys.length - 1) {
  3147. dataLevel[key] = data[originalKey];
  3148. }
  3149. dataLevel = dataLevel[key];
  3150. }
  3151. delete data[originalKey];
  3152. }
  3153. return data;
  3154. }
  3155. data = convertData(data);
  3156. for (var key in data) {
  3157. if (excludedData.indexOf(key) > -1) {
  3158. continue;
  3159. }
  3160. if ($.isPlainObject(this.options[key])) {
  3161. $.extend(this.options[key], data[key]);
  3162. } else {
  3163. this.options[key] = data[key];
  3164. }
  3165. }
  3166. return this;
  3167. };
  3168. Options.prototype.get = function (key) {
  3169. return this.options[key];
  3170. };
  3171. Options.prototype.set = function (key, val) {
  3172. this.options[key] = val;
  3173. };
  3174. return Options;
  3175. });
  3176. define('select2/core',[
  3177. 'jquery',
  3178. './options',
  3179. './utils',
  3180. './keys'
  3181. ], function ($, Options, Utils, KEYS) {
  3182. var Select2 = function ($element, options) {
  3183. if ($element.data('select2') != null) {
  3184. $element.data('select2').destroy();
  3185. }
  3186. this.$element = $element;
  3187. this.id = this._generateId($element);
  3188. options = options || {};
  3189. this.options = new Options(options, $element);
  3190. Select2.__super__.constructor.call(this);
  3191. // Set up containers and adapters
  3192. var DataAdapter = this.options.get('dataAdapter');
  3193. this.data = new DataAdapter($element, this.options);
  3194. var $container = this.render();
  3195. this._placeContainer($container);
  3196. var SelectionAdapter = this.options.get('selectionAdapter');
  3197. this.selection = new SelectionAdapter($element, this.options);
  3198. this.$selection = this.selection.render();
  3199. this.selection.position(this.$selection, $container);
  3200. var DropdownAdapter = this.options.get('dropdownAdapter');
  3201. this.dropdown = new DropdownAdapter($element, this.options);
  3202. this.$dropdown = this.dropdown.render();
  3203. this.dropdown.position(this.$dropdown, $container);
  3204. var ResultsAdapter = this.options.get('resultsAdapter');
  3205. this.results = new ResultsAdapter($element, this.options, this.data);
  3206. this.$results = this.results.render();
  3207. this.results.position(this.$results, this.$dropdown);
  3208. // Bind events
  3209. var self = this;
  3210. // Bind the container to all of the adapters
  3211. this._bindAdapters();
  3212. // Register any DOM event handlers
  3213. this._registerDomEvents();
  3214. // Register any internal event handlers
  3215. this._registerDataEvents();
  3216. this._registerSelectionEvents();
  3217. this._registerDropdownEvents();
  3218. this._registerResultsEvents();
  3219. this._registerEvents();
  3220. // Set the initial state
  3221. this.data.current(function (initialData) {
  3222. self.trigger('selection:update', {
  3223. data: initialData
  3224. });
  3225. });
  3226. // Hide the original select
  3227. $element.hide();
  3228. // Synchronize any monitored attributes
  3229. this._syncAttributes();
  3230. this._tabindex = $element.attr('tabindex') || 0;
  3231. $element.attr('tabindex', '-1');
  3232. $element.data('select2', this);
  3233. };
  3234. Utils.Extend(Select2, Utils.Observable);
  3235. Select2.prototype._generateId = function ($element) {
  3236. var id = '';
  3237. if ($element.attr('id') != null) {
  3238. id = $element.attr('id');
  3239. } else if ($element.attr('name') != null) {
  3240. id = $element.attr('name') + '-' + Utils.generateChars(2);
  3241. } else {
  3242. id = Utils.generateChars(4);
  3243. }
  3244. id = 'select2-' + id;
  3245. return id;
  3246. };
  3247. Select2.prototype._placeContainer = function ($container) {
  3248. $container.insertAfter(this.$element);
  3249. $container.width(this.$element.outerWidth(false));
  3250. };
  3251. Select2.prototype._bindAdapters = function () {
  3252. this.data.bind(this, this.$container);
  3253. this.selection.bind(this, this.$container);
  3254. this.dropdown.bind(this, this.$container);
  3255. this.results.bind(this, this.$container);
  3256. };
  3257. Select2.prototype._registerDomEvents = function () {
  3258. var self = this;
  3259. this.$element.on('change.select2', function () {
  3260. self.data.current(function (data) {
  3261. self.trigger('selection:update', {
  3262. data: data
  3263. });
  3264. });
  3265. });
  3266. this._sync = Utils.bind(this._syncAttributes, this);
  3267. if (this.$element[0].attachEvent) {
  3268. this.$element[0].attachEvent('onpropertychange', this._sync);
  3269. }
  3270. var observer = window.MutationObserver ||
  3271. window.WebKitMutationObserver ||
  3272. window.MozMutationObserver
  3273. ;
  3274. if (observer != null) {
  3275. this._observer = new observer(function (mutations) {
  3276. $.each(mutations, self._sync);
  3277. });
  3278. this._observer.observe(this.$element[0], {
  3279. attributes: true,
  3280. subtree: false
  3281. });
  3282. }
  3283. };
  3284. Select2.prototype._registerDataEvents = function () {
  3285. var self = this;
  3286. this.data.on('results:message', function (params) {
  3287. self.trigger('results:message', params);
  3288. });
  3289. };
  3290. Select2.prototype._registerSelectionEvents = function () {
  3291. var self = this;
  3292. this.selection.on('open', function () {
  3293. self.open();
  3294. });
  3295. this.selection.on('close', function () {
  3296. self.close();
  3297. });
  3298. this.selection.on('toggle', function () {
  3299. self.toggleDropdown();
  3300. });
  3301. this.selection.on('results:select', function () {
  3302. self.trigger('results:select');
  3303. });
  3304. this.selection.on('results:previous', function () {
  3305. self.trigger('results:previous');
  3306. });
  3307. this.selection.on('results:next', function () {
  3308. self.trigger('results:next');
  3309. });
  3310. this.selection.on('unselected', function (params) {
  3311. self.trigger('unselect', params);
  3312. self.close();
  3313. });
  3314. this.selection.on('query', function (params) {
  3315. self.trigger('query', params);
  3316. });
  3317. this.selection.on('keypress', function (e) {
  3318. self.trigger('keypress', e);
  3319. });
  3320. };
  3321. Select2.prototype._registerDropdownEvents = function () {
  3322. var self = this;
  3323. this.dropdown.on('query', function (params) {
  3324. self.trigger('query', params);
  3325. });
  3326. this.dropdown.on('keypress', function (e) {
  3327. self.trigger('keypress', e);
  3328. });
  3329. };
  3330. Select2.prototype._registerResultsEvents = function () {
  3331. var self = this;
  3332. this.results.on('query:append', function (params) {
  3333. self.trigger('query:append', params);
  3334. });
  3335. this.results.on('selected', function (params) {
  3336. self.trigger('select', params);
  3337. self.close();
  3338. });
  3339. this.results.on('unselected', function (params) {
  3340. self.trigger('unselect', params);
  3341. self.close();
  3342. });
  3343. this.results.on('results:focus', function (params) {
  3344. self.trigger('results:focus', params);
  3345. });
  3346. };
  3347. Select2.prototype._registerEvents = function () {
  3348. var self = this;
  3349. this.on('open', function () {
  3350. self.$container.addClass('select2-container--open');
  3351. });
  3352. this.on('close', function () {
  3353. self.$container.removeClass('select2-container--open');
  3354. });
  3355. this.on('enable', function () {
  3356. self.$container.removeClass('select2-container--disabled');
  3357. });
  3358. this.on('disable', function () {
  3359. self.$container.addClass('select2-container--disabled');
  3360. });
  3361. this.on('query', function (params) {
  3362. this.data.query(params, function (data) {
  3363. self.trigger('results:all', {
  3364. data: data,
  3365. query: params
  3366. });
  3367. });
  3368. });
  3369. this.on('query:append', function (params) {
  3370. this.data.query(params, function (data) {
  3371. self.trigger('results:append', {
  3372. data: data,
  3373. query: params
  3374. });
  3375. });
  3376. });
  3377. this.on('keypress', function (evt) {
  3378. var key = evt.which;
  3379. if (self.isOpen()) {
  3380. if (key === KEYS.ENTER) {
  3381. self.trigger('results:select');
  3382. evt.preventDefault();
  3383. } else if (key === KEYS.UP) {
  3384. self.trigger('results:previous');
  3385. evt.preventDefault();
  3386. } else if (key === KEYS.DOWN) {
  3387. self.trigger('results:next');
  3388. evt.preventDefault();
  3389. } else if (key === KEYS.ESC || key === KEYS.TAB) {
  3390. self.close();
  3391. evt.preventDefault();
  3392. }
  3393. } else {
  3394. if (key === KEYS.ENTER || key === KEYS.SPACE ||
  3395. ((key === KEYS.DOWN || key === KEYS.UP) && evt.altKey)) {
  3396. self.open();
  3397. evt.preventDefault();
  3398. }
  3399. }
  3400. });
  3401. };
  3402. Select2.prototype._syncAttributes = function () {
  3403. this.options.set('disabled', this.$element.prop('disabled'));
  3404. if (this.options.get('disabled')) {
  3405. if (this.isOpen()) {
  3406. this.trigger('close');
  3407. }
  3408. this.trigger('disable');
  3409. } else {
  3410. this.trigger('enable');
  3411. }
  3412. };
  3413. Select2.prototype.toggleDropdown = function () {
  3414. if (this.options.get('disabled')) {
  3415. return;
  3416. }
  3417. if (this.isOpen()) {
  3418. this.close();
  3419. } else {
  3420. this.open();
  3421. }
  3422. };
  3423. Select2.prototype.open = function () {
  3424. if (this.isOpen()) {
  3425. return;
  3426. }
  3427. this.trigger('query', {});
  3428. this.trigger('open');
  3429. };
  3430. Select2.prototype.close = function () {
  3431. if (!this.isOpen()) {
  3432. return;
  3433. }
  3434. this.trigger('close');
  3435. };
  3436. Select2.prototype.isOpen = function () {
  3437. return this.$container.hasClass('select2-container--open');
  3438. };
  3439. Select2.prototype.enable = function (args) {
  3440. if (console && console.warn) {
  3441. console.warn(
  3442. 'Select2: The `select2("val")` method has been deprecated and will be' +
  3443. ' removed in later Select2 versions. Use $element.prop("disabled") ' +
  3444. 'instead.'
  3445. );
  3446. }
  3447. if (args.length === 0) {
  3448. args = [true];
  3449. }
  3450. var disabled = !args[0];
  3451. this.$element.prop('disabled', disabled);
  3452. };
  3453. Select2.prototype.val = function (args) {
  3454. if (console && console.warn) {
  3455. console.warn(
  3456. 'Select2: The `select2("val")` method has been deprecated and will be' +
  3457. ' removed in later Select2 versions. Use $element.val() instead.'
  3458. );
  3459. }
  3460. if (args.length === 0) {
  3461. return this.$element.val();
  3462. }
  3463. var newVal = args[0];
  3464. if ($.isArray(newVal)) {
  3465. newVal = $.map(newVal, function (obj) {
  3466. return obj.toString();
  3467. });
  3468. }
  3469. this.$element.val(newVal).trigger('change');
  3470. };
  3471. Select2.prototype.destroy = function () {
  3472. this.$container.remove();
  3473. if (this.$element[0].detachEvent) {
  3474. this.$element[0].detachEvent('onpropertychange', this._sync);
  3475. }
  3476. if (this._observer != null) {
  3477. this._observer.disconnect();
  3478. this._observer = null;
  3479. }
  3480. this._sync = null;
  3481. this.$element.off('.select2');
  3482. this.$element.attr('tabindex', this._tabindex);
  3483. this.$element.show();
  3484. this.$element.removeData('select2');
  3485. this.data.destroy();
  3486. this.selection.destroy();
  3487. this.dropdown.destroy();
  3488. this.results.destroy();
  3489. this.data = null;
  3490. this.selection = null;
  3491. this.dropdown = null;
  3492. this.results = null;
  3493. };
  3494. Select2.prototype.render = function () {
  3495. var $container = $(
  3496. '<span class="select2 select2-container">' +
  3497. '<span class="selection"></span>' +
  3498. '<span class="dropdown-wrapper" aria-hidden="true"></span>' +
  3499. '</span>'
  3500. );
  3501. this.$container = $container;
  3502. this.$container.addClass('select2-container--' + this.options.get('theme'));
  3503. $container.data('element', this.$element);
  3504. return $container;
  3505. };
  3506. return Select2;
  3507. });
  3508. define('jquery.select2',[
  3509. 'jquery',
  3510. 'select2/core'
  3511. ], function ($, Select2) {
  3512. if ($.fn.select2 == null) {
  3513. $.fn.select2 = function (options) {
  3514. options = options || {};
  3515. if (typeof options === 'object') {
  3516. this.each(function () {
  3517. var instance = new Select2($(this), options);
  3518. });
  3519. } else if (typeof options === 'string') {
  3520. var instance = this.data('select2');
  3521. var args = Array.prototype.slice.call(arguments, 1);
  3522. instance[options](args);
  3523. } else {
  3524. throw new Error('Invalid arguments for Select2: ' + options);
  3525. }
  3526. };
  3527. }
  3528. return Select2;
  3529. });
  3530. require('jquery.select2'); $.fn.select2.amd = { define: define, require: require };}());