select2.js 117 KB

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