select2.amd.full.js 119 KB

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