No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

select2.js 148KB

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