select2.js 149 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084
  1. /*!
  2. * Select2 4.1.0-beta.0
  3. * https://select2.github.io
  4. *
  5. * Released under the MIT license
  6. * https://github.com/select2/select2/blob/master/LICENSE.md
  7. */
  8. ;(function (factory) {
  9. if (typeof define === 'function' && define.amd) {
  10. // AMD. Register as an anonymous module.
  11. define(['jquery'], factory);
  12. } else if (typeof module === 'object' && module.exports) {
  13. // Node/CommonJS
  14. module.exports = function (root, jQuery) {
  15. if (jQuery === undefined) {
  16. // require('jQuery') returns a factory that requires window to
  17. // build a jQuery instance, we normalize how we use modules
  18. // that require this pattern but the window provided is a noop
  19. // if it's defined (how jquery works)
  20. if (typeof window !== 'undefined') {
  21. jQuery = require('jquery');
  22. }
  23. else {
  24. jQuery = require('jquery')(root);
  25. }
  26. }
  27. factory(jQuery);
  28. return jQuery;
  29. };
  30. } else {
  31. // Browser globals
  32. factory(jQuery);
  33. }
  34. } (function (jQuery) {
  35. // This is needed so we can catch the AMD loader configuration and use it
  36. // The inner file should be wrapped (by `banner.start.js`) in a function that
  37. // returns the AMD loader references.
  38. var S2 =(function () {
  39. // Restore the Select2 AMD loader so it can be used
  40. // Needed mostly in the language files, where the loader is not inserted
  41. if (jQuery && jQuery.fn && jQuery.fn.select2 && jQuery.fn.select2.amd) {
  42. var S2 = jQuery.fn.select2.amd;
  43. }
  44. var S2;(function () { if (!S2 || !S2.requirejs) {
  45. if (!S2) { S2 = {}; } else { require = S2; }
  46. /**
  47. * @license almond 0.3.3 Copyright jQuery Foundation and other contributors.
  48. * Released under MIT license, http://github.com/requirejs/almond/LICENSE
  49. */
  50. //Going sloppy to avoid 'use strict' string cost, but strict practices should
  51. //be followed.
  52. /*global setTimeout: false */
  53. var requirejs, require, define;
  54. (function (undef) {
  55. var main, req, makeMap, handlers,
  56. defined = {},
  57. waiting = {},
  58. config = {},
  59. defining = {},
  60. hasOwn = Object.prototype.hasOwnProperty,
  61. aps = [].slice,
  62. jsSuffixRegExp = /\.js$/;
  63. function hasProp(obj, prop) {
  64. return hasOwn.call(obj, prop);
  65. }
  66. /**
  67. * Given a relative module name, like ./something, normalize it to
  68. * a real name that can be mapped to a path.
  69. * @param {String} name the relative name
  70. * @param {String} baseName a real name that the name arg is relative
  71. * to.
  72. * @returns {String} normalized name
  73. */
  74. function normalize(name, baseName) {
  75. var nameParts, nameSegment, mapValue, foundMap, lastIndex,
  76. foundI, foundStarMap, starI, i, j, part, normalizedBaseParts,
  77. baseParts = baseName && baseName.split("/"),
  78. map = config.map,
  79. starMap = (map && map['*']) || {};
  80. //Adjust any relative paths.
  81. if (name) {
  82. name = name.split('/');
  83. lastIndex = name.length - 1;
  84. // If wanting node ID compatibility, strip .js from end
  85. // of IDs. Have to do this here, and not in nameToUrl
  86. // because node allows either .js or non .js to map
  87. // to same file.
  88. if (config.nodeIdCompat && jsSuffixRegExp.test(name[lastIndex])) {
  89. name[lastIndex] = name[lastIndex].replace(jsSuffixRegExp, '');
  90. }
  91. // Starts with a '.' so need the baseName
  92. if (name[0].charAt(0) === '.' && baseParts) {
  93. //Convert baseName to array, and lop off the last part,
  94. //so that . matches that 'directory' and not name of the baseName's
  95. //module. For instance, baseName of 'one/two/three', maps to
  96. //'one/two/three.js', but we want the directory, 'one/two' for
  97. //this normalization.
  98. normalizedBaseParts = baseParts.slice(0, baseParts.length - 1);
  99. name = normalizedBaseParts.concat(name);
  100. }
  101. //start trimDots
  102. for (i = 0; i < name.length; i++) {
  103. part = name[i];
  104. if (part === '.') {
  105. name.splice(i, 1);
  106. i -= 1;
  107. } else if (part === '..') {
  108. // If at the start, or previous value is still ..,
  109. // keep them so that when converted to a path it may
  110. // still work when converted to a path, even though
  111. // as an ID it is less than ideal. In larger point
  112. // releases, may be better to just kick out an error.
  113. if (i === 0 || (i === 1 && name[2] === '..') || name[i - 1] === '..') {
  114. continue;
  115. } else if (i > 0) {
  116. name.splice(i - 1, 2);
  117. i -= 2;
  118. }
  119. }
  120. }
  121. //end trimDots
  122. name = name.join('/');
  123. }
  124. //Apply map config if available.
  125. if ((baseParts || starMap) && map) {
  126. nameParts = name.split('/');
  127. for (i = nameParts.length; i > 0; i -= 1) {
  128. nameSegment = nameParts.slice(0, i).join("/");
  129. if (baseParts) {
  130. //Find the longest baseName segment match in the config.
  131. //So, do joins on the biggest to smallest lengths of baseParts.
  132. for (j = baseParts.length; j > 0; j -= 1) {
  133. mapValue = map[baseParts.slice(0, j).join('/')];
  134. //baseName segment has config, find if it has one for
  135. //this name.
  136. if (mapValue) {
  137. mapValue = mapValue[nameSegment];
  138. if (mapValue) {
  139. //Match, update name to the new value.
  140. foundMap = mapValue;
  141. foundI = i;
  142. break;
  143. }
  144. }
  145. }
  146. }
  147. if (foundMap) {
  148. break;
  149. }
  150. //Check for a star map match, but just hold on to it,
  151. //if there is a shorter segment match later in a matching
  152. //config, then favor over this star map.
  153. if (!foundStarMap && starMap && starMap[nameSegment]) {
  154. foundStarMap = starMap[nameSegment];
  155. starI = i;
  156. }
  157. }
  158. if (!foundMap && foundStarMap) {
  159. foundMap = foundStarMap;
  160. foundI = starI;
  161. }
  162. if (foundMap) {
  163. nameParts.splice(0, foundI, foundMap);
  164. name = nameParts.join('/');
  165. }
  166. }
  167. return name;
  168. }
  169. function makeRequire(relName, forceSync) {
  170. return function () {
  171. //A version of a require function that passes a moduleName
  172. //value for items that may need to
  173. //look up paths relative to the moduleName
  174. var args = aps.call(arguments, 0);
  175. //If first arg is not require('string'), and there is only
  176. //one arg, it is the array form without a callback. Insert
  177. //a null so that the following concat is correct.
  178. if (typeof args[0] !== 'string' && args.length === 1) {
  179. args.push(null);
  180. }
  181. return req.apply(undef, args.concat([relName, forceSync]));
  182. };
  183. }
  184. function makeNormalize(relName) {
  185. return function (name) {
  186. return normalize(name, relName);
  187. };
  188. }
  189. function makeLoad(depName) {
  190. return function (value) {
  191. defined[depName] = value;
  192. };
  193. }
  194. function callDep(name) {
  195. if (hasProp(waiting, name)) {
  196. var args = waiting[name];
  197. delete waiting[name];
  198. defining[name] = true;
  199. main.apply(undef, args);
  200. }
  201. if (!hasProp(defined, name) && !hasProp(defining, name)) {
  202. throw new Error('No ' + name);
  203. }
  204. return defined[name];
  205. }
  206. //Turns a plugin!resource to [plugin, resource]
  207. //with the plugin being undefined if the name
  208. //did not have a plugin prefix.
  209. function splitPrefix(name) {
  210. var prefix,
  211. index = name ? name.indexOf('!') : -1;
  212. if (index > -1) {
  213. prefix = name.substring(0, index);
  214. name = name.substring(index + 1, name.length);
  215. }
  216. return [prefix, name];
  217. }
  218. //Creates a parts array for a relName where first part is plugin ID,
  219. //second part is resource ID. Assumes relName has already been normalized.
  220. function makeRelParts(relName) {
  221. return relName ? splitPrefix(relName) : [];
  222. }
  223. /**
  224. * Makes a name map, normalizing the name, and using a plugin
  225. * for normalization if necessary. Grabs a ref to plugin
  226. * too, as an optimization.
  227. */
  228. makeMap = function (name, relParts) {
  229. var plugin,
  230. parts = splitPrefix(name),
  231. prefix = parts[0],
  232. relResourceName = relParts[1];
  233. name = parts[1];
  234. if (prefix) {
  235. prefix = normalize(prefix, relResourceName);
  236. plugin = callDep(prefix);
  237. }
  238. //Normalize according
  239. if (prefix) {
  240. if (plugin && plugin.normalize) {
  241. name = plugin.normalize(name, makeNormalize(relResourceName));
  242. } else {
  243. name = normalize(name, relResourceName);
  244. }
  245. } else {
  246. name = normalize(name, relResourceName);
  247. parts = splitPrefix(name);
  248. prefix = parts[0];
  249. name = parts[1];
  250. if (prefix) {
  251. plugin = callDep(prefix);
  252. }
  253. }
  254. //Using ridiculous property names for space reasons
  255. return {
  256. f: prefix ? prefix + '!' + name : name, //fullName
  257. n: name,
  258. pr: prefix,
  259. p: plugin
  260. };
  261. };
  262. function makeConfig(name) {
  263. return function () {
  264. return (config && config.config && config.config[name]) || {};
  265. };
  266. }
  267. handlers = {
  268. require: function (name) {
  269. return makeRequire(name);
  270. },
  271. exports: function (name) {
  272. var e = defined[name];
  273. if (typeof e !== 'undefined') {
  274. return e;
  275. } else {
  276. return (defined[name] = {});
  277. }
  278. },
  279. module: function (name) {
  280. return {
  281. id: name,
  282. uri: '',
  283. exports: defined[name],
  284. config: makeConfig(name)
  285. };
  286. }
  287. };
  288. main = function (name, deps, callback, relName) {
  289. var cjsModule, depName, ret, map, i, relParts,
  290. args = [],
  291. callbackType = typeof callback,
  292. usingExports;
  293. //Use name if no relName
  294. relName = relName || name;
  295. relParts = makeRelParts(relName);
  296. //Call the callback to define the module, if necessary.
  297. if (callbackType === 'undefined' || callbackType === 'function') {
  298. //Pull out the defined dependencies and pass the ordered
  299. //values to the callback.
  300. //Default to [require, exports, module] if no deps
  301. deps = !deps.length && callback.length ? ['require', 'exports', 'module'] : deps;
  302. for (i = 0; i < deps.length; i += 1) {
  303. map = makeMap(deps[i], relParts);
  304. depName = map.f;
  305. //Fast path CommonJS standard dependencies.
  306. if (depName === "require") {
  307. args[i] = handlers.require(name);
  308. } else if (depName === "exports") {
  309. //CommonJS module spec 1.1
  310. args[i] = handlers.exports(name);
  311. usingExports = true;
  312. } else if (depName === "module") {
  313. //CommonJS module spec 1.1
  314. cjsModule = args[i] = handlers.module(name);
  315. } else if (hasProp(defined, depName) ||
  316. hasProp(waiting, depName) ||
  317. hasProp(defining, depName)) {
  318. args[i] = callDep(depName);
  319. } else if (map.p) {
  320. map.p.load(map.n, makeRequire(relName, true), makeLoad(depName), {});
  321. args[i] = defined[depName];
  322. } else {
  323. throw new Error(name + ' missing ' + depName);
  324. }
  325. }
  326. ret = callback ? callback.apply(defined[name], args) : undefined;
  327. if (name) {
  328. //If setting exports via "module" is in play,
  329. //favor that over return value and exports. After that,
  330. //favor a non-undefined return value over exports use.
  331. if (cjsModule && cjsModule.exports !== undef &&
  332. cjsModule.exports !== defined[name]) {
  333. defined[name] = cjsModule.exports;
  334. } else if (ret !== undef || !usingExports) {
  335. //Use the return value from the function.
  336. defined[name] = ret;
  337. }
  338. }
  339. } else if (name) {
  340. //May just be an object definition for the module. Only
  341. //worry about defining if have a module name.
  342. defined[name] = callback;
  343. }
  344. };
  345. requirejs = require = req = function (deps, callback, relName, forceSync, alt) {
  346. if (typeof deps === "string") {
  347. if (handlers[deps]) {
  348. //callback in this case is really relName
  349. return handlers[deps](callback);
  350. }
  351. //Just return the module wanted. In this scenario, the
  352. //deps arg is the module name, and second arg (if passed)
  353. //is just the relName.
  354. //Normalize module name, if it contains . or ..
  355. return callDep(makeMap(deps, makeRelParts(callback)).f);
  356. } else if (!deps.splice) {
  357. //deps is a config object, not an array.
  358. config = deps;
  359. if (config.deps) {
  360. req(config.deps, config.callback);
  361. }
  362. if (!callback) {
  363. return;
  364. }
  365. if (callback.splice) {
  366. //callback is an array, which means it is a dependency list.
  367. //Adjust args if there are dependencies
  368. deps = callback;
  369. callback = relName;
  370. relName = null;
  371. } else {
  372. deps = undef;
  373. }
  374. }
  375. //Support require(['a'])
  376. callback = callback || function () {};
  377. //If relName is a function, it is an errback handler,
  378. //so remove it.
  379. if (typeof relName === 'function') {
  380. relName = forceSync;
  381. forceSync = alt;
  382. }
  383. //Simulate async callback;
  384. if (forceSync) {
  385. main(undef, deps, callback, relName);
  386. } else {
  387. //Using a non-zero value because of concern for what old browsers
  388. //do, and latest browsers "upgrade" to 4 if lower value is used:
  389. //http://www.whatwg.org/specs/web-apps/current-work/multipage/timers.html#dom-windowtimers-settimeout:
  390. //If want a value immediately, use require('id') instead -- something
  391. //that works in almond on the global level, but not guaranteed and
  392. //unlikely to work in other AMD implementations.
  393. setTimeout(function () {
  394. main(undef, deps, callback, relName);
  395. }, 4);
  396. }
  397. return req;
  398. };
  399. /**
  400. * Just drops the config on the floor, but returns req in case
  401. * the config return value is used.
  402. */
  403. req.config = function (cfg) {
  404. return req(cfg);
  405. };
  406. /**
  407. * Expose module registry for debugging and tooling
  408. */
  409. requirejs._defined = defined;
  410. define = function (name, deps, callback) {
  411. if (typeof name !== 'string') {
  412. throw new Error('See almond README: incorrect module build, no module name');
  413. }
  414. //This module may not have dependencies
  415. if (!deps.splice) {
  416. //deps is not an array, so probably means
  417. //an object literal or factory function for
  418. //the value. Adjust args.
  419. callback = deps;
  420. deps = [];
  421. }
  422. if (!hasProp(defined, name) && !hasProp(waiting, name)) {
  423. waiting[name] = [name, deps, callback];
  424. }
  425. };
  426. define.amd = {
  427. jQuery: true
  428. };
  429. }());
  430. S2.requirejs = requirejs;S2.require = require;S2.define = define;
  431. }
  432. }());
  433. S2.define("almond", function(){});
  434. /* global jQuery:false, $:false */
  435. S2.define('jquery',[],function () {
  436. var _$ = jQuery || $;
  437. if (_$ == null && console && console.error) {
  438. console.error(
  439. 'Select2: An instance of jQuery or a jQuery-compatible library was not ' +
  440. 'found. Make sure that you are including jQuery before Select2 on your ' +
  441. 'web page.'
  442. );
  443. }
  444. return _$;
  445. });
  446. S2.define('select2/utils',[
  447. 'jquery'
  448. ], function ($) {
  449. var Utils = {};
  450. Utils.Extend = function (ChildClass, SuperClass) {
  451. var __hasProp = {}.hasOwnProperty;
  452. function BaseConstructor () {
  453. this.constructor = ChildClass;
  454. }
  455. for (var key in SuperClass) {
  456. if (__hasProp.call(SuperClass, key)) {
  457. ChildClass[key] = SuperClass[key];
  458. }
  459. }
  460. BaseConstructor.prototype = SuperClass.prototype;
  461. ChildClass.prototype = new BaseConstructor();
  462. ChildClass.__super__ = SuperClass.prototype;
  463. return ChildClass;
  464. };
  465. function getMethods (theClass) {
  466. var proto = theClass.prototype;
  467. var methods = [];
  468. for (var methodName in proto) {
  469. var m = proto[methodName];
  470. if (typeof m !== 'function') {
  471. continue;
  472. }
  473. if (methodName === 'constructor') {
  474. continue;
  475. }
  476. methods.push(methodName);
  477. }
  478. return methods;
  479. }
  480. Utils.Decorate = function (SuperClass, DecoratorClass) {
  481. var decoratedMethods = getMethods(DecoratorClass);
  482. var superMethods = getMethods(SuperClass);
  483. function DecoratedClass () {
  484. var unshift = Array.prototype.unshift;
  485. var argCount = DecoratorClass.prototype.constructor.length;
  486. var calledConstructor = SuperClass.prototype.constructor;
  487. if (argCount > 0) {
  488. unshift.call(arguments, SuperClass.prototype.constructor);
  489. calledConstructor = DecoratorClass.prototype.constructor;
  490. }
  491. calledConstructor.apply(this, arguments);
  492. }
  493. DecoratorClass.displayName = SuperClass.displayName;
  494. function ctr () {
  495. this.constructor = DecoratedClass;
  496. }
  497. DecoratedClass.prototype = new ctr();
  498. for (var m = 0; m < superMethods.length; m++) {
  499. var superMethod = superMethods[m];
  500. DecoratedClass.prototype[superMethod] =
  501. SuperClass.prototype[superMethod];
  502. }
  503. var calledMethod = function (methodName) {
  504. // Stub out the original method if it's not decorating an actual method
  505. var originalMethod = function () {};
  506. if (methodName in DecoratedClass.prototype) {
  507. originalMethod = DecoratedClass.prototype[methodName];
  508. }
  509. var decoratedMethod = DecoratorClass.prototype[methodName];
  510. return function () {
  511. var unshift = Array.prototype.unshift;
  512. unshift.call(arguments, originalMethod);
  513. return decoratedMethod.apply(this, arguments);
  514. };
  515. };
  516. for (var d = 0; d < decoratedMethods.length; d++) {
  517. var decoratedMethod = decoratedMethods[d];
  518. DecoratedClass.prototype[decoratedMethod] = calledMethod(decoratedMethod);
  519. }
  520. return DecoratedClass;
  521. };
  522. var Observable = function () {
  523. this.listeners = {};
  524. };
  525. Observable.prototype.on = function (event, callback) {
  526. this.listeners = this.listeners || {};
  527. if (event in this.listeners) {
  528. this.listeners[event].push(callback);
  529. } else {
  530. this.listeners[event] = [callback];
  531. }
  532. };
  533. Observable.prototype.trigger = function (event) {
  534. var slice = Array.prototype.slice;
  535. var params = slice.call(arguments, 1);
  536. this.listeners = this.listeners || {};
  537. // Params should always come in as an array
  538. if (params == null) {
  539. params = [];
  540. }
  541. // If there are no arguments to the event, use a temporary object
  542. if (params.length === 0) {
  543. params.push({});
  544. }
  545. // Set the `_type` of the first object to the event
  546. params[0]._type = event;
  547. if (event in this.listeners) {
  548. this.invoke(this.listeners[event], slice.call(arguments, 1));
  549. }
  550. if ('*' in this.listeners) {
  551. this.invoke(this.listeners['*'], arguments);
  552. }
  553. };
  554. Observable.prototype.invoke = function (listeners, params) {
  555. for (var i = 0, len = listeners.length; i < len; i++) {
  556. listeners[i].apply(this, params);
  557. }
  558. };
  559. Utils.Observable = Observable;
  560. Utils.generateChars = function (length) {
  561. var chars = '';
  562. for (var i = 0; i < length; i++) {
  563. var randomChar = Math.floor(Math.random() * 36);
  564. chars += randomChar.toString(36);
  565. }
  566. return chars;
  567. };
  568. Utils.bind = function (func, context) {
  569. return function () {
  570. func.apply(context, arguments);
  571. };
  572. };
  573. Utils._convertData = function (data) {
  574. for (var originalKey in data) {
  575. var keys = originalKey.split('-');
  576. var dataLevel = data;
  577. if (keys.length === 1) {
  578. continue;
  579. }
  580. for (var k = 0; k < keys.length; k++) {
  581. var key = keys[k];
  582. // Lowercase the first letter
  583. // By default, dash-separated becomes camelCase
  584. key = key.substring(0, 1).toLowerCase() + key.substring(1);
  585. if (!(key in dataLevel)) {
  586. dataLevel[key] = {};
  587. }
  588. if (k == keys.length - 1) {
  589. dataLevel[key] = data[originalKey];
  590. }
  591. dataLevel = dataLevel[key];
  592. }
  593. delete data[originalKey];
  594. }
  595. return data;
  596. };
  597. Utils.hasScroll = function (index, el) {
  598. // Adapted from the function created by @ShadowScripter
  599. // and adapted by @BillBarry on the Stack Exchange Code Review website.
  600. // The original code can be found at
  601. // http://codereview.stackexchange.com/q/13338
  602. // and was designed to be used with the Sizzle selector engine.
  603. var $el = $(el);
  604. var overflowX = el.style.overflowX;
  605. var overflowY = el.style.overflowY;
  606. //Check both x and y declarations
  607. if (overflowX === overflowY &&
  608. (overflowY === 'hidden' || overflowY === 'visible')) {
  609. return false;
  610. }
  611. if (overflowX === 'scroll' || overflowY === 'scroll') {
  612. return true;
  613. }
  614. return ($el.innerHeight() < el.scrollHeight ||
  615. $el.innerWidth() < el.scrollWidth);
  616. };
  617. Utils.escapeMarkup = function (markup) {
  618. var replaceMap = {
  619. '\\': '&#92;',
  620. '&': '&amp;',
  621. '<': '&lt;',
  622. '>': '&gt;',
  623. '"': '&quot;',
  624. '\'': '&#39;',
  625. '/': '&#47;'
  626. };
  627. // Do not try to escape the markup if it's not a string
  628. if (typeof markup !== 'string') {
  629. return markup;
  630. }
  631. return String(markup).replace(/[&<>"'\/\\]/g, function (match) {
  632. return replaceMap[match];
  633. });
  634. };
  635. // Cache objects in Utils.__cache instead of $.data (see #4346)
  636. Utils.__cache = {};
  637. var id = 0;
  638. Utils.GetUniqueElementId = function (element) {
  639. // Get a unique element Id. If element has no id,
  640. // creates a new unique number, stores it in the id
  641. // attribute and returns the new id.
  642. // If an id already exists, it simply returns it.
  643. var select2Id = element.getAttribute('data-select2-id');
  644. if (select2Id == null) {
  645. // If element has id, use it.
  646. if (element.id) {
  647. select2Id = element.id;
  648. element.setAttribute('data-select2-id', select2Id);
  649. } else {
  650. element.setAttribute('data-select2-id', ++id);
  651. select2Id = id.toString();
  652. }
  653. }
  654. return select2Id;
  655. };
  656. Utils.StoreData = function (element, name, value) {
  657. // Stores an item in the cache for a specified element.
  658. // name is the cache key.
  659. var id = Utils.GetUniqueElementId(element);
  660. if (!Utils.__cache[id]) {
  661. Utils.__cache[id] = {};
  662. }
  663. Utils.__cache[id][name] = value;
  664. };
  665. Utils.GetData = function (element, name) {
  666. // Retrieves a value from the cache by its key (name)
  667. // name is optional. If no name specified, return
  668. // all cache items for the specified element.
  669. // and for a specified element.
  670. var id = Utils.GetUniqueElementId(element);
  671. if (name) {
  672. if (Utils.__cache[id]) {
  673. if (Utils.__cache[id][name] != null) {
  674. return Utils.__cache[id][name];
  675. }
  676. return $(element).data(name); // Fallback to HTML5 data attribs.
  677. }
  678. return $(element).data(name); // Fallback to HTML5 data attribs.
  679. } else {
  680. return Utils.__cache[id];
  681. }
  682. };
  683. Utils.RemoveData = function (element) {
  684. // Removes all cached items for a specified element.
  685. var id = Utils.GetUniqueElementId(element);
  686. if (Utils.__cache[id] != null) {
  687. delete Utils.__cache[id];
  688. }
  689. element.removeAttribute('data-select2-id');
  690. };
  691. Utils.copyNonInternalCssClasses = function (dest, src) {
  692. var classes;
  693. var destinationClasses = dest.getAttribute('class').trim().split(/\s+/);
  694. destinationClasses = destinationClasses.filter(function (clazz) {
  695. // Save all Select2 classes
  696. return clazz.indexOf('select2-') === 0;
  697. });
  698. var sourceClasses = src.getAttribute('class').trim().split(/\s+/);
  699. sourceClasses = sourceClasses.filter(function (clazz) {
  700. // Only copy non-Select2 classes
  701. return clazz.indexOf('select2-') !== 0;
  702. });
  703. var replacements = destinationClasses.concat(sourceClasses);
  704. dest.setAttribute('class', replacements.join(' '));
  705. };
  706. return Utils;
  707. });
  708. S2.define('select2/results',[
  709. 'jquery',
  710. './utils'
  711. ], function ($, Utils) {
  712. function Results ($element, options, dataAdapter) {
  713. this.$element = $element;
  714. this.data = dataAdapter;
  715. this.options = options;
  716. Results.__super__.constructor.call(this);
  717. }
  718. Utils.Extend(Results, Utils.Observable);
  719. Results.prototype.render = function () {
  720. var $results = $(
  721. '<ul class="select2-results__options" role="listbox"></ul>'
  722. );
  723. if (this.options.get('multiple')) {
  724. $results.attr('aria-multiselectable', 'true');
  725. }
  726. this.$results = $results;
  727. return $results;
  728. };
  729. Results.prototype.clear = function () {
  730. this.$results.empty();
  731. };
  732. Results.prototype.displayMessage = function (params) {
  733. var escapeMarkup = this.options.get('escapeMarkup');
  734. this.clear();
  735. this.hideLoading();
  736. var $message = $(
  737. '<li role="alert" aria-live="assertive"' +
  738. ' class="select2-results__option"></li>'
  739. );
  740. var message = this.options.get('translations').get(params.message);
  741. $message.append(
  742. escapeMarkup(
  743. message(params.args)
  744. )
  745. );
  746. $message[0].className += ' select2-results__message';
  747. this.$results.append($message);
  748. };
  749. Results.prototype.hideMessages = function () {
  750. this.$results.find('.select2-results__message').remove();
  751. };
  752. Results.prototype.append = function (data) {
  753. this.hideLoading();
  754. var $options = [];
  755. if (data.results == null || data.results.length === 0) {
  756. if (this.$results.children().length === 0) {
  757. this.trigger('results:message', {
  758. message: 'noResults'
  759. });
  760. }
  761. return;
  762. }
  763. data.results = this.sort(data.results);
  764. for (var d = 0; d < data.results.length; d++) {
  765. var item = data.results[d];
  766. var $option = this.option(item);
  767. $options.push($option);
  768. }
  769. this.$results.append($options);
  770. };
  771. Results.prototype.position = function ($results, $dropdown) {
  772. var $resultsContainer = $dropdown.find('.select2-results');
  773. $resultsContainer.append($results);
  774. };
  775. Results.prototype.sort = function (data) {
  776. var sorter = this.options.get('sorter');
  777. return sorter(data);
  778. };
  779. Results.prototype.highlightFirstItem = function () {
  780. var $options = this.$results
  781. .find('.select2-results__option[aria-selected]');
  782. var $selected = $options.filter('[aria-selected=true]');
  783. // Check if there are any selected options
  784. if ($selected.length > 0) {
  785. // If there are selected options, highlight the first
  786. $selected.first().trigger('mouseenter');
  787. } else {
  788. // If there are no selected options, highlight the first option
  789. // in the dropdown
  790. $options.first().trigger('mouseenter');
  791. }
  792. this.ensureHighlightVisible();
  793. };
  794. Results.prototype.setClasses = function () {
  795. var self = this;
  796. this.data.current(function (selected) {
  797. var selectedIds = selected.map(function (s) {
  798. return s.id.toString();
  799. });
  800. var $options = self.$results
  801. .find('.select2-results__option[aria-selected]');
  802. $options.each(function () {
  803. var $option = $(this);
  804. var item = Utils.GetData(this, 'data');
  805. // id needs to be converted to a string when comparing
  806. var id = '' + item.id;
  807. if ((item.element != null && item.element.selected) ||
  808. (item.element == null && selectedIds.indexOf(id) > -1)) {
  809. $option.attr('aria-selected', 'true');
  810. } else {
  811. $option.attr('aria-selected', 'false');
  812. }
  813. });
  814. });
  815. };
  816. Results.prototype.showLoading = function (params) {
  817. this.hideLoading();
  818. var loadingMore = this.options.get('translations').get('searching');
  819. var loading = {
  820. disabled: true,
  821. loading: true,
  822. text: loadingMore(params)
  823. };
  824. var $loading = this.option(loading);
  825. $loading.className += ' loading-results';
  826. this.$results.prepend($loading);
  827. };
  828. Results.prototype.hideLoading = function () {
  829. this.$results.find('.loading-results').remove();
  830. };
  831. Results.prototype.option = function (data) {
  832. var option = document.createElement('li');
  833. option.className = 'select2-results__option';
  834. var attrs = {
  835. 'role': 'option',
  836. 'aria-selected': 'false'
  837. };
  838. var matches = window.Element.prototype.matches ||
  839. window.Element.prototype.msMatchesSelector ||
  840. window.Element.prototype.webkitMatchesSelector;
  841. if ((data.element != null && matches.call(data.element, ':disabled')) ||
  842. (data.element == null && data.disabled)) {
  843. delete attrs['aria-selected'];
  844. attrs['aria-disabled'] = 'true';
  845. }
  846. if (data.id == null) {
  847. delete attrs['aria-selected'];
  848. }
  849. if (data._resultId != null) {
  850. option.id = data._resultId;
  851. }
  852. if (data.title) {
  853. option.title = data.title;
  854. }
  855. if (data.children) {
  856. attrs.role = 'group';
  857. attrs['aria-label'] = data.text;
  858. delete attrs['aria-selected'];
  859. }
  860. for (var attr in attrs) {
  861. var val = attrs[attr];
  862. option.setAttribute(attr, val);
  863. }
  864. if (data.children) {
  865. var $option = $(option);
  866. var label = document.createElement('strong');
  867. label.className = 'select2-results__group';
  868. var $label = $(label);
  869. this.template(data, label);
  870. var $children = [];
  871. for (var c = 0; c < data.children.length; c++) {
  872. var child = data.children[c];
  873. var $child = this.option(child);
  874. $children.push($child);
  875. }
  876. var $childrenContainer = $('<ul></ul>', {
  877. 'class': 'select2-results__options select2-results__options--nested'
  878. });
  879. $childrenContainer.append($children);
  880. $option.append(label);
  881. $option.append($childrenContainer);
  882. } else {
  883. this.template(data, option);
  884. }
  885. Utils.StoreData(option, 'data', data);
  886. return option;
  887. };
  888. Results.prototype.bind = function (container, $container) {
  889. var self = this;
  890. var id = container.id + '-results';
  891. this.$results.attr('id', id);
  892. container.on('results:all', function (params) {
  893. self.clear();
  894. self.append(params.data);
  895. if (container.isOpen()) {
  896. self.setClasses();
  897. self.highlightFirstItem();
  898. }
  899. });
  900. container.on('results:append', function (params) {
  901. self.append(params.data);
  902. if (container.isOpen()) {
  903. self.setClasses();
  904. }
  905. });
  906. container.on('query', function (params) {
  907. self.hideMessages();
  908. self.showLoading(params);
  909. });
  910. container.on('select', function () {
  911. if (!container.isOpen()) {
  912. return;
  913. }
  914. self.setClasses();
  915. if (self.options.get('scrollAfterSelect')) {
  916. self.highlightFirstItem();
  917. }
  918. });
  919. container.on('unselect', function () {
  920. if (!container.isOpen()) {
  921. return;
  922. }
  923. self.setClasses();
  924. if (self.options.get('scrollAfterSelect')) {
  925. self.highlightFirstItem();
  926. }
  927. });
  928. container.on('open', function () {
  929. // When the dropdown is open, aria-expended="true"
  930. self.$results.attr('aria-expanded', 'true');
  931. self.$results.attr('aria-hidden', 'false');
  932. self.setClasses();
  933. self.ensureHighlightVisible();
  934. });
  935. container.on('close', function () {
  936. // When the dropdown is closed, aria-expended="false"
  937. self.$results.attr('aria-expanded', 'false');
  938. self.$results.attr('aria-hidden', 'true');
  939. self.$results.removeAttr('aria-activedescendant');
  940. });
  941. container.on('results:toggle', function () {
  942. var $highlighted = self.getHighlightedResults();
  943. if ($highlighted.length === 0) {
  944. return;
  945. }
  946. $highlighted.trigger('mouseup');
  947. });
  948. container.on('results:select', function () {
  949. var $highlighted = self.getHighlightedResults();
  950. if ($highlighted.length === 0) {
  951. return;
  952. }
  953. var data = Utils.GetData($highlighted[0], 'data');
  954. if ($highlighted.attr('aria-selected') == 'true') {
  955. self.trigger('close', {});
  956. } else {
  957. self.trigger('select', {
  958. data: data
  959. });
  960. }
  961. });
  962. container.on('results:previous', function () {
  963. var $highlighted = self.getHighlightedResults();
  964. var $options = self.$results.find('[aria-selected]');
  965. var currentIndex = $options.index($highlighted);
  966. // If we are already at the top, don't move further
  967. // If no options, currentIndex will be -1
  968. if (currentIndex <= 0) {
  969. return;
  970. }
  971. var nextIndex = currentIndex - 1;
  972. // If none are highlighted, highlight the first
  973. if ($highlighted.length === 0) {
  974. nextIndex = 0;
  975. }
  976. var $next = $options.eq(nextIndex);
  977. $next.trigger('mouseenter');
  978. var currentOffset = self.$results.offset().top;
  979. var nextTop = $next.offset().top;
  980. var nextOffset = self.$results.scrollTop() + (nextTop - currentOffset);
  981. if (nextIndex === 0) {
  982. self.$results.scrollTop(0);
  983. } else if (nextTop - currentOffset < 0) {
  984. self.$results.scrollTop(nextOffset);
  985. }
  986. });
  987. container.on('results:next', function () {
  988. var $highlighted = self.getHighlightedResults();
  989. var $options = self.$results.find('[aria-selected]');
  990. var currentIndex = $options.index($highlighted);
  991. var nextIndex = currentIndex + 1;
  992. // If we are at the last option, stay there
  993. if (nextIndex >= $options.length) {
  994. return;
  995. }
  996. var $next = $options.eq(nextIndex);
  997. $next.trigger('mouseenter');
  998. var currentOffset = self.$results.offset().top +
  999. self.$results.outerHeight(false);
  1000. var nextBottom = $next.offset().top + $next.outerHeight(false);
  1001. var nextOffset = self.$results.scrollTop() + nextBottom - currentOffset;
  1002. if (nextIndex === 0) {
  1003. self.$results.scrollTop(0);
  1004. } else if (nextBottom > currentOffset) {
  1005. self.$results.scrollTop(nextOffset);
  1006. }
  1007. });
  1008. container.on('results:focus', function (params) {
  1009. params.element[0].classList.add('select2-results__option--highlighted');
  1010. });
  1011. container.on('results:message', function (params) {
  1012. self.displayMessage(params);
  1013. });
  1014. if ($.fn.mousewheel) {
  1015. this.$results.on('mousewheel', function (e) {
  1016. var top = self.$results.scrollTop();
  1017. var bottom = self.$results.get(0).scrollHeight - top + e.deltaY;
  1018. var isAtTop = e.deltaY > 0 && top - e.deltaY <= 0;
  1019. var isAtBottom = e.deltaY < 0 && bottom <= self.$results.height();
  1020. if (isAtTop) {
  1021. self.$results.scrollTop(0);
  1022. e.preventDefault();
  1023. e.stopPropagation();
  1024. } else if (isAtBottom) {
  1025. self.$results.scrollTop(
  1026. self.$results.get(0).scrollHeight - self.$results.height()
  1027. );
  1028. e.preventDefault();
  1029. e.stopPropagation();
  1030. }
  1031. });
  1032. }
  1033. this.$results.on('mouseup', '.select2-results__option[aria-selected]',
  1034. function (evt) {
  1035. var $this = $(this);
  1036. var data = Utils.GetData(this, 'data');
  1037. if ($this.attr('aria-selected') === 'true') {
  1038. if (self.options.get('multiple')) {
  1039. self.trigger('unselect', {
  1040. originalEvent: evt,
  1041. data: data
  1042. });
  1043. } else {
  1044. self.trigger('close', {});
  1045. }
  1046. return;
  1047. }
  1048. self.trigger('select', {
  1049. originalEvent: evt,
  1050. data: data
  1051. });
  1052. });
  1053. this.$results.on('mouseenter', '.select2-results__option[aria-selected]',
  1054. function (evt) {
  1055. var data = Utils.GetData(this, 'data');
  1056. self.getHighlightedResults()
  1057. .removeClass('select2-results__option--highlighted');
  1058. self.trigger('results:focus', {
  1059. data: data,
  1060. element: $(this)
  1061. });
  1062. });
  1063. };
  1064. Results.prototype.getHighlightedResults = function () {
  1065. var $highlighted = this.$results
  1066. .find('.select2-results__option--highlighted');
  1067. return $highlighted;
  1068. };
  1069. Results.prototype.destroy = function () {
  1070. this.$results.remove();
  1071. };
  1072. Results.prototype.ensureHighlightVisible = function () {
  1073. var $highlighted = this.getHighlightedResults();
  1074. if ($highlighted.length === 0) {
  1075. return;
  1076. }
  1077. var $options = this.$results.find('[aria-selected]');
  1078. var currentIndex = $options.index($highlighted);
  1079. var currentOffset = this.$results.offset().top;
  1080. var nextTop = $highlighted.offset().top;
  1081. var nextOffset = this.$results.scrollTop() + (nextTop - currentOffset);
  1082. var offsetDelta = nextTop - currentOffset;
  1083. nextOffset -= $highlighted.outerHeight(false) * 2;
  1084. if (currentIndex <= 2) {
  1085. this.$results.scrollTop(0);
  1086. } else if (offsetDelta > this.$results.outerHeight() || offsetDelta < 0) {
  1087. this.$results.scrollTop(nextOffset);
  1088. }
  1089. };
  1090. Results.prototype.template = function (result, container) {
  1091. var template = this.options.get('templateResult');
  1092. var escapeMarkup = this.options.get('escapeMarkup');
  1093. var content = template(result, container);
  1094. if (content == null) {
  1095. container.style.display = 'none';
  1096. } else if (typeof content === 'string') {
  1097. container.innerHTML = escapeMarkup(content);
  1098. } else {
  1099. $(container).append(content);
  1100. }
  1101. };
  1102. return Results;
  1103. });
  1104. S2.define('select2/keys',[
  1105. ], function () {
  1106. var KEYS = {
  1107. BACKSPACE: 8,
  1108. TAB: 9,
  1109. ENTER: 13,
  1110. SHIFT: 16,
  1111. CTRL: 17,
  1112. ALT: 18,
  1113. ESC: 27,
  1114. SPACE: 32,
  1115. PAGE_UP: 33,
  1116. PAGE_DOWN: 34,
  1117. END: 35,
  1118. HOME: 36,
  1119. LEFT: 37,
  1120. UP: 38,
  1121. RIGHT: 39,
  1122. DOWN: 40,
  1123. DELETE: 46
  1124. };
  1125. return KEYS;
  1126. });
  1127. S2.define('select2/selection/base',[
  1128. 'jquery',
  1129. '../utils',
  1130. '../keys'
  1131. ], function ($, Utils, KEYS) {
  1132. function BaseSelection ($element, options) {
  1133. this.$element = $element;
  1134. this.options = options;
  1135. BaseSelection.__super__.constructor.call(this);
  1136. }
  1137. Utils.Extend(BaseSelection, Utils.Observable);
  1138. BaseSelection.prototype.render = function () {
  1139. var $selection = $(
  1140. '<span class="select2-selection" role="combobox" ' +
  1141. ' aria-haspopup="true" aria-expanded="false">' +
  1142. '</span>'
  1143. );
  1144. this._tabindex = 0;
  1145. if (Utils.GetData(this.$element[0], 'old-tabindex') != null) {
  1146. this._tabindex = Utils.GetData(this.$element[0], 'old-tabindex');
  1147. } else if (this.$element.attr('tabindex') != null) {
  1148. this._tabindex = this.$element.attr('tabindex');
  1149. }
  1150. $selection.attr('title', this.$element.attr('title'));
  1151. $selection.attr('tabindex', this._tabindex);
  1152. $selection.attr('aria-disabled', 'false');
  1153. this.$selection = $selection;
  1154. return $selection;
  1155. };
  1156. BaseSelection.prototype.bind = function (container, $container) {
  1157. var self = this;
  1158. var resultsId = container.id + '-results';
  1159. this.container = container;
  1160. this.$selection.on('focus', function (evt) {
  1161. self.trigger('focus', evt);
  1162. });
  1163. this.$selection.on('blur', function (evt) {
  1164. self._handleBlur(evt);
  1165. });
  1166. this.$selection.on('keydown', function (evt) {
  1167. self.trigger('keypress', evt);
  1168. if (evt.which === KEYS.SPACE) {
  1169. evt.preventDefault();
  1170. }
  1171. });
  1172. container.on('results:focus', function (params) {
  1173. self.$selection.attr('aria-activedescendant', params.data._resultId);
  1174. });
  1175. container.on('selection:update', function (params) {
  1176. self.update(params.data);
  1177. });
  1178. container.on('open', function () {
  1179. // When the dropdown is open, aria-expanded="true"
  1180. self.$selection.attr('aria-expanded', 'true');
  1181. self.$selection.attr('aria-owns', resultsId);
  1182. self._attachCloseHandler(container);
  1183. });
  1184. container.on('close', function () {
  1185. // When the dropdown is closed, aria-expanded="false"
  1186. self.$selection.attr('aria-expanded', 'false');
  1187. self.$selection.removeAttr('aria-activedescendant');
  1188. self.$selection.removeAttr('aria-owns');
  1189. self.$selection.trigger('focus');
  1190. self._detachCloseHandler(container);
  1191. });
  1192. container.on('enable', function () {
  1193. self.$selection.attr('tabindex', self._tabindex);
  1194. self.$selection.attr('aria-disabled', 'false');
  1195. });
  1196. container.on('disable', function () {
  1197. self.$selection.attr('tabindex', '-1');
  1198. self.$selection.attr('aria-disabled', 'true');
  1199. });
  1200. };
  1201. BaseSelection.prototype._handleBlur = function (evt) {
  1202. var self = this;
  1203. // This needs to be delayed as the active element is the body when the tab
  1204. // key is pressed, possibly along with others.
  1205. window.setTimeout(function () {
  1206. // Don't trigger `blur` if the focus is still in the selection
  1207. if (
  1208. (document.activeElement == self.$selection[0]) ||
  1209. ($.contains(self.$selection[0], document.activeElement))
  1210. ) {
  1211. return;
  1212. }
  1213. self.trigger('blur', evt);
  1214. }, 1);
  1215. };
  1216. BaseSelection.prototype._attachCloseHandler = function (container) {
  1217. $(document.body).on('mousedown.select2.' + container.id, function (e) {
  1218. var $target = $(e.target);
  1219. var $select = $target.closest('.select2');
  1220. var $all = $('.select2.select2-container--open');
  1221. $all.each(function () {
  1222. if (this == $select[0]) {
  1223. return;
  1224. }
  1225. var $element = Utils.GetData(this, 'element');
  1226. $element.select2('close');
  1227. });
  1228. });
  1229. };
  1230. BaseSelection.prototype._detachCloseHandler = function (container) {
  1231. $(document.body).off('mousedown.select2.' + container.id);
  1232. };
  1233. BaseSelection.prototype.position = function ($selection, $container) {
  1234. var $selectionContainer = $container.find('.selection');
  1235. $selectionContainer.append($selection);
  1236. };
  1237. BaseSelection.prototype.destroy = function () {
  1238. this._detachCloseHandler(this.container);
  1239. };
  1240. BaseSelection.prototype.update = function (data) {
  1241. throw new Error('The `update` method must be defined in child classes.');
  1242. };
  1243. /**
  1244. * Helper method to abstract the "enabled" (not "disabled") state of this
  1245. * object.
  1246. *
  1247. * @return {true} if the instance is not disabled.
  1248. * @return {false} if the instance is disabled.
  1249. */
  1250. BaseSelection.prototype.isEnabled = function () {
  1251. return !this.isDisabled();
  1252. };
  1253. /**
  1254. * Helper method to abstract the "disabled" state of this object.
  1255. *
  1256. * @return {true} if the disabled option is true.
  1257. * @return {false} if the disabled option is false.
  1258. */
  1259. BaseSelection.prototype.isDisabled = function () {
  1260. return this.options.get('disabled');
  1261. };
  1262. return BaseSelection;
  1263. });
  1264. S2.define('select2/selection/single',[
  1265. 'jquery',
  1266. './base',
  1267. '../utils',
  1268. '../keys'
  1269. ], function ($, BaseSelection, Utils, KEYS) {
  1270. function SingleSelection () {
  1271. SingleSelection.__super__.constructor.apply(this, arguments);
  1272. }
  1273. Utils.Extend(SingleSelection, BaseSelection);
  1274. SingleSelection.prototype.render = function () {
  1275. var $selection = SingleSelection.__super__.render.call(this);
  1276. $selection[0].classList.add('select2-selection--single');
  1277. $selection.html(
  1278. '<span class="select2-selection__rendered"></span>' +
  1279. '<span class="select2-selection__arrow" role="presentation">' +
  1280. '<b role="presentation"></b>' +
  1281. '</span>'
  1282. );
  1283. return $selection;
  1284. };
  1285. SingleSelection.prototype.bind = function (container, $container) {
  1286. var self = this;
  1287. SingleSelection.__super__.bind.apply(this, arguments);
  1288. var id = container.id + '-container';
  1289. this.$selection.find('.select2-selection__rendered')
  1290. .attr('id', id)
  1291. .attr('role', 'textbox')
  1292. .attr('aria-readonly', 'true');
  1293. this.$selection.attr('aria-labelledby', id);
  1294. this.$selection.on('mousedown', function (evt) {
  1295. // Only respond to left clicks
  1296. if (evt.which !== 1) {
  1297. return;
  1298. }
  1299. self.trigger('toggle', {
  1300. originalEvent: evt
  1301. });
  1302. });
  1303. this.$selection.on('focus', function (evt) {
  1304. // User focuses on the container
  1305. });
  1306. this.$selection.on('blur', function (evt) {
  1307. // User exits the container
  1308. });
  1309. container.on('focus', function (evt) {
  1310. if (!container.isOpen()) {
  1311. self.$selection.trigger('focus');
  1312. }
  1313. });
  1314. };
  1315. SingleSelection.prototype.clear = function () {
  1316. var $rendered = this.$selection.find('.select2-selection__rendered');
  1317. $rendered.empty();
  1318. $rendered.removeAttr('title'); // clear tooltip on empty
  1319. };
  1320. SingleSelection.prototype.display = function (data, container) {
  1321. var template = this.options.get('templateSelection');
  1322. var escapeMarkup = this.options.get('escapeMarkup');
  1323. return escapeMarkup(template(data, container));
  1324. };
  1325. SingleSelection.prototype.selectionContainer = function () {
  1326. return $('<span></span>');
  1327. };
  1328. SingleSelection.prototype.update = function (data) {
  1329. if (data.length === 0) {
  1330. this.clear();
  1331. return;
  1332. }
  1333. var selection = data[0];
  1334. var $rendered = this.$selection.find('.select2-selection__rendered');
  1335. var formatted = this.display(selection, $rendered);
  1336. $rendered.empty().append(formatted);
  1337. var title = selection.title || selection.text;
  1338. if (title) {
  1339. $rendered.attr('title', title);
  1340. } else {
  1341. $rendered.removeAttr('title');
  1342. }
  1343. };
  1344. return SingleSelection;
  1345. });
  1346. S2.define('select2/selection/multiple',[
  1347. 'jquery',
  1348. './base',
  1349. '../utils'
  1350. ], function ($, BaseSelection, Utils) {
  1351. function MultipleSelection ($element, options) {
  1352. MultipleSelection.__super__.constructor.apply(this, arguments);
  1353. }
  1354. Utils.Extend(MultipleSelection, BaseSelection);
  1355. MultipleSelection.prototype.render = function () {
  1356. var $selection = MultipleSelection.__super__.render.call(this);
  1357. $selection[0].classList.add('select2-selection--multiple');
  1358. $selection.html(
  1359. '<ul class="select2-selection__rendered"></ul>'
  1360. );
  1361. return $selection;
  1362. };
  1363. MultipleSelection.prototype.bind = function (container, $container) {
  1364. var self = this;
  1365. MultipleSelection.__super__.bind.apply(this, arguments);
  1366. this.$selection.on('click', function (evt) {
  1367. self.trigger('toggle', {
  1368. originalEvent: evt
  1369. });
  1370. });
  1371. this.$selection.on(
  1372. 'click',
  1373. '.select2-selection__choice__remove',
  1374. function (evt) {
  1375. // Ignore the event if it is disabled
  1376. if (self.isDisabled()) {
  1377. return;
  1378. }
  1379. var $remove = $(this);
  1380. var $selection = $remove.parent();
  1381. var data = Utils.GetData($selection[0], 'data');
  1382. self.trigger('unselect', {
  1383. originalEvent: evt,
  1384. data: data
  1385. });
  1386. }
  1387. );
  1388. };
  1389. MultipleSelection.prototype.clear = function () {
  1390. var $rendered = this.$selection.find('.select2-selection__rendered');
  1391. $rendered.empty();
  1392. $rendered.removeAttr('title');
  1393. };
  1394. MultipleSelection.prototype.display = function (data, container) {
  1395. var template = this.options.get('templateSelection');
  1396. var escapeMarkup = this.options.get('escapeMarkup');
  1397. return escapeMarkup(template(data, container));
  1398. };
  1399. MultipleSelection.prototype.selectionContainer = function () {
  1400. var $container = $(
  1401. '<li class="select2-selection__choice">' +
  1402. '<span class="select2-selection__choice__remove" role="presentation">' +
  1403. '&times;' +
  1404. '</span>' +
  1405. '</li>'
  1406. );
  1407. return $container;
  1408. };
  1409. MultipleSelection.prototype.update = function (data) {
  1410. this.clear();
  1411. if (data.length === 0) {
  1412. return;
  1413. }
  1414. var $selections = [];
  1415. for (var d = 0; d < data.length; d++) {
  1416. var selection = data[d];
  1417. var $selection = this.selectionContainer();
  1418. var formatted = this.display(selection, $selection);
  1419. $selection.append(formatted);
  1420. var title = selection.title || selection.text;
  1421. if (title) {
  1422. $selection.attr('title', title);
  1423. }
  1424. Utils.StoreData($selection[0], 'data', selection);
  1425. $selections.push($selection);
  1426. }
  1427. var $rendered = this.$selection.find('.select2-selection__rendered');
  1428. $rendered.append($selections);
  1429. };
  1430. return MultipleSelection;
  1431. });
  1432. S2.define('select2/selection/placeholder',[
  1433. ], function () {
  1434. function Placeholder (decorated, $element, options) {
  1435. this.placeholder = this.normalizePlaceholder(options.get('placeholder'));
  1436. decorated.call(this, $element, options);
  1437. }
  1438. Placeholder.prototype.normalizePlaceholder = function (_, placeholder) {
  1439. if (typeof placeholder === 'string') {
  1440. placeholder = {
  1441. id: '',
  1442. text: placeholder
  1443. };
  1444. }
  1445. return placeholder;
  1446. };
  1447. Placeholder.prototype.createPlaceholder = function (decorated, placeholder) {
  1448. var $placeholder = this.selectionContainer();
  1449. $placeholder.html(this.display(placeholder));
  1450. $placeholder[0].classList.add('select2-selection__placeholder');
  1451. $placeholder[0].classList.remove('select2-selection__choice');
  1452. return $placeholder;
  1453. };
  1454. Placeholder.prototype.update = function (decorated, data) {
  1455. var singlePlaceholder = (
  1456. data.length == 1 && data[0].id != this.placeholder.id
  1457. );
  1458. var multipleSelections = data.length > 1;
  1459. if (multipleSelections || singlePlaceholder) {
  1460. return decorated.call(this, data);
  1461. }
  1462. this.clear();
  1463. var $placeholder = this.createPlaceholder(this.placeholder);
  1464. this.$selection.find('.select2-selection__rendered').append($placeholder);
  1465. };
  1466. return Placeholder;
  1467. });
  1468. S2.define('select2/selection/allowClear',[
  1469. 'jquery',
  1470. '../keys',
  1471. '../utils'
  1472. ], function ($, KEYS, Utils) {
  1473. function AllowClear () { }
  1474. AllowClear.prototype.bind = function (decorated, container, $container) {
  1475. var self = this;
  1476. decorated.call(this, container, $container);
  1477. if (this.placeholder == null) {
  1478. if (this.options.get('debug') && window.console && console.error) {
  1479. console.error(
  1480. 'Select2: The `allowClear` option should be used in combination ' +
  1481. 'with the `placeholder` option.'
  1482. );
  1483. }
  1484. }
  1485. this.$selection.on('mousedown', '.select2-selection__clear',
  1486. function (evt) {
  1487. self._handleClear(evt);
  1488. });
  1489. container.on('keypress', function (evt) {
  1490. self._handleKeyboardClear(evt, container);
  1491. });
  1492. };
  1493. AllowClear.prototype._handleClear = function (_, evt) {
  1494. // Ignore the event if it is disabled
  1495. if (this.isDisabled()) {
  1496. return;
  1497. }
  1498. var $clear = this.$selection.find('.select2-selection__clear');
  1499. // Ignore the event if nothing has been selected
  1500. if ($clear.length === 0) {
  1501. return;
  1502. }
  1503. evt.stopPropagation();
  1504. var data = Utils.GetData($clear[0], 'data');
  1505. var previousVal = this.$element.val();
  1506. this.$element.val(this.placeholder.id);
  1507. var unselectData = {
  1508. data: data
  1509. };
  1510. this.trigger('clear', unselectData);
  1511. if (unselectData.prevented) {
  1512. this.$element.val(previousVal);
  1513. return;
  1514. }
  1515. for (var d = 0; d < data.length; d++) {
  1516. unselectData = {
  1517. data: data[d]
  1518. };
  1519. // Trigger the `unselect` event, so people can prevent it from being
  1520. // cleared.
  1521. this.trigger('unselect', unselectData);
  1522. // If the event was prevented, don't clear it out.
  1523. if (unselectData.prevented) {
  1524. this.$element.val(previousVal);
  1525. return;
  1526. }
  1527. }
  1528. this.$element.trigger('input').trigger('change');
  1529. this.trigger('toggle', {});
  1530. };
  1531. AllowClear.prototype._handleKeyboardClear = function (_, evt, container) {
  1532. if (container.isOpen()) {
  1533. return;
  1534. }
  1535. if (evt.which == KEYS.DELETE || evt.which == KEYS.BACKSPACE) {
  1536. this._handleClear(evt);
  1537. }
  1538. };
  1539. AllowClear.prototype.update = function (decorated, data) {
  1540. decorated.call(this, data);
  1541. if (this.$selection.find('.select2-selection__placeholder').length > 0 ||
  1542. data.length === 0) {
  1543. return;
  1544. }
  1545. var removeAll = this.options.get('translations').get('removeAllItems');
  1546. var $remove = $(
  1547. '<span class="select2-selection__clear" title="' + removeAll() +'">' +
  1548. '&times;' +
  1549. '</span>'
  1550. );
  1551. Utils.StoreData($remove[0], 'data', data);
  1552. this.$selection.find('.select2-selection__rendered').prepend($remove);
  1553. };
  1554. return AllowClear;
  1555. });
  1556. S2.define('select2/selection/search',[
  1557. 'jquery',
  1558. '../utils',
  1559. '../keys'
  1560. ], function ($, Utils, KEYS) {
  1561. function Search (decorated, $element, options) {
  1562. decorated.call(this, $element, options);
  1563. }
  1564. Search.prototype.render = function (decorated) {
  1565. var $search = $(
  1566. '<li class="select2-search select2-search--inline">' +
  1567. '<input class="select2-search__field" type="search" tabindex="-1"' +
  1568. ' autocomplete="off" autocorrect="off" autocapitalize="none"' +
  1569. ' spellcheck="false" role="searchbox" aria-autocomplete="list" />' +
  1570. '</li>'
  1571. );
  1572. this.$searchContainer = $search;
  1573. this.$search = $search.find('input');
  1574. var $rendered = decorated.call(this);
  1575. this._transferTabIndex();
  1576. return $rendered;
  1577. };
  1578. Search.prototype.bind = function (decorated, container, $container) {
  1579. var self = this;
  1580. var resultsId = container.id + '-results';
  1581. decorated.call(this, container, $container);
  1582. container.on('open', function () {
  1583. self.$search.attr('aria-controls', resultsId);
  1584. self.$search.trigger('focus');
  1585. });
  1586. container.on('close', function () {
  1587. self.$search.val('');
  1588. self.$search.removeAttr('aria-controls');
  1589. self.$search.removeAttr('aria-activedescendant');
  1590. self.$search.trigger('focus');
  1591. });
  1592. container.on('enable', function () {
  1593. self.$search.prop('disabled', false);
  1594. self._transferTabIndex();
  1595. });
  1596. container.on('disable', function () {
  1597. self.$search.prop('disabled', true);
  1598. });
  1599. container.on('focus', function (evt) {
  1600. self.$search.trigger('focus');
  1601. });
  1602. container.on('results:focus', function (params) {
  1603. if (params.data._resultId) {
  1604. self.$search.attr('aria-activedescendant', params.data._resultId);
  1605. } else {
  1606. self.$search.removeAttr('aria-activedescendant');
  1607. }
  1608. });
  1609. this.$selection.on('focusin', '.select2-search--inline', function (evt) {
  1610. self.trigger('focus', evt);
  1611. });
  1612. this.$selection.on('focusout', '.select2-search--inline', function (evt) {
  1613. self._handleBlur(evt);
  1614. });
  1615. this.$selection.on('keydown', '.select2-search--inline', function (evt) {
  1616. evt.stopPropagation();
  1617. self.trigger('keypress', evt);
  1618. self._keyUpPrevented = evt.isDefaultPrevented();
  1619. var key = evt.which;
  1620. if (key === KEYS.BACKSPACE && self.$search.val() === '') {
  1621. var $previousChoice = self.$searchContainer
  1622. .prev('.select2-selection__choice');
  1623. if ($previousChoice.length > 0) {
  1624. var item = Utils.GetData($previousChoice[0], 'data');
  1625. self.searchRemoveChoice(item);
  1626. evt.preventDefault();
  1627. }
  1628. }
  1629. });
  1630. this.$selection.on('click', '.select2-search--inline', function (evt) {
  1631. if (self.$search.val()) {
  1632. evt.stopPropagation();
  1633. }
  1634. });
  1635. // Try to detect the IE version should the `documentMode` property that
  1636. // is stored on the document. This is only implemented in IE and is
  1637. // slightly cleaner than doing a user agent check.
  1638. // This property is not available in Edge, but Edge also doesn't have
  1639. // this bug.
  1640. var msie = document.documentMode;
  1641. var disableInputEvents = msie && msie <= 11;
  1642. // Workaround for browsers which do not support the `input` event
  1643. // This will prevent double-triggering of events for browsers which support
  1644. // both the `keyup` and `input` events.
  1645. this.$selection.on(
  1646. 'input.searchcheck',
  1647. '.select2-search--inline',
  1648. function (evt) {
  1649. // IE will trigger the `input` event when a placeholder is used on a
  1650. // search box. To get around this issue, we are forced to ignore all
  1651. // `input` events in IE and keep using `keyup`.
  1652. if (disableInputEvents) {
  1653. self.$selection.off('input.search input.searchcheck');
  1654. return;
  1655. }
  1656. // Unbind the duplicated `keyup` event
  1657. self.$selection.off('keyup.search');
  1658. }
  1659. );
  1660. this.$selection.on(
  1661. 'keyup.search input.search',
  1662. '.select2-search--inline',
  1663. function (evt) {
  1664. // IE will trigger the `input` event when a placeholder is used on a
  1665. // search box. To get around this issue, we are forced to ignore all
  1666. // `input` events in IE and keep using `keyup`.
  1667. if (disableInputEvents && evt.type === 'input') {
  1668. self.$selection.off('input.search input.searchcheck');
  1669. return;
  1670. }
  1671. var key = evt.which;
  1672. // We can freely ignore events from modifier keys
  1673. if (key == KEYS.SHIFT || key == KEYS.CTRL || key == KEYS.ALT) {
  1674. return;
  1675. }
  1676. // Tabbing will be handled during the `keydown` phase
  1677. if (key == KEYS.TAB) {
  1678. return;
  1679. }
  1680. self.handleSearch(evt);
  1681. }
  1682. );
  1683. };
  1684. /**
  1685. * This method will transfer the tabindex attribute from the rendered
  1686. * selection to the search box. This allows for the search box to be used as
  1687. * the primary focus instead of the selection container.
  1688. *
  1689. * @private
  1690. */
  1691. Search.prototype._transferTabIndex = function (decorated) {
  1692. this.$search.attr('tabindex', this.$selection.attr('tabindex'));
  1693. this.$selection.attr('tabindex', '-1');
  1694. };
  1695. Search.prototype.createPlaceholder = function (decorated, placeholder) {
  1696. this.$search.attr('placeholder', placeholder.text);
  1697. };
  1698. Search.prototype.update = function (decorated, data) {
  1699. var searchHadFocus = this.$search[0] == document.activeElement;
  1700. this.$search.attr('placeholder', '');
  1701. decorated.call(this, data);
  1702. this.$selection.find('.select2-selection__rendered')
  1703. .append(this.$searchContainer);
  1704. this.resizeSearch();
  1705. if (searchHadFocus) {
  1706. this.$search.trigger('focus');
  1707. }
  1708. };
  1709. Search.prototype.handleSearch = function () {
  1710. this.resizeSearch();
  1711. if (!this._keyUpPrevented) {
  1712. var input = this.$search.val();
  1713. this.trigger('query', {
  1714. term: input
  1715. });
  1716. }
  1717. this._keyUpPrevented = false;
  1718. };
  1719. Search.prototype.searchRemoveChoice = function (decorated, item) {
  1720. this.trigger('unselect', {
  1721. data: item
  1722. });
  1723. this.$search.val(item.text);
  1724. this.handleSearch();
  1725. };
  1726. Search.prototype.resizeSearch = function () {
  1727. this.$search.css('width', '25px');
  1728. var width = '';
  1729. if (this.$search.attr('placeholder') !== '') {
  1730. width = this.$selection.find('.select2-selection__rendered').width();
  1731. } else {
  1732. var minimumWidth = this.$search.val().length + 1;
  1733. width = (minimumWidth * 0.75) + 'em';
  1734. }
  1735. this.$search.css('width', width);
  1736. };
  1737. return Search;
  1738. });
  1739. S2.define('select2/selection/selectionCss',[
  1740. '../utils'
  1741. ], function (Utils) {
  1742. function SelectionCSS () { }
  1743. SelectionCSS.prototype.render = function (decorated) {
  1744. var $selection = decorated.call(this);
  1745. var selectionCssClass = this.options.get('selectionCssClass') || '';
  1746. if (selectionCssClass.indexOf(':all:') !== -1) {
  1747. selectionCssClass = selectionCssClass.replace(':all:', '');
  1748. Utils.copyNonInternalCssClasses($selection[0], this.$element[0]);
  1749. }
  1750. $selection.addClass(selectionCssClass);
  1751. return $selection;
  1752. };
  1753. return SelectionCSS;
  1754. });
  1755. S2.define('select2/selection/eventRelay',[
  1756. 'jquery'
  1757. ], function ($) {
  1758. function EventRelay () { }
  1759. EventRelay.prototype.bind = function (decorated, container, $container) {
  1760. var self = this;
  1761. var relayEvents = [
  1762. 'open', 'opening',
  1763. 'close', 'closing',
  1764. 'select', 'selecting',
  1765. 'unselect', 'unselecting',
  1766. 'clear', 'clearing'
  1767. ];
  1768. var preventableEvents = [
  1769. 'opening', 'closing', 'selecting', 'unselecting', 'clearing'
  1770. ];
  1771. decorated.call(this, container, $container);
  1772. container.on('*', function (name, params) {
  1773. // Ignore events that should not be relayed
  1774. if (relayEvents.indexOf(name) === -1) {
  1775. return;
  1776. }
  1777. // The parameters should always be an object
  1778. params = params || {};
  1779. // Generate the jQuery event for the Select2 event
  1780. var evt = $.Event('select2:' + name, {
  1781. params: params
  1782. });
  1783. self.$element.trigger(evt);
  1784. // Only handle preventable events if it was one
  1785. if (preventableEvents.indexOf(name) === -1) {
  1786. return;
  1787. }
  1788. params.prevented = evt.isDefaultPrevented();
  1789. });
  1790. };
  1791. return EventRelay;
  1792. });
  1793. S2.define('select2/translation',[
  1794. 'jquery',
  1795. 'require'
  1796. ], function ($, require) {
  1797. function Translation (dict) {
  1798. this.dict = dict || {};
  1799. }
  1800. Translation.prototype.all = function () {
  1801. return this.dict;
  1802. };
  1803. Translation.prototype.get = function (key) {
  1804. return this.dict[key];
  1805. };
  1806. Translation.prototype.extend = function (translation) {
  1807. this.dict = $.extend({}, translation.all(), this.dict);
  1808. };
  1809. // Static functions
  1810. Translation._cache = {};
  1811. Translation.loadPath = function (path) {
  1812. if (!(path in Translation._cache)) {
  1813. var translations = require(path);
  1814. Translation._cache[path] = translations;
  1815. }
  1816. return new Translation(Translation._cache[path]);
  1817. };
  1818. return Translation;
  1819. });
  1820. S2.define('select2/diacritics',[
  1821. ], function () {
  1822. var diacritics = {
  1823. '\u24B6': 'A',
  1824. '\uFF21': 'A',
  1825. '\u00C0': 'A',
  1826. '\u00C1': 'A',
  1827. '\u00C2': 'A',
  1828. '\u1EA6': 'A',
  1829. '\u1EA4': 'A',
  1830. '\u1EAA': 'A',
  1831. '\u1EA8': 'A',
  1832. '\u00C3': 'A',
  1833. '\u0100': 'A',
  1834. '\u0102': 'A',
  1835. '\u1EB0': 'A',
  1836. '\u1EAE': 'A',
  1837. '\u1EB4': 'A',
  1838. '\u1EB2': 'A',
  1839. '\u0226': 'A',
  1840. '\u01E0': 'A',
  1841. '\u00C4': 'A',
  1842. '\u01DE': 'A',
  1843. '\u1EA2': 'A',
  1844. '\u00C5': 'A',
  1845. '\u01FA': 'A',
  1846. '\u01CD': 'A',
  1847. '\u0200': 'A',
  1848. '\u0202': 'A',
  1849. '\u1EA0': 'A',
  1850. '\u1EAC': 'A',
  1851. '\u1EB6': 'A',
  1852. '\u1E00': 'A',
  1853. '\u0104': 'A',
  1854. '\u023A': 'A',
  1855. '\u2C6F': 'A',
  1856. '\uA732': 'AA',
  1857. '\u00C6': 'AE',
  1858. '\u01FC': 'AE',
  1859. '\u01E2': 'AE',
  1860. '\uA734': 'AO',
  1861. '\uA736': 'AU',
  1862. '\uA738': 'AV',
  1863. '\uA73A': 'AV',
  1864. '\uA73C': 'AY',
  1865. '\u24B7': 'B',
  1866. '\uFF22': 'B',
  1867. '\u1E02': 'B',
  1868. '\u1E04': 'B',
  1869. '\u1E06': 'B',
  1870. '\u0243': 'B',
  1871. '\u0182': 'B',
  1872. '\u0181': 'B',
  1873. '\u24B8': 'C',
  1874. '\uFF23': 'C',
  1875. '\u0106': 'C',
  1876. '\u0108': 'C',
  1877. '\u010A': 'C',
  1878. '\u010C': 'C',
  1879. '\u00C7': 'C',
  1880. '\u1E08': 'C',
  1881. '\u0187': 'C',
  1882. '\u023B': 'C',
  1883. '\uA73E': 'C',
  1884. '\u24B9': 'D',
  1885. '\uFF24': 'D',
  1886. '\u1E0A': 'D',
  1887. '\u010E': 'D',
  1888. '\u1E0C': 'D',
  1889. '\u1E10': 'D',
  1890. '\u1E12': 'D',
  1891. '\u1E0E': 'D',
  1892. '\u0110': 'D',
  1893. '\u018B': 'D',
  1894. '\u018A': 'D',
  1895. '\u0189': 'D',
  1896. '\uA779': 'D',
  1897. '\u01F1': 'DZ',
  1898. '\u01C4': 'DZ',
  1899. '\u01F2': 'Dz',
  1900. '\u01C5': 'Dz',
  1901. '\u24BA': 'E',
  1902. '\uFF25': 'E',
  1903. '\u00C8': 'E',
  1904. '\u00C9': 'E',
  1905. '\u00CA': 'E',
  1906. '\u1EC0': 'E',
  1907. '\u1EBE': 'E',
  1908. '\u1EC4': 'E',
  1909. '\u1EC2': 'E',
  1910. '\u1EBC': 'E',
  1911. '\u0112': 'E',
  1912. '\u1E14': 'E',
  1913. '\u1E16': 'E',
  1914. '\u0114': 'E',
  1915. '\u0116': 'E',
  1916. '\u00CB': 'E',
  1917. '\u1EBA': 'E',
  1918. '\u011A': 'E',
  1919. '\u0204': 'E',
  1920. '\u0206': 'E',
  1921. '\u1EB8': 'E',
  1922. '\u1EC6': 'E',
  1923. '\u0228': 'E',
  1924. '\u1E1C': 'E',
  1925. '\u0118': 'E',
  1926. '\u1E18': 'E',
  1927. '\u1E1A': 'E',
  1928. '\u0190': 'E',
  1929. '\u018E': 'E',
  1930. '\u24BB': 'F',
  1931. '\uFF26': 'F',
  1932. '\u1E1E': 'F',
  1933. '\u0191': 'F',
  1934. '\uA77B': 'F',
  1935. '\u24BC': 'G',
  1936. '\uFF27': 'G',
  1937. '\u01F4': 'G',
  1938. '\u011C': 'G',
  1939. '\u1E20': 'G',
  1940. '\u011E': 'G',
  1941. '\u0120': 'G',
  1942. '\u01E6': 'G',
  1943. '\u0122': 'G',
  1944. '\u01E4': 'G',
  1945. '\u0193': 'G',
  1946. '\uA7A0': 'G',
  1947. '\uA77D': 'G',
  1948. '\uA77E': 'G',
  1949. '\u24BD': 'H',
  1950. '\uFF28': 'H',
  1951. '\u0124': 'H',
  1952. '\u1E22': 'H',
  1953. '\u1E26': 'H',
  1954. '\u021E': 'H',
  1955. '\u1E24': 'H',
  1956. '\u1E28': 'H',
  1957. '\u1E2A': 'H',
  1958. '\u0126': 'H',
  1959. '\u2C67': 'H',
  1960. '\u2C75': 'H',
  1961. '\uA78D': 'H',
  1962. '\u24BE': 'I',
  1963. '\uFF29': 'I',
  1964. '\u00CC': 'I',
  1965. '\u00CD': 'I',
  1966. '\u00CE': 'I',
  1967. '\u0128': 'I',
  1968. '\u012A': 'I',
  1969. '\u012C': 'I',
  1970. '\u0130': 'I',
  1971. '\u00CF': 'I',
  1972. '\u1E2E': 'I',
  1973. '\u1EC8': 'I',
  1974. '\u01CF': 'I',
  1975. '\u0208': 'I',
  1976. '\u020A': 'I',
  1977. '\u1ECA': 'I',
  1978. '\u012E': 'I',
  1979. '\u1E2C': 'I',
  1980. '\u0197': 'I',
  1981. '\u24BF': 'J',
  1982. '\uFF2A': 'J',
  1983. '\u0134': 'J',
  1984. '\u0248': 'J',
  1985. '\u24C0': 'K',
  1986. '\uFF2B': 'K',
  1987. '\u1E30': 'K',
  1988. '\u01E8': 'K',
  1989. '\u1E32': 'K',
  1990. '\u0136': 'K',
  1991. '\u1E34': 'K',
  1992. '\u0198': 'K',
  1993. '\u2C69': 'K',
  1994. '\uA740': 'K',
  1995. '\uA742': 'K',
  1996. '\uA744': 'K',
  1997. '\uA7A2': 'K',
  1998. '\u24C1': 'L',
  1999. '\uFF2C': 'L',
  2000. '\u013F': 'L',
  2001. '\u0139': 'L',
  2002. '\u013D': 'L',
  2003. '\u1E36': 'L',
  2004. '\u1E38': 'L',
  2005. '\u013B': 'L',
  2006. '\u1E3C': 'L',
  2007. '\u1E3A': 'L',
  2008. '\u0141': 'L',
  2009. '\u023D': 'L',
  2010. '\u2C62': 'L',
  2011. '\u2C60': 'L',
  2012. '\uA748': 'L',
  2013. '\uA746': 'L',
  2014. '\uA780': 'L',
  2015. '\u01C7': 'LJ',
  2016. '\u01C8': 'Lj',
  2017. '\u24C2': 'M',
  2018. '\uFF2D': 'M',
  2019. '\u1E3E': 'M',
  2020. '\u1E40': 'M',
  2021. '\u1E42': 'M',
  2022. '\u2C6E': 'M',
  2023. '\u019C': 'M',
  2024. '\u24C3': 'N',
  2025. '\uFF2E': 'N',
  2026. '\u01F8': 'N',
  2027. '\u0143': 'N',
  2028. '\u00D1': 'N',
  2029. '\u1E44': 'N',
  2030. '\u0147': 'N',
  2031. '\u1E46': 'N',
  2032. '\u0145': 'N',
  2033. '\u1E4A': 'N',
  2034. '\u1E48': 'N',
  2035. '\u0220': 'N',
  2036. '\u019D': 'N',
  2037. '\uA790': 'N',
  2038. '\uA7A4': 'N',
  2039. '\u01CA': 'NJ',
  2040. '\u01CB': 'Nj',
  2041. '\u24C4': 'O',
  2042. '\uFF2F': 'O',
  2043. '\u00D2': 'O',
  2044. '\u00D3': 'O',
  2045. '\u00D4': 'O',
  2046. '\u1ED2': 'O',
  2047. '\u1ED0': 'O',
  2048. '\u1ED6': 'O',
  2049. '\u1ED4': 'O',
  2050. '\u00D5': 'O',
  2051. '\u1E4C': 'O',
  2052. '\u022C': 'O',
  2053. '\u1E4E': 'O',
  2054. '\u014C': 'O',
  2055. '\u1E50': 'O',
  2056. '\u1E52': 'O',
  2057. '\u014E': 'O',
  2058. '\u022E': 'O',
  2059. '\u0230': 'O',
  2060. '\u00D6': 'O',
  2061. '\u022A': 'O',
  2062. '\u1ECE': 'O',
  2063. '\u0150': 'O',
  2064. '\u01D1': 'O',
  2065. '\u020C': 'O',
  2066. '\u020E': 'O',
  2067. '\u01A0': 'O',
  2068. '\u1EDC': 'O',
  2069. '\u1EDA': 'O',
  2070. '\u1EE0': 'O',
  2071. '\u1EDE': 'O',
  2072. '\u1EE2': 'O',
  2073. '\u1ECC': 'O',
  2074. '\u1ED8': 'O',
  2075. '\u01EA': 'O',
  2076. '\u01EC': 'O',
  2077. '\u00D8': 'O',
  2078. '\u01FE': 'O',
  2079. '\u0186': 'O',
  2080. '\u019F': 'O',
  2081. '\uA74A': 'O',
  2082. '\uA74C': 'O',
  2083. '\u0152': 'OE',
  2084. '\u01A2': 'OI',
  2085. '\uA74E': 'OO',
  2086. '\u0222': 'OU',
  2087. '\u24C5': 'P',
  2088. '\uFF30': 'P',
  2089. '\u1E54': 'P',
  2090. '\u1E56': 'P',
  2091. '\u01A4': 'P',
  2092. '\u2C63': 'P',
  2093. '\uA750': 'P',
  2094. '\uA752': 'P',
  2095. '\uA754': 'P',
  2096. '\u24C6': 'Q',
  2097. '\uFF31': 'Q',
  2098. '\uA756': 'Q',
  2099. '\uA758': 'Q',
  2100. '\u024A': 'Q',
  2101. '\u24C7': 'R',
  2102. '\uFF32': 'R',
  2103. '\u0154': 'R',
  2104. '\u1E58': 'R',
  2105. '\u0158': 'R',
  2106. '\u0210': 'R',
  2107. '\u0212': 'R',
  2108. '\u1E5A': 'R',
  2109. '\u1E5C': 'R',
  2110. '\u0156': 'R',
  2111. '\u1E5E': 'R',
  2112. '\u024C': 'R',
  2113. '\u2C64': 'R',
  2114. '\uA75A': 'R',
  2115. '\uA7A6': 'R',
  2116. '\uA782': 'R',
  2117. '\u24C8': 'S',
  2118. '\uFF33': 'S',
  2119. '\u1E9E': 'S',
  2120. '\u015A': 'S',
  2121. '\u1E64': 'S',
  2122. '\u015C': 'S',
  2123. '\u1E60': 'S',
  2124. '\u0160': 'S',
  2125. '\u1E66': 'S',
  2126. '\u1E62': 'S',
  2127. '\u1E68': 'S',
  2128. '\u0218': 'S',
  2129. '\u015E': 'S',
  2130. '\u2C7E': 'S',
  2131. '\uA7A8': 'S',
  2132. '\uA784': 'S',
  2133. '\u24C9': 'T',
  2134. '\uFF34': 'T',
  2135. '\u1E6A': 'T',
  2136. '\u0164': 'T',
  2137. '\u1E6C': 'T',
  2138. '\u021A': 'T',
  2139. '\u0162': 'T',
  2140. '\u1E70': 'T',
  2141. '\u1E6E': 'T',
  2142. '\u0166': 'T',
  2143. '\u01AC': 'T',
  2144. '\u01AE': 'T',
  2145. '\u023E': 'T',
  2146. '\uA786': 'T',
  2147. '\uA728': 'TZ',
  2148. '\u24CA': 'U',
  2149. '\uFF35': 'U',
  2150. '\u00D9': 'U',
  2151. '\u00DA': 'U',
  2152. '\u00DB': 'U',
  2153. '\u0168': 'U',
  2154. '\u1E78': 'U',
  2155. '\u016A': 'U',
  2156. '\u1E7A': 'U',
  2157. '\u016C': 'U',
  2158. '\u00DC': 'U',
  2159. '\u01DB': 'U',
  2160. '\u01D7': 'U',
  2161. '\u01D5': 'U',
  2162. '\u01D9': 'U',
  2163. '\u1EE6': 'U',
  2164. '\u016E': 'U',
  2165. '\u0170': 'U',
  2166. '\u01D3': 'U',
  2167. '\u0214': 'U',
  2168. '\u0216': 'U',
  2169. '\u01AF': 'U',
  2170. '\u1EEA': 'U',
  2171. '\u1EE8': 'U',
  2172. '\u1EEE': 'U',
  2173. '\u1EEC': 'U',
  2174. '\u1EF0': 'U',
  2175. '\u1EE4': 'U',
  2176. '\u1E72': 'U',
  2177. '\u0172': 'U',
  2178. '\u1E76': 'U',
  2179. '\u1E74': 'U',
  2180. '\u0244': 'U',
  2181. '\u24CB': 'V',
  2182. '\uFF36': 'V',
  2183. '\u1E7C': 'V',
  2184. '\u1E7E': 'V',
  2185. '\u01B2': 'V',
  2186. '\uA75E': 'V',
  2187. '\u0245': 'V',
  2188. '\uA760': 'VY',
  2189. '\u24CC': 'W',
  2190. '\uFF37': 'W',
  2191. '\u1E80': 'W',
  2192. '\u1E82': 'W',
  2193. '\u0174': 'W',
  2194. '\u1E86': 'W',
  2195. '\u1E84': 'W',
  2196. '\u1E88': 'W',
  2197. '\u2C72': 'W',
  2198. '\u24CD': 'X',
  2199. '\uFF38': 'X',
  2200. '\u1E8A': 'X',
  2201. '\u1E8C': 'X',
  2202. '\u24CE': 'Y',
  2203. '\uFF39': 'Y',
  2204. '\u1EF2': 'Y',
  2205. '\u00DD': 'Y',
  2206. '\u0176': 'Y',
  2207. '\u1EF8': 'Y',
  2208. '\u0232': 'Y',
  2209. '\u1E8E': 'Y',
  2210. '\u0178': 'Y',
  2211. '\u1EF6': 'Y',
  2212. '\u1EF4': 'Y',
  2213. '\u01B3': 'Y',
  2214. '\u024E': 'Y',
  2215. '\u1EFE': 'Y',
  2216. '\u24CF': 'Z',
  2217. '\uFF3A': 'Z',
  2218. '\u0179': 'Z',
  2219. '\u1E90': 'Z',
  2220. '\u017B': 'Z',
  2221. '\u017D': 'Z',
  2222. '\u1E92': 'Z',
  2223. '\u1E94': 'Z',
  2224. '\u01B5': 'Z',
  2225. '\u0224': 'Z',
  2226. '\u2C7F': 'Z',
  2227. '\u2C6B': 'Z',
  2228. '\uA762': 'Z',
  2229. '\u24D0': 'a',
  2230. '\uFF41': 'a',
  2231. '\u1E9A': 'a',
  2232. '\u00E0': 'a',
  2233. '\u00E1': 'a',
  2234. '\u00E2': 'a',
  2235. '\u1EA7': 'a',
  2236. '\u1EA5': 'a',
  2237. '\u1EAB': 'a',
  2238. '\u1EA9': 'a',
  2239. '\u00E3': 'a',
  2240. '\u0101': 'a',
  2241. '\u0103': 'a',
  2242. '\u1EB1': 'a',
  2243. '\u1EAF': 'a',
  2244. '\u1EB5': 'a',
  2245. '\u1EB3': 'a',
  2246. '\u0227': 'a',
  2247. '\u01E1': 'a',
  2248. '\u00E4': 'a',
  2249. '\u01DF': 'a',
  2250. '\u1EA3': 'a',
  2251. '\u00E5': 'a',
  2252. '\u01FB': 'a',
  2253. '\u01CE': 'a',
  2254. '\u0201': 'a',
  2255. '\u0203': 'a',
  2256. '\u1EA1': 'a',
  2257. '\u1EAD': 'a',
  2258. '\u1EB7': 'a',
  2259. '\u1E01': 'a',
  2260. '\u0105': 'a',
  2261. '\u2C65': 'a',
  2262. '\u0250': 'a',
  2263. '\uA733': 'aa',
  2264. '\u00E6': 'ae',
  2265. '\u01FD': 'ae',
  2266. '\u01E3': 'ae',
  2267. '\uA735': 'ao',
  2268. '\uA737': 'au',
  2269. '\uA739': 'av',
  2270. '\uA73B': 'av',
  2271. '\uA73D': 'ay',
  2272. '\u24D1': 'b',
  2273. '\uFF42': 'b',
  2274. '\u1E03': 'b',
  2275. '\u1E05': 'b',
  2276. '\u1E07': 'b',
  2277. '\u0180': 'b',
  2278. '\u0183': 'b',
  2279. '\u0253': 'b',
  2280. '\u24D2': 'c',
  2281. '\uFF43': 'c',
  2282. '\u0107': 'c',
  2283. '\u0109': 'c',
  2284. '\u010B': 'c',
  2285. '\u010D': 'c',
  2286. '\u00E7': 'c',
  2287. '\u1E09': 'c',
  2288. '\u0188': 'c',
  2289. '\u023C': 'c',
  2290. '\uA73F': 'c',
  2291. '\u2184': 'c',
  2292. '\u24D3': 'd',
  2293. '\uFF44': 'd',
  2294. '\u1E0B': 'd',
  2295. '\u010F': 'd',
  2296. '\u1E0D': 'd',
  2297. '\u1E11': 'd',
  2298. '\u1E13': 'd',
  2299. '\u1E0F': 'd',
  2300. '\u0111': 'd',
  2301. '\u018C': 'd',
  2302. '\u0256': 'd',
  2303. '\u0257': 'd',
  2304. '\uA77A': 'd',
  2305. '\u01F3': 'dz',
  2306. '\u01C6': 'dz',
  2307. '\u24D4': 'e',
  2308. '\uFF45': 'e',
  2309. '\u00E8': 'e',
  2310. '\u00E9': 'e',
  2311. '\u00EA': 'e',
  2312. '\u1EC1': 'e',
  2313. '\u1EBF': 'e',
  2314. '\u1EC5': 'e',
  2315. '\u1EC3': 'e',
  2316. '\u1EBD': 'e',
  2317. '\u0113': 'e',
  2318. '\u1E15': 'e',
  2319. '\u1E17': 'e',
  2320. '\u0115': 'e',
  2321. '\u0117': 'e',
  2322. '\u00EB': 'e',
  2323. '\u1EBB': 'e',
  2324. '\u011B': 'e',
  2325. '\u0205': 'e',
  2326. '\u0207': 'e',
  2327. '\u1EB9': 'e',
  2328. '\u1EC7': 'e',
  2329. '\u0229': 'e',
  2330. '\u1E1D': 'e',
  2331. '\u0119': 'e',
  2332. '\u1E19': 'e',
  2333. '\u1E1B': 'e',
  2334. '\u0247': 'e',
  2335. '\u025B': 'e',
  2336. '\u01DD': 'e',
  2337. '\u24D5': 'f',
  2338. '\uFF46': 'f',
  2339. '\u1E1F': 'f',
  2340. '\u0192': 'f',
  2341. '\uA77C': 'f',
  2342. '\u24D6': 'g',
  2343. '\uFF47': 'g',
  2344. '\u01F5': 'g',
  2345. '\u011D': 'g',
  2346. '\u1E21': 'g',
  2347. '\u011F': 'g',
  2348. '\u0121': 'g',
  2349. '\u01E7': 'g',
  2350. '\u0123': 'g',
  2351. '\u01E5': 'g',
  2352. '\u0260': 'g',
  2353. '\uA7A1': 'g',
  2354. '\u1D79': 'g',
  2355. '\uA77F': 'g',
  2356. '\u24D7': 'h',
  2357. '\uFF48': 'h',
  2358. '\u0125': 'h',
  2359. '\u1E23': 'h',
  2360. '\u1E27': 'h',
  2361. '\u021F': 'h',
  2362. '\u1E25': 'h',
  2363. '\u1E29': 'h',
  2364. '\u1E2B': 'h',
  2365. '\u1E96': 'h',
  2366. '\u0127': 'h',
  2367. '\u2C68': 'h',
  2368. '\u2C76': 'h',
  2369. '\u0265': 'h',
  2370. '\u0195': 'hv',
  2371. '\u24D8': 'i',
  2372. '\uFF49': 'i',
  2373. '\u00EC': 'i',
  2374. '\u00ED': 'i',
  2375. '\u00EE': 'i',
  2376. '\u0129': 'i',
  2377. '\u012B': 'i',
  2378. '\u012D': 'i',
  2379. '\u00EF': 'i',
  2380. '\u1E2F': 'i',
  2381. '\u1EC9': 'i',
  2382. '\u01D0': 'i',
  2383. '\u0209': 'i',
  2384. '\u020B': 'i',
  2385. '\u1ECB': 'i',
  2386. '\u012F': 'i',
  2387. '\u1E2D': 'i',
  2388. '\u0268': 'i',
  2389. '\u0131': 'i',
  2390. '\u24D9': 'j',
  2391. '\uFF4A': 'j',
  2392. '\u0135': 'j',
  2393. '\u01F0': 'j',
  2394. '\u0249': 'j',
  2395. '\u24DA': 'k',
  2396. '\uFF4B': 'k',
  2397. '\u1E31': 'k',
  2398. '\u01E9': 'k',
  2399. '\u1E33': 'k',
  2400. '\u0137': 'k',
  2401. '\u1E35': 'k',
  2402. '\u0199': 'k',
  2403. '\u2C6A': 'k',
  2404. '\uA741': 'k',
  2405. '\uA743': 'k',
  2406. '\uA745': 'k',
  2407. '\uA7A3': 'k',
  2408. '\u24DB': 'l',
  2409. '\uFF4C': 'l',
  2410. '\u0140': 'l',
  2411. '\u013A': 'l',
  2412. '\u013E': 'l',
  2413. '\u1E37': 'l',
  2414. '\u1E39': 'l',
  2415. '\u013C': 'l',
  2416. '\u1E3D': 'l',
  2417. '\u1E3B': 'l',
  2418. '\u017F': 'l',
  2419. '\u0142': 'l',
  2420. '\u019A': 'l',
  2421. '\u026B': 'l',
  2422. '\u2C61': 'l',
  2423. '\uA749': 'l',
  2424. '\uA781': 'l',
  2425. '\uA747': 'l',
  2426. '\u01C9': 'lj',
  2427. '\u24DC': 'm',
  2428. '\uFF4D': 'm',
  2429. '\u1E3F': 'm',
  2430. '\u1E41': 'm',
  2431. '\u1E43': 'm',
  2432. '\u0271': 'm',
  2433. '\u026F': 'm',
  2434. '\u24DD': 'n',
  2435. '\uFF4E': 'n',
  2436. '\u01F9': 'n',
  2437. '\u0144': 'n',
  2438. '\u00F1': 'n',
  2439. '\u1E45': 'n',
  2440. '\u0148': 'n',
  2441. '\u1E47': 'n',
  2442. '\u0146': 'n',
  2443. '\u1E4B': 'n',
  2444. '\u1E49': 'n',
  2445. '\u019E': 'n',
  2446. '\u0272': 'n',
  2447. '\u0149': 'n',
  2448. '\uA791': 'n',
  2449. '\uA7A5': 'n',
  2450. '\u01CC': 'nj',
  2451. '\u24DE': 'o',
  2452. '\uFF4F': 'o',
  2453. '\u00F2': 'o',
  2454. '\u00F3': 'o',
  2455. '\u00F4': 'o',
  2456. '\u1ED3': 'o',
  2457. '\u1ED1': 'o',
  2458. '\u1ED7': 'o',
  2459. '\u1ED5': 'o',
  2460. '\u00F5': 'o',
  2461. '\u1E4D': 'o',
  2462. '\u022D': 'o',
  2463. '\u1E4F': 'o',
  2464. '\u014D': 'o',
  2465. '\u1E51': 'o',
  2466. '\u1E53': 'o',
  2467. '\u014F': 'o',
  2468. '\u022F': 'o',
  2469. '\u0231': 'o',
  2470. '\u00F6': 'o',
  2471. '\u022B': 'o',
  2472. '\u1ECF': 'o',
  2473. '\u0151': 'o',
  2474. '\u01D2': 'o',
  2475. '\u020D': 'o',
  2476. '\u020F': 'o',
  2477. '\u01A1': 'o',
  2478. '\u1EDD': 'o',
  2479. '\u1EDB': 'o',
  2480. '\u1EE1': 'o',
  2481. '\u1EDF': 'o',
  2482. '\u1EE3': 'o',
  2483. '\u1ECD': 'o',
  2484. '\u1ED9': 'o',
  2485. '\u01EB': 'o',
  2486. '\u01ED': 'o',
  2487. '\u00F8': 'o',
  2488. '\u01FF': 'o',
  2489. '\u0254': 'o',
  2490. '\uA74B': 'o',
  2491. '\uA74D': 'o',
  2492. '\u0275': 'o',
  2493. '\u0153': 'oe',
  2494. '\u01A3': 'oi',
  2495. '\u0223': 'ou',
  2496. '\uA74F': 'oo',
  2497. '\u24DF': 'p',
  2498. '\uFF50': 'p',
  2499. '\u1E55': 'p',
  2500. '\u1E57': 'p',
  2501. '\u01A5': 'p',
  2502. '\u1D7D': 'p',
  2503. '\uA751': 'p',
  2504. '\uA753': 'p',
  2505. '\uA755': 'p',
  2506. '\u24E0': 'q',
  2507. '\uFF51': 'q',
  2508. '\u024B': 'q',
  2509. '\uA757': 'q',
  2510. '\uA759': 'q',
  2511. '\u24E1': 'r',
  2512. '\uFF52': 'r',
  2513. '\u0155': 'r',
  2514. '\u1E59': 'r',
  2515. '\u0159': 'r',
  2516. '\u0211': 'r',
  2517. '\u0213': 'r',
  2518. '\u1E5B': 'r',
  2519. '\u1E5D': 'r',
  2520. '\u0157': 'r',
  2521. '\u1E5F': 'r',
  2522. '\u024D': 'r',
  2523. '\u027D': 'r',
  2524. '\uA75B': 'r',
  2525. '\uA7A7': 'r',
  2526. '\uA783': 'r',
  2527. '\u24E2': 's',
  2528. '\uFF53': 's',
  2529. '\u00DF': 's',
  2530. '\u015B': 's',
  2531. '\u1E65': 's',
  2532. '\u015D': 's',
  2533. '\u1E61': 's',
  2534. '\u0161': 's',
  2535. '\u1E67': 's',
  2536. '\u1E63': 's',
  2537. '\u1E69': 's',
  2538. '\u0219': 's',
  2539. '\u015F': 's',
  2540. '\u023F': 's',
  2541. '\uA7A9': 's',
  2542. '\uA785': 's',
  2543. '\u1E9B': 's',
  2544. '\u24E3': 't',
  2545. '\uFF54': 't',
  2546. '\u1E6B': 't',
  2547. '\u1E97': 't',
  2548. '\u0165': 't',
  2549. '\u1E6D': 't',
  2550. '\u021B': 't',
  2551. '\u0163': 't',
  2552. '\u1E71': 't',
  2553. '\u1E6F': 't',
  2554. '\u0167': 't',
  2555. '\u01AD': 't',
  2556. '\u0288': 't',
  2557. '\u2C66': 't',
  2558. '\uA787': 't',
  2559. '\uA729': 'tz',
  2560. '\u24E4': 'u',
  2561. '\uFF55': 'u',
  2562. '\u00F9': 'u',
  2563. '\u00FA': 'u',
  2564. '\u00FB': 'u',
  2565. '\u0169': 'u',
  2566. '\u1E79': 'u',
  2567. '\u016B': 'u',
  2568. '\u1E7B': 'u',
  2569. '\u016D': 'u',
  2570. '\u00FC': 'u',
  2571. '\u01DC': 'u',
  2572. '\u01D8': 'u',
  2573. '\u01D6': 'u',
  2574. '\u01DA': 'u',
  2575. '\u1EE7': 'u',
  2576. '\u016F': 'u',
  2577. '\u0171': 'u',
  2578. '\u01D4': 'u',
  2579. '\u0215': 'u',
  2580. '\u0217': 'u',
  2581. '\u01B0': 'u',
  2582. '\u1EEB': 'u',
  2583. '\u1EE9': 'u',
  2584. '\u1EEF': 'u',
  2585. '\u1EED': 'u',
  2586. '\u1EF1': 'u',
  2587. '\u1EE5': 'u',
  2588. '\u1E73': 'u',
  2589. '\u0173': 'u',
  2590. '\u1E77': 'u',
  2591. '\u1E75': 'u',
  2592. '\u0289': 'u',
  2593. '\u24E5': 'v',
  2594. '\uFF56': 'v',
  2595. '\u1E7D': 'v',
  2596. '\u1E7F': 'v',
  2597. '\u028B': 'v',
  2598. '\uA75F': 'v',
  2599. '\u028C': 'v',
  2600. '\uA761': 'vy',
  2601. '\u24E6': 'w',
  2602. '\uFF57': 'w',
  2603. '\u1E81': 'w',
  2604. '\u1E83': 'w',
  2605. '\u0175': 'w',
  2606. '\u1E87': 'w',
  2607. '\u1E85': 'w',
  2608. '\u1E98': 'w',
  2609. '\u1E89': 'w',
  2610. '\u2C73': 'w',
  2611. '\u24E7': 'x',
  2612. '\uFF58': 'x',
  2613. '\u1E8B': 'x',
  2614. '\u1E8D': 'x',
  2615. '\u24E8': 'y',
  2616. '\uFF59': 'y',
  2617. '\u1EF3': 'y',
  2618. '\u00FD': 'y',
  2619. '\u0177': 'y',
  2620. '\u1EF9': 'y',
  2621. '\u0233': 'y',
  2622. '\u1E8F': 'y',
  2623. '\u00FF': 'y',
  2624. '\u1EF7': 'y',
  2625. '\u1E99': 'y',
  2626. '\u1EF5': 'y',
  2627. '\u01B4': 'y',
  2628. '\u024F': 'y',
  2629. '\u1EFF': 'y',
  2630. '\u24E9': 'z',
  2631. '\uFF5A': 'z',
  2632. '\u017A': 'z',
  2633. '\u1E91': 'z',
  2634. '\u017C': 'z',
  2635. '\u017E': 'z',
  2636. '\u1E93': 'z',
  2637. '\u1E95': 'z',
  2638. '\u01B6': 'z',
  2639. '\u0225': 'z',
  2640. '\u0240': 'z',
  2641. '\u2C6C': 'z',
  2642. '\uA763': 'z',
  2643. '\u0386': '\u0391',
  2644. '\u0388': '\u0395',
  2645. '\u0389': '\u0397',
  2646. '\u038A': '\u0399',
  2647. '\u03AA': '\u0399',
  2648. '\u038C': '\u039F',
  2649. '\u038E': '\u03A5',
  2650. '\u03AB': '\u03A5',
  2651. '\u038F': '\u03A9',
  2652. '\u03AC': '\u03B1',
  2653. '\u03AD': '\u03B5',
  2654. '\u03AE': '\u03B7',
  2655. '\u03AF': '\u03B9',
  2656. '\u03CA': '\u03B9',
  2657. '\u0390': '\u03B9',
  2658. '\u03CC': '\u03BF',
  2659. '\u03CD': '\u03C5',
  2660. '\u03CB': '\u03C5',
  2661. '\u03B0': '\u03C5',
  2662. '\u03CE': '\u03C9',
  2663. '\u03C2': '\u03C3',
  2664. '\u2019': '\''
  2665. };
  2666. return diacritics;
  2667. });
  2668. S2.define('select2/data/base',[
  2669. '../utils'
  2670. ], function (Utils) {
  2671. function BaseAdapter ($element, options) {
  2672. BaseAdapter.__super__.constructor.call(this);
  2673. }
  2674. Utils.Extend(BaseAdapter, Utils.Observable);
  2675. BaseAdapter.prototype.current = function (callback) {
  2676. throw new Error('The `current` method must be defined in child classes.');
  2677. };
  2678. BaseAdapter.prototype.query = function (params, callback) {
  2679. throw new Error('The `query` method must be defined in child classes.');
  2680. };
  2681. BaseAdapter.prototype.bind = function (container, $container) {
  2682. // Can be implemented in subclasses
  2683. };
  2684. BaseAdapter.prototype.destroy = function () {
  2685. // Can be implemented in subclasses
  2686. };
  2687. BaseAdapter.prototype.generateResultId = function (container, data) {
  2688. var id = container.id + '-result-';
  2689. id += Utils.generateChars(4);
  2690. if (data.id != null) {
  2691. id += '-' + data.id.toString();
  2692. } else {
  2693. id += '-' + Utils.generateChars(4);
  2694. }
  2695. return id;
  2696. };
  2697. return BaseAdapter;
  2698. });
  2699. S2.define('select2/data/select',[
  2700. './base',
  2701. '../utils',
  2702. 'jquery'
  2703. ], function (BaseAdapter, Utils, $) {
  2704. function SelectAdapter ($element, options) {
  2705. this.$element = $element;
  2706. this.options = options;
  2707. SelectAdapter.__super__.constructor.call(this);
  2708. }
  2709. Utils.Extend(SelectAdapter, BaseAdapter);
  2710. SelectAdapter.prototype.current = function (callback) {
  2711. var self = this;
  2712. var data = Array.prototype.map.call(
  2713. this.$element[0].querySelectorAll(':checked'),
  2714. function (selectedElement) {
  2715. return self.item($(selectedElement));
  2716. }
  2717. );
  2718. callback(data);
  2719. };
  2720. SelectAdapter.prototype.select = function (data) {
  2721. var self = this;
  2722. data.selected = true;
  2723. // If data.element is a DOM node, use it instead
  2724. if (
  2725. data.element != null && data.element.tagName.toLowerCase() === 'option'
  2726. ) {
  2727. data.element.selected = true;
  2728. this.$element.trigger('input').trigger('change');
  2729. return;
  2730. }
  2731. if (this.$element.prop('multiple')) {
  2732. this.current(function (currentData) {
  2733. var val = [];
  2734. data = [data];
  2735. data.push.apply(data, currentData);
  2736. for (var d = 0; d < data.length; d++) {
  2737. var id = data[d].id;
  2738. if (val.indexOf(id) === -1) {
  2739. val.push(id);
  2740. }
  2741. }
  2742. self.$element.val(val);
  2743. self.$element.trigger('input').trigger('change');
  2744. });
  2745. } else {
  2746. var val = data.id;
  2747. this.$element.val(val);
  2748. this.$element.trigger('input').trigger('change');
  2749. }
  2750. };
  2751. SelectAdapter.prototype.unselect = function (data) {
  2752. var self = this;
  2753. if (!this.$element.prop('multiple')) {
  2754. return;
  2755. }
  2756. data.selected = false;
  2757. if (
  2758. data.element != null &&
  2759. data.element.tagName.toLowerCase() === 'option'
  2760. ) {
  2761. data.element.selected = false;
  2762. this.$element.trigger('input').trigger('change');
  2763. return;
  2764. }
  2765. this.current(function (currentData) {
  2766. var val = [];
  2767. for (var d = 0; d < currentData.length; d++) {
  2768. var id = currentData[d].id;
  2769. if (id !== data.id && val.indexOf(id) === -1) {
  2770. val.push(id);
  2771. }
  2772. }
  2773. self.$element.val(val);
  2774. self.$element.trigger('input').trigger('change');
  2775. });
  2776. };
  2777. SelectAdapter.prototype.bind = function (container, $container) {
  2778. var self = this;
  2779. this.container = container;
  2780. container.on('select', function (params) {
  2781. self.select(params.data);
  2782. });
  2783. container.on('unselect', function (params) {
  2784. self.unselect(params.data);
  2785. });
  2786. };
  2787. SelectAdapter.prototype.destroy = function () {
  2788. // Remove anything added to child elements
  2789. this.$element.find('*').each(function () {
  2790. // Remove any custom data set by Select2
  2791. Utils.RemoveData(this);
  2792. });
  2793. };
  2794. SelectAdapter.prototype.query = function (params, callback) {
  2795. var data = [];
  2796. var self = this;
  2797. var $options = this.$element.children();
  2798. $options.each(function () {
  2799. if (
  2800. this.tagName.toLowerCase() !== 'option' &&
  2801. this.tagName.toLowerCase() !== 'optgroup'
  2802. ) {
  2803. return;
  2804. }
  2805. var $option = $(this);
  2806. var option = self.item($option);
  2807. var matches = self.matches(params, option);
  2808. if (matches !== null) {
  2809. data.push(matches);
  2810. }
  2811. });
  2812. callback({
  2813. results: data
  2814. });
  2815. };
  2816. SelectAdapter.prototype.addOptions = function ($options) {
  2817. this.$element.append($options);
  2818. };
  2819. SelectAdapter.prototype.option = function (data) {
  2820. var option;
  2821. if (data.children) {
  2822. option = document.createElement('optgroup');
  2823. option.label = data.text;
  2824. } else {
  2825. option = document.createElement('option');
  2826. if (option.textContent !== undefined) {
  2827. option.textContent = data.text;
  2828. } else {
  2829. option.innerText = data.text;
  2830. }
  2831. }
  2832. if (data.id !== undefined) {
  2833. option.value = data.id;
  2834. }
  2835. if (data.disabled) {
  2836. option.disabled = true;
  2837. }
  2838. if (data.selected) {
  2839. option.selected = true;
  2840. }
  2841. if (data.title) {
  2842. option.title = data.title;
  2843. }
  2844. var normalizedData = this._normalizeItem(data);
  2845. normalizedData.element = option;
  2846. // Override the option's data with the combined data
  2847. Utils.StoreData(option, 'data', normalizedData);
  2848. return $(option);
  2849. };
  2850. SelectAdapter.prototype.item = function ($option) {
  2851. var data = {};
  2852. data = Utils.GetData($option[0], 'data');
  2853. if (data != null) {
  2854. return data;
  2855. }
  2856. var option = $option[0];
  2857. if (option.tagName.toLowerCase() === 'option') {
  2858. data = {
  2859. id: $option.val(),
  2860. text: $option.text(),
  2861. disabled: $option.prop('disabled'),
  2862. selected: $option.prop('selected'),
  2863. title: $option.prop('title')
  2864. };
  2865. } else if (option.tagName.toLowerCase() === 'optgroup') {
  2866. data = {
  2867. text: $option.prop('label'),
  2868. children: [],
  2869. title: $option.prop('title')
  2870. };
  2871. var $children = $option.children('option');
  2872. var children = [];
  2873. for (var c = 0; c < $children.length; c++) {
  2874. var $child = $($children[c]);
  2875. var child = this.item($child);
  2876. children.push(child);
  2877. }
  2878. data.children = children;
  2879. }
  2880. data = this._normalizeItem(data);
  2881. data.element = $option[0];
  2882. Utils.StoreData($option[0], 'data', data);
  2883. return data;
  2884. };
  2885. SelectAdapter.prototype._normalizeItem = function (item) {
  2886. if (item !== Object(item)) {
  2887. item = {
  2888. id: item,
  2889. text: item
  2890. };
  2891. }
  2892. item = $.extend({}, {
  2893. text: ''
  2894. }, item);
  2895. var defaults = {
  2896. selected: false,
  2897. disabled: false
  2898. };
  2899. if (item.id != null) {
  2900. item.id = item.id.toString();
  2901. }
  2902. if (item.text != null) {
  2903. item.text = item.text.toString();
  2904. }
  2905. if (item._resultId == null && item.id && this.container != null) {
  2906. item._resultId = this.generateResultId(this.container, item);
  2907. }
  2908. return $.extend({}, defaults, item);
  2909. };
  2910. SelectAdapter.prototype.matches = function (params, data) {
  2911. var matcher = this.options.get('matcher');
  2912. return matcher(params, data);
  2913. };
  2914. return SelectAdapter;
  2915. });
  2916. S2.define('select2/data/array',[
  2917. './select',
  2918. '../utils',
  2919. 'jquery'
  2920. ], function (SelectAdapter, Utils, $) {
  2921. function ArrayAdapter ($element, options) {
  2922. this._dataToConvert = options.get('data') || [];
  2923. ArrayAdapter.__super__.constructor.call(this, $element, options);
  2924. }
  2925. Utils.Extend(ArrayAdapter, SelectAdapter);
  2926. ArrayAdapter.prototype.bind = function (container, $container) {
  2927. ArrayAdapter.__super__.bind.call(this, container, $container);
  2928. this.addOptions(this.convertToOptions(this._dataToConvert));
  2929. };
  2930. ArrayAdapter.prototype.select = function (data) {
  2931. var $option = this.$element.find('option').filter(function (i, elm) {
  2932. return elm.value == data.id.toString();
  2933. });
  2934. if ($option.length === 0) {
  2935. $option = this.option(data);
  2936. this.addOptions($option);
  2937. }
  2938. ArrayAdapter.__super__.select.call(this, data);
  2939. };
  2940. ArrayAdapter.prototype.convertToOptions = function (data) {
  2941. var self = this;
  2942. var $existing = this.$element.find('option');
  2943. var existingIds = $existing.map(function () {
  2944. return self.item($(this)).id;
  2945. }).get();
  2946. var $options = [];
  2947. // Filter out all items except for the one passed in the argument
  2948. function onlyItem (item) {
  2949. return function () {
  2950. return $(this).val() == item.id;
  2951. };
  2952. }
  2953. for (var d = 0; d < data.length; d++) {
  2954. var item = this._normalizeItem(data[d]);
  2955. // Skip items which were pre-loaded, only merge the data
  2956. if (existingIds.indexOf(item.id) >= 0) {
  2957. var $existingOption = $existing.filter(onlyItem(item));
  2958. var existingData = this.item($existingOption);
  2959. var newData = $.extend(true, {}, item, existingData);
  2960. var $newOption = this.option(newData);
  2961. $existingOption.replaceWith($newOption);
  2962. continue;
  2963. }
  2964. var $option = this.option(item);
  2965. if (item.children) {
  2966. var $children = this.convertToOptions(item.children);
  2967. $option.append($children);
  2968. }
  2969. $options.push($option);
  2970. }
  2971. return $options;
  2972. };
  2973. return ArrayAdapter;
  2974. });
  2975. S2.define('select2/data/ajax',[
  2976. './array',
  2977. '../utils',
  2978. 'jquery'
  2979. ], function (ArrayAdapter, Utils, $) {
  2980. function AjaxAdapter ($element, options) {
  2981. this.ajaxOptions = this._applyDefaults(options.get('ajax'));
  2982. if (this.ajaxOptions.processResults != null) {
  2983. this.processResults = this.ajaxOptions.processResults;
  2984. }
  2985. AjaxAdapter.__super__.constructor.call(this, $element, options);
  2986. }
  2987. Utils.Extend(AjaxAdapter, ArrayAdapter);
  2988. AjaxAdapter.prototype._applyDefaults = function (options) {
  2989. var defaults = {
  2990. data: function (params) {
  2991. return $.extend({}, params, {
  2992. q: params.term
  2993. });
  2994. },
  2995. transport: function (params, success, failure) {
  2996. var $request = $.ajax(params);
  2997. $request.then(success);
  2998. $request.fail(failure);
  2999. return $request;
  3000. }
  3001. };
  3002. return $.extend({}, defaults, options, true);
  3003. };
  3004. AjaxAdapter.prototype.processResults = function (results) {
  3005. return results;
  3006. };
  3007. AjaxAdapter.prototype.query = function (params, callback) {
  3008. var matches = [];
  3009. var self = this;
  3010. if (this._request != null) {
  3011. // JSONP requests cannot always be aborted
  3012. if ($.isFunction(this._request.abort)) {
  3013. this._request.abort();
  3014. }
  3015. this._request = null;
  3016. }
  3017. var options = $.extend({
  3018. type: 'GET'
  3019. }, this.ajaxOptions);
  3020. if (typeof options.url === 'function') {
  3021. options.url = options.url.call(this.$element, params);
  3022. }
  3023. if (typeof options.data === 'function') {
  3024. options.data = options.data.call(this.$element, params);
  3025. }
  3026. function request () {
  3027. var $request = options.transport(options, function (data) {
  3028. var results = self.processResults(data, params);
  3029. if (self.options.get('debug') && window.console && console.error) {
  3030. // Check to make sure that the response included a `results` key.
  3031. if (!results || !results.results || !Array.isArray(results.results)) {
  3032. console.error(
  3033. 'Select2: The AJAX results did not return an array in the ' +
  3034. '`results` key of the response.'
  3035. );
  3036. }
  3037. }
  3038. callback(results);
  3039. }, function () {
  3040. // Attempt to detect if a request was aborted
  3041. // Only works if the transport exposes a status property
  3042. if ('status' in $request &&
  3043. ($request.status === 0 || $request.status === '0')) {
  3044. return;
  3045. }
  3046. self.trigger('results:message', {
  3047. message: 'errorLoading'
  3048. });
  3049. });
  3050. self._request = $request;
  3051. }
  3052. if (this.ajaxOptions.delay && params.term != null) {
  3053. if (this._queryTimeout) {
  3054. window.clearTimeout(this._queryTimeout);
  3055. }
  3056. this._queryTimeout = window.setTimeout(request, this.ajaxOptions.delay);
  3057. } else {
  3058. request();
  3059. }
  3060. };
  3061. return AjaxAdapter;
  3062. });
  3063. S2.define('select2/data/tags',[
  3064. 'jquery'
  3065. ], function ($) {
  3066. function Tags (decorated, $element, options) {
  3067. var tags = options.get('tags');
  3068. var createTag = options.get('createTag');
  3069. if (createTag !== undefined) {
  3070. this.createTag = createTag;
  3071. }
  3072. var insertTag = options.get('insertTag');
  3073. if (insertTag !== undefined) {
  3074. this.insertTag = insertTag;
  3075. }
  3076. decorated.call(this, $element, options);
  3077. if (Array.isArray(tags)) {
  3078. for (var t = 0; t < tags.length; t++) {
  3079. var tag = tags[t];
  3080. var item = this._normalizeItem(tag);
  3081. var $option = this.option(item);
  3082. this.$element.append($option);
  3083. }
  3084. }
  3085. }
  3086. Tags.prototype.query = function (decorated, params, callback) {
  3087. var self = this;
  3088. this._removeOldTags();
  3089. if (params.term == null || params.page != null) {
  3090. decorated.call(this, params, callback);
  3091. return;
  3092. }
  3093. function wrapper (obj, child) {
  3094. var data = obj.results;
  3095. for (var i = 0; i < data.length; i++) {
  3096. var option = data[i];
  3097. var checkChildren = (
  3098. option.children != null &&
  3099. !wrapper({
  3100. results: option.children
  3101. }, true)
  3102. );
  3103. var optionText = (option.text || '').toUpperCase();
  3104. var paramsTerm = (params.term || '').toUpperCase();
  3105. var checkText = optionText === paramsTerm;
  3106. if (checkText || checkChildren) {
  3107. if (child) {
  3108. return false;
  3109. }
  3110. obj.data = data;
  3111. callback(obj);
  3112. return;
  3113. }
  3114. }
  3115. if (child) {
  3116. return true;
  3117. }
  3118. var tag = self.createTag(params);
  3119. if (tag != null) {
  3120. var $option = self.option(tag);
  3121. $option.attr('data-select2-tag', true);
  3122. self.addOptions([$option]);
  3123. self.insertTag(data, tag);
  3124. }
  3125. obj.results = data;
  3126. callback(obj);
  3127. }
  3128. decorated.call(this, params, wrapper);
  3129. };
  3130. Tags.prototype.createTag = function (decorated, params) {
  3131. if (params.term == null) {
  3132. return null;
  3133. }
  3134. var term = params.term.trim();
  3135. if (term === '') {
  3136. return null;
  3137. }
  3138. return {
  3139. id: term,
  3140. text: term
  3141. };
  3142. };
  3143. Tags.prototype.insertTag = function (_, data, tag) {
  3144. data.unshift(tag);
  3145. };
  3146. Tags.prototype._removeOldTags = function (_) {
  3147. var $options = this.$element.find('option[data-select2-tag]');
  3148. $options.each(function () {
  3149. if (this.selected) {
  3150. return;
  3151. }
  3152. $(this).remove();
  3153. });
  3154. };
  3155. return Tags;
  3156. });
  3157. S2.define('select2/data/tokenizer',[
  3158. 'jquery'
  3159. ], function ($) {
  3160. function Tokenizer (decorated, $element, options) {
  3161. var tokenizer = options.get('tokenizer');
  3162. if (tokenizer !== undefined) {
  3163. this.tokenizer = tokenizer;
  3164. }
  3165. decorated.call(this, $element, options);
  3166. }
  3167. Tokenizer.prototype.bind = function (decorated, container, $container) {
  3168. decorated.call(this, container, $container);
  3169. this.$search = container.dropdown.$search || container.selection.$search ||
  3170. $container.find('.select2-search__field');
  3171. };
  3172. Tokenizer.prototype.query = function (decorated, params, callback) {
  3173. var self = this;
  3174. function createAndSelect (data) {
  3175. // Normalize the data object so we can use it for checks
  3176. var item = self._normalizeItem(data);
  3177. // Check if the data object already exists as a tag
  3178. // Select it if it doesn't
  3179. var $existingOptions = self.$element.find('option').filter(function () {
  3180. return $(this).val() === item.id;
  3181. });
  3182. // If an existing option wasn't found for it, create the option
  3183. if (!$existingOptions.length) {
  3184. var $option = self.option(item);
  3185. $option.attr('data-select2-tag', true);
  3186. self._removeOldTags();
  3187. self.addOptions([$option]);
  3188. }
  3189. // Select the item, now that we know there is an option for it
  3190. select(item);
  3191. }
  3192. function select (data) {
  3193. self.trigger('select', {
  3194. data: data
  3195. });
  3196. }
  3197. params.term = params.term || '';
  3198. var tokenData = this.tokenizer(params, this.options, createAndSelect);
  3199. if (tokenData.term !== params.term) {
  3200. // Replace the search term if we have the search box
  3201. if (this.$search.length) {
  3202. this.$search.val(tokenData.term);
  3203. this.$search.trigger('focus');
  3204. }
  3205. params.term = tokenData.term;
  3206. }
  3207. decorated.call(this, params, callback);
  3208. };
  3209. Tokenizer.prototype.tokenizer = function (_, params, options, callback) {
  3210. var separators = options.get('tokenSeparators') || [];
  3211. var term = params.term;
  3212. var i = 0;
  3213. var createTag = this.createTag || function (params) {
  3214. return {
  3215. id: params.term,
  3216. text: params.term
  3217. };
  3218. };
  3219. while (i < term.length) {
  3220. var termChar = term[i];
  3221. if (separators.indexOf(termChar) === -1) {
  3222. i++;
  3223. continue;
  3224. }
  3225. var part = term.substr(0, i);
  3226. var partParams = $.extend({}, params, {
  3227. term: part
  3228. });
  3229. var data = createTag(partParams);
  3230. if (data == null) {
  3231. i++;
  3232. continue;
  3233. }
  3234. callback(data);
  3235. // Reset the term to not include the tokenized portion
  3236. term = term.substr(i + 1) || '';
  3237. i = 0;
  3238. }
  3239. return {
  3240. term: term
  3241. };
  3242. };
  3243. return Tokenizer;
  3244. });
  3245. S2.define('select2/data/minimumInputLength',[
  3246. ], function () {
  3247. function MinimumInputLength (decorated, $e, options) {
  3248. this.minimumInputLength = options.get('minimumInputLength');
  3249. decorated.call(this, $e, options);
  3250. }
  3251. MinimumInputLength.prototype.query = function (decorated, params, callback) {
  3252. params.term = params.term || '';
  3253. if (params.term.length < this.minimumInputLength) {
  3254. this.trigger('results:message', {
  3255. message: 'inputTooShort',
  3256. args: {
  3257. minimum: this.minimumInputLength,
  3258. input: params.term,
  3259. params: params
  3260. }
  3261. });
  3262. return;
  3263. }
  3264. decorated.call(this, params, callback);
  3265. };
  3266. return MinimumInputLength;
  3267. });
  3268. S2.define('select2/data/maximumInputLength',[
  3269. ], function () {
  3270. function MaximumInputLength (decorated, $e, options) {
  3271. this.maximumInputLength = options.get('maximumInputLength');
  3272. decorated.call(this, $e, options);
  3273. }
  3274. MaximumInputLength.prototype.query = function (decorated, params, callback) {
  3275. params.term = params.term || '';
  3276. if (this.maximumInputLength > 0 &&
  3277. params.term.length > this.maximumInputLength) {
  3278. this.trigger('results:message', {
  3279. message: 'inputTooLong',
  3280. args: {
  3281. maximum: this.maximumInputLength,
  3282. input: params.term,
  3283. params: params
  3284. }
  3285. });
  3286. return;
  3287. }
  3288. decorated.call(this, params, callback);
  3289. };
  3290. return MaximumInputLength;
  3291. });
  3292. S2.define('select2/data/maximumSelectionLength',[
  3293. ], function (){
  3294. function MaximumSelectionLength (decorated, $e, options) {
  3295. this.maximumSelectionLength = options.get('maximumSelectionLength');
  3296. decorated.call(this, $e, options);
  3297. }
  3298. MaximumSelectionLength.prototype.bind =
  3299. function (decorated, container, $container) {
  3300. var self = this;
  3301. decorated.call(this, container, $container);
  3302. container.on('select', function () {
  3303. self._checkIfMaximumSelected();
  3304. });
  3305. };
  3306. MaximumSelectionLength.prototype.query =
  3307. function (decorated, params, callback) {
  3308. var self = this;
  3309. this._checkIfMaximumSelected(function () {
  3310. decorated.call(self, params, callback);
  3311. });
  3312. };
  3313. MaximumSelectionLength.prototype._checkIfMaximumSelected =
  3314. function (_, successCallback) {
  3315. var self = this;
  3316. this.current(function (currentData) {
  3317. var count = currentData != null ? currentData.length : 0;
  3318. if (self.maximumSelectionLength > 0 &&
  3319. count >= self.maximumSelectionLength) {
  3320. self.trigger('results:message', {
  3321. message: 'maximumSelected',
  3322. args: {
  3323. maximum: self.maximumSelectionLength
  3324. }
  3325. });
  3326. return;
  3327. }
  3328. if (successCallback) {
  3329. successCallback();
  3330. }
  3331. });
  3332. };
  3333. return MaximumSelectionLength;
  3334. });
  3335. S2.define('select2/dropdown',[
  3336. 'jquery',
  3337. './utils'
  3338. ], function ($, Utils) {
  3339. function Dropdown ($element, options) {
  3340. this.$element = $element;
  3341. this.options = options;
  3342. Dropdown.__super__.constructor.call(this);
  3343. }
  3344. Utils.Extend(Dropdown, Utils.Observable);
  3345. Dropdown.prototype.render = function () {
  3346. var $dropdown = $(
  3347. '<span class="select2-dropdown">' +
  3348. '<span class="select2-results"></span>' +
  3349. '</span>'
  3350. );
  3351. $dropdown.attr('dir', this.options.get('dir'));
  3352. this.$dropdown = $dropdown;
  3353. return $dropdown;
  3354. };
  3355. Dropdown.prototype.bind = function () {
  3356. // Should be implemented in subclasses
  3357. };
  3358. Dropdown.prototype.position = function ($dropdown, $container) {
  3359. // Should be implemented in subclasses
  3360. };
  3361. Dropdown.prototype.destroy = function () {
  3362. // Remove the dropdown from the DOM
  3363. this.$dropdown.remove();
  3364. };
  3365. return Dropdown;
  3366. });
  3367. S2.define('select2/dropdown/search',[
  3368. 'jquery'
  3369. ], function ($) {
  3370. function Search () { }
  3371. Search.prototype.render = function (decorated) {
  3372. var $rendered = decorated.call(this);
  3373. var $search = $(
  3374. '<span class="select2-search select2-search--dropdown">' +
  3375. '<input class="select2-search__field" type="search" tabindex="-1"' +
  3376. ' autocomplete="off" autocorrect="off" autocapitalize="none"' +
  3377. ' spellcheck="false" role="searchbox" aria-autocomplete="list" />' +
  3378. '</span>'
  3379. );
  3380. this.$searchContainer = $search;
  3381. this.$search = $search.find('input');
  3382. $rendered.prepend($search);
  3383. return $rendered;
  3384. };
  3385. Search.prototype.bind = function (decorated, container, $container) {
  3386. var self = this;
  3387. var resultsId = container.id + '-results';
  3388. decorated.call(this, container, $container);
  3389. this.$search.on('keydown', function (evt) {
  3390. self.trigger('keypress', evt);
  3391. self._keyUpPrevented = evt.isDefaultPrevented();
  3392. });
  3393. // Workaround for browsers which do not support the `input` event
  3394. // This will prevent double-triggering of events for browsers which support
  3395. // both the `keyup` and `input` events.
  3396. this.$search.on('input', function (evt) {
  3397. // Unbind the duplicated `keyup` event
  3398. $(this).off('keyup');
  3399. });
  3400. this.$search.on('keyup input', function (evt) {
  3401. self.handleSearch(evt);
  3402. });
  3403. container.on('open', function () {
  3404. self.$search.attr('tabindex', 0);
  3405. self.$search.attr('aria-controls', resultsId);
  3406. self.$search.trigger('focus');
  3407. window.setTimeout(function () {
  3408. self.$search.trigger('focus');
  3409. }, 0);
  3410. });
  3411. container.on('close', function () {
  3412. self.$search.attr('tabindex', -1);
  3413. self.$search.removeAttr('aria-controls');
  3414. self.$search.removeAttr('aria-activedescendant');
  3415. self.$search.val('');
  3416. self.$search.trigger('blur');
  3417. });
  3418. container.on('focus', function () {
  3419. if (!container.isOpen()) {
  3420. self.$search.trigger('focus');
  3421. }
  3422. });
  3423. container.on('results:all', function (params) {
  3424. if (params.query.term == null || params.query.term === '') {
  3425. var showSearch = self.showSearch(params);
  3426. if (showSearch) {
  3427. self.$searchContainer[0].classList.remove('select2-search--hide');
  3428. } else {
  3429. self.$searchContainer[0].classList.add('select2-search--hide');
  3430. }
  3431. }
  3432. });
  3433. container.on('results:focus', function (params) {
  3434. if (params.data._resultId) {
  3435. self.$search.attr('aria-activedescendant', params.data._resultId);
  3436. } else {
  3437. self.$search.removeAttr('aria-activedescendant');
  3438. }
  3439. });
  3440. };
  3441. Search.prototype.handleSearch = function (evt) {
  3442. if (!this._keyUpPrevented) {
  3443. var input = this.$search.val();
  3444. this.trigger('query', {
  3445. term: input
  3446. });
  3447. }
  3448. this._keyUpPrevented = false;
  3449. };
  3450. Search.prototype.showSearch = function (_, params) {
  3451. return true;
  3452. };
  3453. return Search;
  3454. });
  3455. S2.define('select2/dropdown/hidePlaceholder',[
  3456. ], function () {
  3457. function HidePlaceholder (decorated, $element, options, dataAdapter) {
  3458. this.placeholder = this.normalizePlaceholder(options.get('placeholder'));
  3459. decorated.call(this, $element, options, dataAdapter);
  3460. }
  3461. HidePlaceholder.prototype.append = function (decorated, data) {
  3462. data.results = this.removePlaceholder(data.results);
  3463. decorated.call(this, data);
  3464. };
  3465. HidePlaceholder.prototype.normalizePlaceholder = function (_, placeholder) {
  3466. if (typeof placeholder === 'string') {
  3467. placeholder = {
  3468. id: '',
  3469. text: placeholder
  3470. };
  3471. }
  3472. return placeholder;
  3473. };
  3474. HidePlaceholder.prototype.removePlaceholder = function (_, data) {
  3475. var modifiedData = data.slice(0);
  3476. for (var d = data.length - 1; d >= 0; d--) {
  3477. var item = data[d];
  3478. if (this.placeholder.id === item.id) {
  3479. modifiedData.splice(d, 1);
  3480. }
  3481. }
  3482. return modifiedData;
  3483. };
  3484. return HidePlaceholder;
  3485. });
  3486. S2.define('select2/dropdown/infiniteScroll',[
  3487. 'jquery'
  3488. ], function ($) {
  3489. function InfiniteScroll (decorated, $element, options, dataAdapter) {
  3490. this.lastParams = {};
  3491. decorated.call(this, $element, options, dataAdapter);
  3492. this.$loadingMore = this.createLoadingMore();
  3493. this.loading = false;
  3494. }
  3495. InfiniteScroll.prototype.append = function (decorated, data) {
  3496. this.$loadingMore.remove();
  3497. this.loading = false;
  3498. decorated.call(this, data);
  3499. if (this.showLoadingMore(data)) {
  3500. this.$results.append(this.$loadingMore);
  3501. this.loadMoreIfNeeded();
  3502. }
  3503. };
  3504. InfiniteScroll.prototype.bind = function (decorated, container, $container) {
  3505. var self = this;
  3506. decorated.call(this, container, $container);
  3507. container.on('query', function (params) {
  3508. self.lastParams = params;
  3509. self.loading = true;
  3510. });
  3511. container.on('query:append', function (params) {
  3512. self.lastParams = params;
  3513. self.loading = true;
  3514. });
  3515. this.$results.on('scroll', this.loadMoreIfNeeded.bind(this));
  3516. };
  3517. InfiniteScroll.prototype.loadMoreIfNeeded = function () {
  3518. var isLoadMoreVisible = $.contains(
  3519. document.documentElement,
  3520. this.$loadingMore[0]
  3521. );
  3522. if (this.loading || !isLoadMoreVisible) {
  3523. return;
  3524. }
  3525. var currentOffset = this.$results.offset().top +
  3526. this.$results.outerHeight(false);
  3527. var loadingMoreOffset = this.$loadingMore.offset().top +
  3528. this.$loadingMore.outerHeight(false);
  3529. if (currentOffset + 50 >= loadingMoreOffset) {
  3530. this.loadMore();
  3531. }
  3532. };
  3533. InfiniteScroll.prototype.loadMore = function () {
  3534. this.loading = true;
  3535. var params = $.extend({}, {page: 1}, this.lastParams);
  3536. params.page++;
  3537. this.trigger('query:append', params);
  3538. };
  3539. InfiniteScroll.prototype.showLoadingMore = function (_, data) {
  3540. return data.pagination && data.pagination.more;
  3541. };
  3542. InfiniteScroll.prototype.createLoadingMore = function () {
  3543. var $option = $(
  3544. '<li ' +
  3545. 'class="select2-results__option select2-results__option--load-more"' +
  3546. 'role="option" aria-disabled="true"></li>'
  3547. );
  3548. var message = this.options.get('translations').get('loadingMore');
  3549. $option.html(message(this.lastParams));
  3550. return $option;
  3551. };
  3552. return InfiniteScroll;
  3553. });
  3554. S2.define('select2/dropdown/attachBody',[
  3555. 'jquery',
  3556. '../utils'
  3557. ], function ($, Utils) {
  3558. function AttachBody (decorated, $element, options) {
  3559. this.$dropdownParent = $(options.get('dropdownParent') || document.body);
  3560. decorated.call(this, $element, options);
  3561. }
  3562. AttachBody.prototype.bind = function (decorated, container, $container) {
  3563. var self = this;
  3564. decorated.call(this, container, $container);
  3565. container.on('open', function () {
  3566. self._showDropdown();
  3567. self._attachPositioningHandler(container);
  3568. // Must bind after the results handlers to ensure correct sizing
  3569. self._bindContainerResultHandlers(container);
  3570. });
  3571. container.on('close', function () {
  3572. self._hideDropdown();
  3573. self._detachPositioningHandler(container);
  3574. });
  3575. this.$dropdownContainer.on('mousedown', function (evt) {
  3576. evt.stopPropagation();
  3577. });
  3578. };
  3579. AttachBody.prototype.destroy = function (decorated) {
  3580. decorated.call(this);
  3581. this.$dropdownContainer.remove();
  3582. };
  3583. AttachBody.prototype.position = function (decorated, $dropdown, $container) {
  3584. // Clone all of the container classes
  3585. $dropdown.attr('class', $container.attr('class'));
  3586. $dropdown[0].classList.remove('select2');
  3587. $dropdown[0].classList.add('select2-container--open');
  3588. $dropdown.css({
  3589. position: 'absolute',
  3590. top: -999999
  3591. });
  3592. this.$container = $container;
  3593. };
  3594. AttachBody.prototype.render = function (decorated) {
  3595. var $container = $('<span></span>');
  3596. var $dropdown = decorated.call(this);
  3597. $container.append($dropdown);
  3598. this.$dropdownContainer = $container;
  3599. return $container;
  3600. };
  3601. AttachBody.prototype._hideDropdown = function (decorated) {
  3602. this.$dropdownContainer.detach();
  3603. };
  3604. AttachBody.prototype._bindContainerResultHandlers =
  3605. function (decorated, container) {
  3606. // These should only be bound once
  3607. if (this._containerResultsHandlersBound) {
  3608. return;
  3609. }
  3610. var self = this;
  3611. container.on('results:all', function () {
  3612. self._positionDropdown();
  3613. self._resizeDropdown();
  3614. });
  3615. container.on('results:append', function () {
  3616. self._positionDropdown();
  3617. self._resizeDropdown();
  3618. });
  3619. container.on('results:message', function () {
  3620. self._positionDropdown();
  3621. self._resizeDropdown();
  3622. });
  3623. container.on('select', function () {
  3624. self._positionDropdown();
  3625. self._resizeDropdown();
  3626. });
  3627. container.on('unselect', function () {
  3628. self._positionDropdown();
  3629. self._resizeDropdown();
  3630. });
  3631. this._containerResultsHandlersBound = true;
  3632. };
  3633. AttachBody.prototype._attachPositioningHandler =
  3634. function (decorated, container) {
  3635. var self = this;
  3636. var scrollEvent = 'scroll.select2.' + container.id;
  3637. var resizeEvent = 'resize.select2.' + container.id;
  3638. var orientationEvent = 'orientationchange.select2.' + container.id;
  3639. var $watchers = this.$container.parents().filter(Utils.hasScroll);
  3640. $watchers.each(function () {
  3641. Utils.StoreData(this, 'select2-scroll-position', {
  3642. x: $(this).scrollLeft(),
  3643. y: $(this).scrollTop()
  3644. });
  3645. });
  3646. $watchers.on(scrollEvent, function (ev) {
  3647. var position = Utils.GetData(this, 'select2-scroll-position');
  3648. $(this).scrollTop(position.y);
  3649. });
  3650. $(window).on(scrollEvent + ' ' + resizeEvent + ' ' + orientationEvent,
  3651. function (e) {
  3652. self._positionDropdown();
  3653. self._resizeDropdown();
  3654. });
  3655. };
  3656. AttachBody.prototype._detachPositioningHandler =
  3657. function (decorated, container) {
  3658. var scrollEvent = 'scroll.select2.' + container.id;
  3659. var resizeEvent = 'resize.select2.' + container.id;
  3660. var orientationEvent = 'orientationchange.select2.' + container.id;
  3661. var $watchers = this.$container.parents().filter(Utils.hasScroll);
  3662. $watchers.off(scrollEvent);
  3663. $(window).off(scrollEvent + ' ' + resizeEvent + ' ' + orientationEvent);
  3664. };
  3665. AttachBody.prototype._positionDropdown = function () {
  3666. var $window = $(window);
  3667. var isCurrentlyAbove = this.$dropdown[0].classList
  3668. .contains('select2-dropdown--above');
  3669. var isCurrentlyBelow = this.$dropdown[0].classList
  3670. .contains('select2-dropdown--below');
  3671. var newDirection = null;
  3672. var offset = this.$container.offset();
  3673. offset.bottom = offset.top + this.$container.outerHeight(false);
  3674. var container = {
  3675. height: this.$container.outerHeight(false)
  3676. };
  3677. container.top = offset.top;
  3678. container.bottom = offset.top + container.height;
  3679. var dropdown = {
  3680. height: this.$dropdown.outerHeight(false)
  3681. };
  3682. var viewport = {
  3683. top: $window.scrollTop(),
  3684. bottom: $window.scrollTop() + $window.height()
  3685. };
  3686. var enoughRoomAbove = viewport.top < (offset.top - dropdown.height);
  3687. var enoughRoomBelow = viewport.bottom > (offset.bottom + dropdown.height);
  3688. var css = {
  3689. left: offset.left,
  3690. top: container.bottom
  3691. };
  3692. // Determine what the parent element is to use for calculating the offset
  3693. var $offsetParent = this.$dropdownParent;
  3694. // For statically positioned elements, we need to get the element
  3695. // that is determining the offset
  3696. if ($offsetParent.css('position') === 'static') {
  3697. $offsetParent = $offsetParent.offsetParent();
  3698. }
  3699. var parentOffset = {
  3700. top: 0,
  3701. left: 0
  3702. };
  3703. if (
  3704. $.contains(document.body, $offsetParent[0]) ||
  3705. $offsetParent[0].isConnected
  3706. ) {
  3707. parentOffset = $offsetParent.offset();
  3708. }
  3709. css.top -= parentOffset.top;
  3710. css.left -= parentOffset.left;
  3711. if (!isCurrentlyAbove && !isCurrentlyBelow) {
  3712. newDirection = 'below';
  3713. }
  3714. if (!enoughRoomBelow && enoughRoomAbove && !isCurrentlyAbove) {
  3715. newDirection = 'above';
  3716. } else if (!enoughRoomAbove && enoughRoomBelow && isCurrentlyAbove) {
  3717. newDirection = 'below';
  3718. }
  3719. if (newDirection == 'above' ||
  3720. (isCurrentlyAbove && newDirection !== 'below')) {
  3721. css.top = container.top - parentOffset.top - dropdown.height;
  3722. }
  3723. if (newDirection != null) {
  3724. this.$dropdown[0].classList.remove('select2-dropdown--below');
  3725. this.$dropdown[0].classList.remove('select2-dropdown--above');
  3726. this.$dropdown[0].classList.add('select2-dropdown--' + newDirection);
  3727. this.$container[0].classList.remove('select2-container--below');
  3728. this.$container[0].classList.remove('select2-container--above');
  3729. this.$container[0].classList.add('select2-container--' + newDirection);
  3730. }
  3731. this.$dropdownContainer.css(css);
  3732. };
  3733. AttachBody.prototype._resizeDropdown = function () {
  3734. var css = {
  3735. width: this.$container.outerWidth(false) + 'px'
  3736. };
  3737. if (this.options.get('dropdownAutoWidth')) {
  3738. css.minWidth = css.width;
  3739. css.position = 'relative';
  3740. css.width = 'auto';
  3741. }
  3742. this.$dropdown.css(css);
  3743. };
  3744. AttachBody.prototype._showDropdown = function (decorated) {
  3745. this.$dropdownContainer.appendTo(this.$dropdownParent);
  3746. this._positionDropdown();
  3747. this._resizeDropdown();
  3748. };
  3749. return AttachBody;
  3750. });
  3751. S2.define('select2/dropdown/minimumResultsForSearch',[
  3752. ], function () {
  3753. function countResults (data) {
  3754. var count = 0;
  3755. for (var d = 0; d < data.length; d++) {
  3756. var item = data[d];
  3757. if (item.children) {
  3758. count += countResults(item.children);
  3759. } else {
  3760. count++;
  3761. }
  3762. }
  3763. return count;
  3764. }
  3765. function MinimumResultsForSearch (decorated, $element, options, dataAdapter) {
  3766. this.minimumResultsForSearch = options.get('minimumResultsForSearch');
  3767. if (this.minimumResultsForSearch < 0) {
  3768. this.minimumResultsForSearch = Infinity;
  3769. }
  3770. decorated.call(this, $element, options, dataAdapter);
  3771. }
  3772. MinimumResultsForSearch.prototype.showSearch = function (decorated, params) {
  3773. if (countResults(params.data.results) < this.minimumResultsForSearch) {
  3774. return false;
  3775. }
  3776. return decorated.call(this, params);
  3777. };
  3778. return MinimumResultsForSearch;
  3779. });
  3780. S2.define('select2/dropdown/selectOnClose',[
  3781. '../utils'
  3782. ], function (Utils) {
  3783. function SelectOnClose () { }
  3784. SelectOnClose.prototype.bind = function (decorated, container, $container) {
  3785. var self = this;
  3786. decorated.call(this, container, $container);
  3787. container.on('close', function (params) {
  3788. self._handleSelectOnClose(params);
  3789. });
  3790. };
  3791. SelectOnClose.prototype._handleSelectOnClose = function (_, params) {
  3792. if (params && params.originalSelect2Event != null) {
  3793. var event = params.originalSelect2Event;
  3794. // Don't select an item if the close event was triggered from a select or
  3795. // unselect event
  3796. if (event._type === 'select' || event._type === 'unselect') {
  3797. return;
  3798. }
  3799. }
  3800. var $highlightedResults = this.getHighlightedResults();
  3801. // Only select highlighted results
  3802. if ($highlightedResults.length < 1) {
  3803. return;
  3804. }
  3805. var data = Utils.GetData($highlightedResults[0], 'data');
  3806. // Don't re-select already selected resulte
  3807. if (
  3808. (data.element != null && data.element.selected) ||
  3809. (data.element == null && data.selected)
  3810. ) {
  3811. return;
  3812. }
  3813. this.trigger('select', {
  3814. data: data
  3815. });
  3816. };
  3817. return SelectOnClose;
  3818. });
  3819. S2.define('select2/dropdown/closeOnSelect',[
  3820. ], function () {
  3821. function CloseOnSelect () { }
  3822. CloseOnSelect.prototype.bind = function (decorated, container, $container) {
  3823. var self = this;
  3824. decorated.call(this, container, $container);
  3825. container.on('select', function (evt) {
  3826. self._selectTriggered(evt);
  3827. });
  3828. container.on('unselect', function (evt) {
  3829. self._selectTriggered(evt);
  3830. });
  3831. };
  3832. CloseOnSelect.prototype._selectTriggered = function (_, evt) {
  3833. var originalEvent = evt.originalEvent;
  3834. // Don't close if the control key is being held
  3835. if (originalEvent && (originalEvent.ctrlKey || originalEvent.metaKey)) {
  3836. return;
  3837. }
  3838. this.trigger('close', {
  3839. originalEvent: originalEvent,
  3840. originalSelect2Event: evt
  3841. });
  3842. };
  3843. return CloseOnSelect;
  3844. });
  3845. S2.define('select2/dropdown/dropdownCss',[
  3846. '../utils'
  3847. ], function (Utils) {
  3848. function DropdownCSS () { }
  3849. DropdownCSS.prototype.render = function (decorated) {
  3850. var $dropdown = decorated.call(this);
  3851. var dropdownCssClass = this.options.get('dropdownCssClass') || '';
  3852. if (dropdownCssClass.indexOf(':all:') !== -1) {
  3853. dropdownCssClass = dropdownCssClass.replace(':all:', '');
  3854. Utils.copyNonInternalCssClasses($dropdown[0], this.$element[0]);
  3855. }
  3856. $dropdown.addClass(dropdownCssClass);
  3857. return $dropdown;
  3858. };
  3859. return DropdownCSS;
  3860. });
  3861. S2.define('select2/i18n/en',[],function () {
  3862. // English
  3863. return {
  3864. errorLoading: function () {
  3865. return 'The results could not be loaded.';
  3866. },
  3867. inputTooLong: function (args) {
  3868. var overChars = args.input.length - args.maximum;
  3869. var message = 'Please delete ' + overChars + ' character';
  3870. if (overChars != 1) {
  3871. message += 's';
  3872. }
  3873. return message;
  3874. },
  3875. inputTooShort: function (args) {
  3876. var remainingChars = args.minimum - args.input.length;
  3877. var message = 'Please enter ' + remainingChars + ' or more characters';
  3878. return message;
  3879. },
  3880. loadingMore: function () {
  3881. return 'Loading more results…';
  3882. },
  3883. maximumSelected: function (args) {
  3884. var message = 'You can only select ' + args.maximum + ' item';
  3885. if (args.maximum != 1) {
  3886. message += 's';
  3887. }
  3888. return message;
  3889. },
  3890. noResults: function () {
  3891. return 'No results found';
  3892. },
  3893. searching: function () {
  3894. return 'Searching…';
  3895. },
  3896. removeAllItems: function () {
  3897. return 'Remove all items';
  3898. }
  3899. };
  3900. });
  3901. S2.define('select2/defaults',[
  3902. 'jquery',
  3903. './results',
  3904. './selection/single',
  3905. './selection/multiple',
  3906. './selection/placeholder',
  3907. './selection/allowClear',
  3908. './selection/search',
  3909. './selection/selectionCss',
  3910. './selection/eventRelay',
  3911. './utils',
  3912. './translation',
  3913. './diacritics',
  3914. './data/select',
  3915. './data/array',
  3916. './data/ajax',
  3917. './data/tags',
  3918. './data/tokenizer',
  3919. './data/minimumInputLength',
  3920. './data/maximumInputLength',
  3921. './data/maximumSelectionLength',
  3922. './dropdown',
  3923. './dropdown/search',
  3924. './dropdown/hidePlaceholder',
  3925. './dropdown/infiniteScroll',
  3926. './dropdown/attachBody',
  3927. './dropdown/minimumResultsForSearch',
  3928. './dropdown/selectOnClose',
  3929. './dropdown/closeOnSelect',
  3930. './dropdown/dropdownCss',
  3931. './i18n/en'
  3932. ], function ($,
  3933. ResultsList,
  3934. SingleSelection, MultipleSelection, Placeholder, AllowClear,
  3935. SelectionSearch, SelectionCSS, EventRelay,
  3936. Utils, Translation, DIACRITICS,
  3937. SelectData, ArrayData, AjaxData, Tags, Tokenizer,
  3938. MinimumInputLength, MaximumInputLength, MaximumSelectionLength,
  3939. Dropdown, DropdownSearch, HidePlaceholder, InfiniteScroll,
  3940. AttachBody, MinimumResultsForSearch, SelectOnClose, CloseOnSelect,
  3941. DropdownCSS,
  3942. EnglishTranslation) {
  3943. function Defaults () {
  3944. this.reset();
  3945. }
  3946. Defaults.prototype.apply = function (options) {
  3947. options = $.extend(true, {}, this.defaults, options);
  3948. if (options.dataAdapter == null) {
  3949. if (options.ajax != null) {
  3950. options.dataAdapter = AjaxData;
  3951. } else if (options.data != null) {
  3952. options.dataAdapter = ArrayData;
  3953. } else {
  3954. options.dataAdapter = SelectData;
  3955. }
  3956. if (options.minimumInputLength > 0) {
  3957. options.dataAdapter = Utils.Decorate(
  3958. options.dataAdapter,
  3959. MinimumInputLength
  3960. );
  3961. }
  3962. if (options.maximumInputLength > 0) {
  3963. options.dataAdapter = Utils.Decorate(
  3964. options.dataAdapter,
  3965. MaximumInputLength
  3966. );
  3967. }
  3968. if (options.maximumSelectionLength > 0) {
  3969. options.dataAdapter = Utils.Decorate(
  3970. options.dataAdapter,
  3971. MaximumSelectionLength
  3972. );
  3973. }
  3974. if (options.tags) {
  3975. options.dataAdapter = Utils.Decorate(options.dataAdapter, Tags);
  3976. }
  3977. if (options.tokenSeparators != null || options.tokenizer != null) {
  3978. options.dataAdapter = Utils.Decorate(
  3979. options.dataAdapter,
  3980. Tokenizer
  3981. );
  3982. }
  3983. }
  3984. if (options.resultsAdapter == null) {
  3985. options.resultsAdapter = ResultsList;
  3986. if (options.ajax != null) {
  3987. options.resultsAdapter = Utils.Decorate(
  3988. options.resultsAdapter,
  3989. InfiniteScroll
  3990. );
  3991. }
  3992. if (options.placeholder != null) {
  3993. options.resultsAdapter = Utils.Decorate(
  3994. options.resultsAdapter,
  3995. HidePlaceholder
  3996. );
  3997. }
  3998. if (options.selectOnClose) {
  3999. options.resultsAdapter = Utils.Decorate(
  4000. options.resultsAdapter,
  4001. SelectOnClose
  4002. );
  4003. }
  4004. }
  4005. if (options.dropdownAdapter == null) {
  4006. if (options.multiple) {
  4007. options.dropdownAdapter = Dropdown;
  4008. } else {
  4009. var SearchableDropdown = Utils.Decorate(Dropdown, DropdownSearch);
  4010. options.dropdownAdapter = SearchableDropdown;
  4011. }
  4012. if (options.minimumResultsForSearch !== 0) {
  4013. options.dropdownAdapter = Utils.Decorate(
  4014. options.dropdownAdapter,
  4015. MinimumResultsForSearch
  4016. );
  4017. }
  4018. if (options.closeOnSelect) {
  4019. options.dropdownAdapter = Utils.Decorate(
  4020. options.dropdownAdapter,
  4021. CloseOnSelect
  4022. );
  4023. }
  4024. if (
  4025. options.dropdownCssClass != null ||
  4026. options.dropdownCss != null ||
  4027. options.adaptDropdownCssClass != null
  4028. ) {
  4029. options.dropdownAdapter = Utils.Decorate(
  4030. options.dropdownAdapter,
  4031. DropdownCSS
  4032. );
  4033. }
  4034. options.dropdownAdapter = Utils.Decorate(
  4035. options.dropdownAdapter,
  4036. AttachBody
  4037. );
  4038. }
  4039. if (options.selectionAdapter == null) {
  4040. if (options.multiple) {
  4041. options.selectionAdapter = MultipleSelection;
  4042. } else {
  4043. options.selectionAdapter = SingleSelection;
  4044. }
  4045. // Add the placeholder mixin if a placeholder was specified
  4046. if (options.placeholder != null) {
  4047. options.selectionAdapter = Utils.Decorate(
  4048. options.selectionAdapter,
  4049. Placeholder
  4050. );
  4051. }
  4052. if (options.allowClear) {
  4053. options.selectionAdapter = Utils.Decorate(
  4054. options.selectionAdapter,
  4055. AllowClear
  4056. );
  4057. }
  4058. if (options.multiple) {
  4059. options.selectionAdapter = Utils.Decorate(
  4060. options.selectionAdapter,
  4061. SelectionSearch
  4062. );
  4063. }
  4064. if (
  4065. options.containerCssClass != null ||
  4066. options.containerCss != null ||
  4067. options.adaptContainerCssClass != null
  4068. ) {
  4069. options.selectionAdapter = Utils.Decorate(
  4070. options.selectionAdapter,
  4071. SelectionCSS
  4072. );
  4073. }
  4074. options.selectionAdapter = Utils.Decorate(
  4075. options.selectionAdapter,
  4076. EventRelay
  4077. );
  4078. }
  4079. // If the defaults were not previously applied from an element, it is
  4080. // possible for the language option to have not been resolved
  4081. options.language = this._resolveLanguage(options.language);
  4082. // Always fall back to English since it will always be complete
  4083. options.language.push('en');
  4084. var uniqueLanguages = [];
  4085. for (var l = 0; l < options.language.length; l++) {
  4086. var language = options.language[l];
  4087. if (uniqueLanguages.indexOf(language) === -1) {
  4088. uniqueLanguages.push(language);
  4089. }
  4090. }
  4091. options.language = uniqueLanguages;
  4092. options.translations = this._processTranslations(
  4093. options.language,
  4094. options.debug
  4095. );
  4096. return options;
  4097. };
  4098. Defaults.prototype.reset = function () {
  4099. function stripDiacritics (text) {
  4100. // Used 'uni range + named function' from http://jsperf.com/diacritics/18
  4101. function match(a) {
  4102. return DIACRITICS[a] || a;
  4103. }
  4104. return text.replace(/[^\u0000-\u007E]/g, match);
  4105. }
  4106. function matcher (params, data) {
  4107. // Always return the object if there is nothing to compare
  4108. if (params.term == null || params.term.trim() === '') {
  4109. return data;
  4110. }
  4111. // Do a recursive check for options with children
  4112. if (data.children && data.children.length > 0) {
  4113. // Clone the data object if there are children
  4114. // This is required as we modify the object to remove any non-matches
  4115. var match = $.extend(true, {}, data);
  4116. // Check each child of the option
  4117. for (var c = data.children.length - 1; c >= 0; c--) {
  4118. var child = data.children[c];
  4119. var matches = matcher(params, child);
  4120. // If there wasn't a match, remove the object in the array
  4121. if (matches == null) {
  4122. match.children.splice(c, 1);
  4123. }
  4124. }
  4125. // If any children matched, return the new object
  4126. if (match.children.length > 0) {
  4127. return match;
  4128. }
  4129. // If there were no matching children, check just the plain object
  4130. return matcher(params, match);
  4131. }
  4132. var original = stripDiacritics(data.text).toUpperCase();
  4133. var term = stripDiacritics(params.term).toUpperCase();
  4134. // Check if the text contains the term
  4135. if (original.indexOf(term) > -1) {
  4136. return data;
  4137. }
  4138. // If it doesn't contain the term, don't return anything
  4139. return null;
  4140. }
  4141. this.defaults = {
  4142. amdLanguageBase: './i18n/',
  4143. closeOnSelect: true,
  4144. debug: false,
  4145. dropdownAutoWidth: false,
  4146. escapeMarkup: Utils.escapeMarkup,
  4147. language: {},
  4148. matcher: matcher,
  4149. minimumInputLength: 0,
  4150. maximumInputLength: 0,
  4151. maximumSelectionLength: 0,
  4152. minimumResultsForSearch: 0,
  4153. selectOnClose: false,
  4154. scrollAfterSelect: false,
  4155. sorter: function (data) {
  4156. return data;
  4157. },
  4158. templateResult: function (result) {
  4159. return result.text;
  4160. },
  4161. templateSelection: function (selection) {
  4162. return selection.text;
  4163. },
  4164. theme: 'default',
  4165. width: 'resolve'
  4166. };
  4167. };
  4168. Defaults.prototype.applyFromElement = function (options, $element) {
  4169. var optionLanguage = options.language;
  4170. var defaultLanguage = this.defaults.language;
  4171. var elementLanguage = $element.prop('lang');
  4172. var parentLanguage = $element.closest('[lang]').prop('lang');
  4173. var languages = Array.prototype.concat.call(
  4174. this._resolveLanguage(elementLanguage),
  4175. this._resolveLanguage(optionLanguage),
  4176. this._resolveLanguage(defaultLanguage),
  4177. this._resolveLanguage(parentLanguage)
  4178. );
  4179. options.language = languages;
  4180. return options;
  4181. };
  4182. Defaults.prototype._resolveLanguage = function (language) {
  4183. if (!language) {
  4184. return [];
  4185. }
  4186. if ($.isEmptyObject(language)) {
  4187. return [];
  4188. }
  4189. if ($.isPlainObject(language)) {
  4190. return [language];
  4191. }
  4192. var languages;
  4193. if (!Array.isArray(language)) {
  4194. languages = [language];
  4195. } else {
  4196. languages = language;
  4197. }
  4198. var resolvedLanguages = [];
  4199. for (var l = 0; l < languages.length; l++) {
  4200. resolvedLanguages.push(languages[l]);
  4201. if (typeof languages[l] === 'string' && languages[l].indexOf('-') > 0) {
  4202. // Extract the region information if it is included
  4203. var languageParts = languages[l].split('-');
  4204. var baseLanguage = languageParts[0];
  4205. resolvedLanguages.push(baseLanguage);
  4206. }
  4207. }
  4208. return resolvedLanguages;
  4209. };
  4210. Defaults.prototype._processTranslations = function (languages, debug) {
  4211. var translations = new Translation();
  4212. for (var l = 0; l < languages.length; l++) {
  4213. var languageData = new Translation();
  4214. var language = languages[l];
  4215. if (typeof language === 'string') {
  4216. try {
  4217. // Try to load it with the original name
  4218. languageData = Translation.loadPath(language);
  4219. } catch (e) {
  4220. try {
  4221. // If we couldn't load it, check if it wasn't the full path
  4222. language = this.defaults.amdLanguageBase + language;
  4223. languageData = Translation.loadPath(language);
  4224. } catch (ex) {
  4225. // The translation could not be loaded at all. Sometimes this is
  4226. // because of a configuration problem, other times this can be
  4227. // because of how Select2 helps load all possible translation files
  4228. if (debug && window.console && console.warn) {
  4229. console.warn(
  4230. 'Select2: The language file for "' + language + '" could ' +
  4231. 'not be automatically loaded. A fallback will be used instead.'
  4232. );
  4233. }
  4234. }
  4235. }
  4236. } else if ($.isPlainObject(language)) {
  4237. languageData = new Translation(language);
  4238. } else {
  4239. languageData = language;
  4240. }
  4241. translations.extend(languageData);
  4242. }
  4243. return translations;
  4244. };
  4245. Defaults.prototype.set = function (key, value) {
  4246. var camelKey = $.camelCase(key);
  4247. var data = {};
  4248. data[camelKey] = value;
  4249. var convertedData = Utils._convertData(data);
  4250. $.extend(true, this.defaults, convertedData);
  4251. };
  4252. var defaults = new Defaults();
  4253. return defaults;
  4254. });
  4255. S2.define('select2/options',[
  4256. 'jquery',
  4257. './defaults',
  4258. './utils'
  4259. ], function ($, Defaults, Utils) {
  4260. function Options (options, $element) {
  4261. this.options = options;
  4262. if ($element != null) {
  4263. this.fromElement($element);
  4264. }
  4265. if ($element != null) {
  4266. this.options = Defaults.applyFromElement(this.options, $element);
  4267. }
  4268. this.options = Defaults.apply(this.options);
  4269. }
  4270. Options.prototype.fromElement = function ($e) {
  4271. var excludedData = ['select2'];
  4272. if (this.options.multiple == null) {
  4273. this.options.multiple = $e.prop('multiple');
  4274. }
  4275. if (this.options.disabled == null) {
  4276. this.options.disabled = $e.prop('disabled');
  4277. }
  4278. if (this.options.dir == null) {
  4279. if ($e.prop('dir')) {
  4280. this.options.dir = $e.prop('dir');
  4281. } else if ($e.closest('[dir]').prop('dir')) {
  4282. this.options.dir = $e.closest('[dir]').prop('dir');
  4283. } else {
  4284. this.options.dir = 'ltr';
  4285. }
  4286. }
  4287. $e.prop('disabled', this.options.disabled);
  4288. $e.prop('multiple', this.options.multiple);
  4289. if (Utils.GetData($e[0], 'select2Tags')) {
  4290. if (this.options.debug && window.console && console.warn) {
  4291. console.warn(
  4292. 'Select2: The `data-select2-tags` attribute has been changed to ' +
  4293. 'use the `data-data` and `data-tags="true"` attributes and will be ' +
  4294. 'removed in future versions of Select2.'
  4295. );
  4296. }
  4297. Utils.StoreData($e[0], 'data', Utils.GetData($e[0], 'select2Tags'));
  4298. Utils.StoreData($e[0], 'tags', true);
  4299. }
  4300. if (Utils.GetData($e[0], 'ajaxUrl')) {
  4301. if (this.options.debug && window.console && console.warn) {
  4302. console.warn(
  4303. 'Select2: The `data-ajax-url` attribute has been changed to ' +
  4304. '`data-ajax--url` and support for the old attribute will be removed' +
  4305. ' in future versions of Select2.'
  4306. );
  4307. }
  4308. $e.attr('ajax--url', Utils.GetData($e[0], 'ajaxUrl'));
  4309. Utils.StoreData($e[0], 'ajax-Url', Utils.GetData($e[0], 'ajaxUrl'));
  4310. }
  4311. var dataset = {};
  4312. function upperCaseLetter(_, letter) {
  4313. return letter.toUpperCase();
  4314. }
  4315. // Pre-load all of the attributes which are prefixed with `data-`
  4316. for (var attr = 0; attr < $e[0].attributes.length; attr++) {
  4317. var attributeName = $e[0].attributes[attr].name;
  4318. var prefix = 'data-';
  4319. if (attributeName.substr(0, prefix.length) == prefix) {
  4320. // Get the contents of the attribute after `data-`
  4321. var dataName = attributeName.substring(prefix.length);
  4322. // Get the data contents from the consistent source
  4323. // This is more than likely the jQuery data helper
  4324. var dataValue = Utils.GetData($e[0], dataName);
  4325. // camelCase the attribute name to match the spec
  4326. var camelDataName = dataName.replace(/-([a-z])/g, upperCaseLetter);
  4327. // Store the data attribute contents into the dataset since
  4328. dataset[camelDataName] = dataValue;
  4329. }
  4330. }
  4331. // Prefer the element's `dataset` attribute if it exists
  4332. // jQuery 1.x does not correctly handle data attributes with multiple dashes
  4333. if ($.fn.jquery && $.fn.jquery.substr(0, 2) == '1.' && $e[0].dataset) {
  4334. dataset = $.extend(true, {}, $e[0].dataset, dataset);
  4335. }
  4336. // Prefer our internal data cache if it exists
  4337. var data = $.extend(true, {}, Utils.GetData($e[0]), dataset);
  4338. data = Utils._convertData(data);
  4339. for (var key in data) {
  4340. if (excludedData.indexOf(key) > -1) {
  4341. continue;
  4342. }
  4343. if ($.isPlainObject(this.options[key])) {
  4344. $.extend(this.options[key], data[key]);
  4345. } else {
  4346. this.options[key] = data[key];
  4347. }
  4348. }
  4349. return this;
  4350. };
  4351. Options.prototype.get = function (key) {
  4352. return this.options[key];
  4353. };
  4354. Options.prototype.set = function (key, val) {
  4355. this.options[key] = val;
  4356. };
  4357. return Options;
  4358. });
  4359. S2.define('select2/core',[
  4360. 'jquery',
  4361. './options',
  4362. './utils',
  4363. './keys'
  4364. ], function ($, Options, Utils, KEYS) {
  4365. var Select2 = function ($element, options) {
  4366. if (Utils.GetData($element[0], 'select2') != null) {
  4367. Utils.GetData($element[0], 'select2').destroy();
  4368. }
  4369. this.$element = $element;
  4370. this.id = this._generateId($element);
  4371. options = options || {};
  4372. this.options = new Options(options, $element);
  4373. Select2.__super__.constructor.call(this);
  4374. // Set up the tabindex
  4375. var tabindex = $element.attr('tabindex') || 0;
  4376. Utils.StoreData($element[0], 'old-tabindex', tabindex);
  4377. $element.attr('tabindex', '-1');
  4378. // Set up containers and adapters
  4379. var DataAdapter = this.options.get('dataAdapter');
  4380. this.dataAdapter = new DataAdapter($element, this.options);
  4381. var $container = this.render();
  4382. this._placeContainer($container);
  4383. var SelectionAdapter = this.options.get('selectionAdapter');
  4384. this.selection = new SelectionAdapter($element, this.options);
  4385. this.$selection = this.selection.render();
  4386. this.selection.position(this.$selection, $container);
  4387. var DropdownAdapter = this.options.get('dropdownAdapter');
  4388. this.dropdown = new DropdownAdapter($element, this.options);
  4389. this.$dropdown = this.dropdown.render();
  4390. this.dropdown.position(this.$dropdown, $container);
  4391. var ResultsAdapter = this.options.get('resultsAdapter');
  4392. this.results = new ResultsAdapter($element, this.options, this.dataAdapter);
  4393. this.$results = this.results.render();
  4394. this.results.position(this.$results, this.$dropdown);
  4395. // Bind events
  4396. var self = this;
  4397. // Bind the container to all of the adapters
  4398. this._bindAdapters();
  4399. // Register any DOM event handlers
  4400. this._registerDomEvents();
  4401. // Register any internal event handlers
  4402. this._registerDataEvents();
  4403. this._registerSelectionEvents();
  4404. this._registerDropdownEvents();
  4405. this._registerResultsEvents();
  4406. this._registerEvents();
  4407. // Set the initial state
  4408. this.dataAdapter.current(function (initialData) {
  4409. self.trigger('selection:update', {
  4410. data: initialData
  4411. });
  4412. });
  4413. // Hide the original select
  4414. $element[0].classList.add('select2-hidden-accessible');
  4415. $element.attr('aria-hidden', 'true');
  4416. // Synchronize any monitored attributes
  4417. this._syncAttributes();
  4418. Utils.StoreData($element[0], 'select2', this);
  4419. // Ensure backwards compatibility with $element.data('select2').
  4420. $element.data('select2', this);
  4421. };
  4422. Utils.Extend(Select2, Utils.Observable);
  4423. Select2.prototype._generateId = function ($element) {
  4424. var id = '';
  4425. if ($element.attr('id') != null) {
  4426. id = $element.attr('id');
  4427. } else if ($element.attr('name') != null) {
  4428. id = $element.attr('name') + '-' + Utils.generateChars(2);
  4429. } else {
  4430. id = Utils.generateChars(4);
  4431. }
  4432. id = id.replace(/(:|\.|\[|\]|,)/g, '');
  4433. id = 'select2-' + id;
  4434. return id;
  4435. };
  4436. Select2.prototype._placeContainer = function ($container) {
  4437. $container.insertAfter(this.$element);
  4438. var width = this._resolveWidth(this.$element, this.options.get('width'));
  4439. if (width != null) {
  4440. $container.css('width', width);
  4441. }
  4442. };
  4443. Select2.prototype._resolveWidth = function ($element, method) {
  4444. var WIDTH = /^width:(([-+]?([0-9]*\.)?[0-9]+)(px|em|ex|%|in|cm|mm|pt|pc))/i;
  4445. if (method == 'resolve') {
  4446. var styleWidth = this._resolveWidth($element, 'style');
  4447. if (styleWidth != null) {
  4448. return styleWidth;
  4449. }
  4450. return this._resolveWidth($element, 'element');
  4451. }
  4452. if (method == 'element') {
  4453. var elementWidth = $element.outerWidth(false);
  4454. if (elementWidth <= 0) {
  4455. return 'auto';
  4456. }
  4457. return elementWidth + 'px';
  4458. }
  4459. if (method == 'style') {
  4460. var style = $element.attr('style');
  4461. if (typeof(style) !== 'string') {
  4462. return null;
  4463. }
  4464. var attrs = style.split(';');
  4465. for (var i = 0, l = attrs.length; i < l; i = i + 1) {
  4466. var attr = attrs[i].replace(/\s/g, '');
  4467. var matches = attr.match(WIDTH);
  4468. if (matches !== null && matches.length >= 1) {
  4469. return matches[1];
  4470. }
  4471. }
  4472. return null;
  4473. }
  4474. if (method == 'computedstyle') {
  4475. var computedStyle = window.getComputedStyle($element[0]);
  4476. return computedStyle.width;
  4477. }
  4478. return method;
  4479. };
  4480. Select2.prototype._bindAdapters = function () {
  4481. this.dataAdapter.bind(this, this.$container);
  4482. this.selection.bind(this, this.$container);
  4483. this.dropdown.bind(this, this.$container);
  4484. this.results.bind(this, this.$container);
  4485. };
  4486. Select2.prototype._registerDomEvents = function () {
  4487. var self = this;
  4488. this.$element.on('change.select2', function () {
  4489. self.dataAdapter.current(function (data) {
  4490. self.trigger('selection:update', {
  4491. data: data
  4492. });
  4493. });
  4494. });
  4495. this.$element.on('focus.select2', function (evt) {
  4496. self.trigger('focus', evt);
  4497. });
  4498. this._syncA = Utils.bind(this._syncAttributes, this);
  4499. this._syncS = Utils.bind(this._syncSubtree, this);
  4500. this._observer = new window.MutationObserver(function (mutations) {
  4501. self._syncA();
  4502. self._syncS(mutations);
  4503. });
  4504. this._observer.observe(this.$element[0], {
  4505. attributes: true,
  4506. childList: true,
  4507. subtree: false
  4508. });
  4509. };
  4510. Select2.prototype._registerDataEvents = function () {
  4511. var self = this;
  4512. this.dataAdapter.on('*', function (name, params) {
  4513. self.trigger(name, params);
  4514. });
  4515. };
  4516. Select2.prototype._registerSelectionEvents = function () {
  4517. var self = this;
  4518. var nonRelayEvents = ['toggle', 'focus'];
  4519. this.selection.on('toggle', function () {
  4520. self.toggleDropdown();
  4521. });
  4522. this.selection.on('focus', function (params) {
  4523. self.focus(params);
  4524. });
  4525. this.selection.on('*', function (name, params) {
  4526. if (nonRelayEvents.indexOf(name) !== -1) {
  4527. return;
  4528. }
  4529. self.trigger(name, params);
  4530. });
  4531. };
  4532. Select2.prototype._registerDropdownEvents = function () {
  4533. var self = this;
  4534. this.dropdown.on('*', function (name, params) {
  4535. self.trigger(name, params);
  4536. });
  4537. };
  4538. Select2.prototype._registerResultsEvents = function () {
  4539. var self = this;
  4540. this.results.on('*', function (name, params) {
  4541. self.trigger(name, params);
  4542. });
  4543. };
  4544. Select2.prototype._registerEvents = function () {
  4545. var self = this;
  4546. this.on('open', function () {
  4547. self.$container[0].classList.add('select2-container--open');
  4548. });
  4549. this.on('close', function () {
  4550. self.$container[0].classList.remove('select2-container--open');
  4551. });
  4552. this.on('enable', function () {
  4553. self.$container[0].classList.remove('select2-container--disabled');
  4554. });
  4555. this.on('disable', function () {
  4556. self.$container[0].classList.add('select2-container--disabled');
  4557. });
  4558. this.on('blur', function () {
  4559. self.$container[0].classList.remove('select2-container--focus');
  4560. });
  4561. this.on('query', function (params) {
  4562. if (!self.isOpen()) {
  4563. self.trigger('open', {});
  4564. }
  4565. this.dataAdapter.query(params, function (data) {
  4566. self.trigger('results:all', {
  4567. data: data,
  4568. query: params
  4569. });
  4570. });
  4571. });
  4572. this.on('query:append', function (params) {
  4573. this.dataAdapter.query(params, function (data) {
  4574. self.trigger('results:append', {
  4575. data: data,
  4576. query: params
  4577. });
  4578. });
  4579. });
  4580. this.on('keypress', function (evt) {
  4581. var key = evt.which;
  4582. if (self.isOpen()) {
  4583. if (key === KEYS.ESC || key === KEYS.TAB ||
  4584. (key === KEYS.UP && evt.altKey)) {
  4585. self.close(evt);
  4586. evt.preventDefault();
  4587. } else if (key === KEYS.ENTER) {
  4588. self.trigger('results:select', {});
  4589. evt.preventDefault();
  4590. } else if ((key === KEYS.SPACE && evt.ctrlKey)) {
  4591. self.trigger('results:toggle', {});
  4592. evt.preventDefault();
  4593. } else if (key === KEYS.UP) {
  4594. self.trigger('results:previous', {});
  4595. evt.preventDefault();
  4596. } else if (key === KEYS.DOWN) {
  4597. self.trigger('results:next', {});
  4598. evt.preventDefault();
  4599. }
  4600. } else {
  4601. if (key === KEYS.ENTER || key === KEYS.SPACE ||
  4602. (key === KEYS.DOWN && evt.altKey)) {
  4603. self.open();
  4604. evt.preventDefault();
  4605. }
  4606. }
  4607. });
  4608. };
  4609. Select2.prototype._syncAttributes = function () {
  4610. this.options.set('disabled', this.$element.prop('disabled'));
  4611. if (this.isDisabled()) {
  4612. if (this.isOpen()) {
  4613. this.close();
  4614. }
  4615. this.trigger('disable', {});
  4616. } else {
  4617. this.trigger('enable', {});
  4618. }
  4619. };
  4620. Select2.prototype._isChangeMutation = function (mutations) {
  4621. var self = this;
  4622. if (mutations.addedNodes && mutations.addedNodes.length > 0) {
  4623. for (var n = 0; n < mutations.addedNodes.length; n++) {
  4624. var node = mutations.addedNodes[n];
  4625. if (node.selected) {
  4626. return true;
  4627. }
  4628. }
  4629. } else if (mutations.removedNodes && mutations.removedNodes.length > 0) {
  4630. return true;
  4631. } else if (Array.isArray(mutations)) {
  4632. return mutations.some(function (mutation) {
  4633. return self._isChangeMutation(mutation);
  4634. });
  4635. }
  4636. return false;
  4637. };
  4638. Select2.prototype._syncSubtree = function (mutations) {
  4639. var changed = this._isChangeMutation(mutations);
  4640. var self = this;
  4641. // Only re-pull the data if we think there is a change
  4642. if (changed) {
  4643. this.dataAdapter.current(function (currentData) {
  4644. self.trigger('selection:update', {
  4645. data: currentData
  4646. });
  4647. });
  4648. }
  4649. };
  4650. /**
  4651. * Override the trigger method to automatically trigger pre-events when
  4652. * there are events that can be prevented.
  4653. */
  4654. Select2.prototype.trigger = function (name, args) {
  4655. var actualTrigger = Select2.__super__.trigger;
  4656. var preTriggerMap = {
  4657. 'open': 'opening',
  4658. 'close': 'closing',
  4659. 'select': 'selecting',
  4660. 'unselect': 'unselecting',
  4661. 'clear': 'clearing'
  4662. };
  4663. if (args === undefined) {
  4664. args = {};
  4665. }
  4666. if (name in preTriggerMap) {
  4667. var preTriggerName = preTriggerMap[name];
  4668. var preTriggerArgs = {
  4669. prevented: false,
  4670. name: name,
  4671. args: args
  4672. };
  4673. actualTrigger.call(this, preTriggerName, preTriggerArgs);
  4674. if (preTriggerArgs.prevented) {
  4675. args.prevented = true;
  4676. return;
  4677. }
  4678. }
  4679. actualTrigger.call(this, name, args);
  4680. };
  4681. Select2.prototype.toggleDropdown = function () {
  4682. if (this.isDisabled()) {
  4683. return;
  4684. }
  4685. if (this.isOpen()) {
  4686. this.close();
  4687. } else {
  4688. this.open();
  4689. }
  4690. };
  4691. Select2.prototype.open = function () {
  4692. if (this.isOpen()) {
  4693. return;
  4694. }
  4695. if (this.isDisabled()) {
  4696. return;
  4697. }
  4698. this.trigger('query', {});
  4699. };
  4700. Select2.prototype.close = function (evt) {
  4701. if (!this.isOpen()) {
  4702. return;
  4703. }
  4704. this.trigger('close', { originalEvent : evt });
  4705. };
  4706. /**
  4707. * Helper method to abstract the "enabled" (not "disabled") state of this
  4708. * object.
  4709. *
  4710. * @return {true} if the instance is not disabled.
  4711. * @return {false} if the instance is disabled.
  4712. */
  4713. Select2.prototype.isEnabled = function () {
  4714. return !this.isDisabled();
  4715. };
  4716. /**
  4717. * Helper method to abstract the "disabled" state of this object.
  4718. *
  4719. * @return {true} if the disabled option is true.
  4720. * @return {false} if the disabled option is false.
  4721. */
  4722. Select2.prototype.isDisabled = function () {
  4723. return this.options.get('disabled');
  4724. };
  4725. Select2.prototype.isOpen = function () {
  4726. return this.$container[0].classList.contains('select2-container--open');
  4727. };
  4728. Select2.prototype.hasFocus = function () {
  4729. return this.$container[0].classList.contains('select2-container--focus');
  4730. };
  4731. Select2.prototype.focus = function (data) {
  4732. // No need to re-trigger focus events if we are already focused
  4733. if (this.hasFocus()) {
  4734. return;
  4735. }
  4736. this.$container[0].classList.add('select2-container--focus');
  4737. this.trigger('focus', {});
  4738. };
  4739. Select2.prototype.enable = function (args) {
  4740. if (this.options.get('debug') && window.console && console.warn) {
  4741. console.warn(
  4742. 'Select2: The `select2("enable")` method has been deprecated and will' +
  4743. ' be removed in later Select2 versions. Use $element.prop("disabled")' +
  4744. ' instead.'
  4745. );
  4746. }
  4747. if (args == null || args.length === 0) {
  4748. args = [true];
  4749. }
  4750. var disabled = !args[0];
  4751. this.$element.prop('disabled', disabled);
  4752. };
  4753. Select2.prototype.data = function () {
  4754. if (this.options.get('debug') &&
  4755. arguments.length > 0 && window.console && console.warn) {
  4756. console.warn(
  4757. 'Select2: Data can no longer be set using `select2("data")`. You ' +
  4758. 'should consider setting the value instead using `$element.val()`.'
  4759. );
  4760. }
  4761. var data = [];
  4762. this.dataAdapter.current(function (currentData) {
  4763. data = currentData;
  4764. });
  4765. return data;
  4766. };
  4767. Select2.prototype.val = function (args) {
  4768. if (this.options.get('debug') && window.console && console.warn) {
  4769. console.warn(
  4770. 'Select2: The `select2("val")` method has been deprecated and will be' +
  4771. ' removed in later Select2 versions. Use $element.val() instead.'
  4772. );
  4773. }
  4774. if (args == null || args.length === 0) {
  4775. return this.$element.val();
  4776. }
  4777. var newVal = args[0];
  4778. if (Array.isArray(newVal)) {
  4779. newVal = newVal.map(function (obj) {
  4780. return obj.toString();
  4781. });
  4782. }
  4783. this.$element.val(newVal).trigger('input').trigger('change');
  4784. };
  4785. Select2.prototype.destroy = function () {
  4786. this.$container.remove();
  4787. this._observer.disconnect();
  4788. this._observer = null;
  4789. this._syncA = null;
  4790. this._syncS = null;
  4791. this.$element.off('.select2');
  4792. this.$element.attr('tabindex',
  4793. Utils.GetData(this.$element[0], 'old-tabindex'));
  4794. this.$element[0].classList.remove('select2-hidden-accessible');
  4795. this.$element.attr('aria-hidden', 'false');
  4796. Utils.RemoveData(this.$element[0]);
  4797. this.$element.removeData('select2');
  4798. this.dataAdapter.destroy();
  4799. this.selection.destroy();
  4800. this.dropdown.destroy();
  4801. this.results.destroy();
  4802. this.dataAdapter = null;
  4803. this.selection = null;
  4804. this.dropdown = null;
  4805. this.results = null;
  4806. };
  4807. Select2.prototype.render = function () {
  4808. var $container = $(
  4809. '<span class="select2 select2-container">' +
  4810. '<span class="selection"></span>' +
  4811. '<span class="dropdown-wrapper" aria-hidden="true"></span>' +
  4812. '</span>'
  4813. );
  4814. $container.attr('dir', this.options.get('dir'));
  4815. this.$container = $container;
  4816. this.$container[0].classList
  4817. .add('select2-container--' + this.options.get('theme'));
  4818. Utils.StoreData($container[0], 'element', this.$element);
  4819. return $container;
  4820. };
  4821. return Select2;
  4822. });
  4823. S2.define('jquery-mousewheel',[
  4824. 'jquery'
  4825. ], function ($) {
  4826. // Used to shim jQuery.mousewheel for non-full builds.
  4827. return $;
  4828. });
  4829. S2.define('jquery.select2',[
  4830. 'jquery',
  4831. 'jquery-mousewheel',
  4832. './select2/core',
  4833. './select2/defaults',
  4834. './select2/utils'
  4835. ], function ($, _, Select2, Defaults, Utils) {
  4836. if ($.fn.select2 == null) {
  4837. // All methods that should return the element
  4838. var thisMethods = ['open', 'close', 'destroy'];
  4839. $.fn.select2 = function (options) {
  4840. options = options || {};
  4841. if (typeof options === 'object') {
  4842. this.each(function () {
  4843. var instanceOptions = $.extend(true, {}, options);
  4844. var instance = new Select2($(this), instanceOptions);
  4845. });
  4846. return this;
  4847. } else if (typeof options === 'string') {
  4848. var ret;
  4849. var args = Array.prototype.slice.call(arguments, 1);
  4850. this.each(function () {
  4851. var instance = Utils.GetData(this, 'select2');
  4852. if (instance == null && window.console && console.error) {
  4853. console.error(
  4854. 'The select2(\'' + options + '\') method was called on an ' +
  4855. 'element that is not using Select2.'
  4856. );
  4857. }
  4858. ret = instance[options].apply(instance, args);
  4859. });
  4860. // Check if we should be returning `this`
  4861. if (thisMethods.indexOf(options) > -1) {
  4862. return this;
  4863. }
  4864. return ret;
  4865. } else {
  4866. throw new Error('Invalid arguments for Select2: ' + options);
  4867. }
  4868. };
  4869. }
  4870. if ($.fn.select2.defaults == null) {
  4871. $.fn.select2.defaults = Defaults;
  4872. }
  4873. return Select2;
  4874. });
  4875. // Return the AMD loader configuration so it can be used outside of this file
  4876. return {
  4877. define: S2.define,
  4878. require: S2.require
  4879. };
  4880. }());
  4881. // Autoload the jQuery bindings
  4882. // We know that all of the modules exist above this, so we're safe
  4883. var select2 = S2.require('jquery.select2');
  4884. // Hold the AMD module references on the jQuery function that was just loaded
  4885. // This allows Select2 to use the internal loader outside of this file, such
  4886. // as in the language files.
  4887. jQuery.fn.select2.amd = S2;
  4888. // Return the Select2 instance for anyone who is importing it.
  4889. return select2;
  4890. }));