select2.js 114 KB

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