select2.js 142 KB

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