select2.amd.full.js 115 KB

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