require-backend.min.js 867 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473
  1. /*! jQuery v2.2.4 | (c) jQuery Foundation | jquery.org/license */
  2. !function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=a.document,e=c.slice,f=c.concat,g=c.push,h=c.indexOf,i={},j=i.toString,k=i.hasOwnProperty,l={},m="2.2.4",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return e.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:e.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a){return n.each(this,a)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(e.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor()},push:g,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(a=arguments[h]))for(b in a)c=g[b],d=a[b],g!==d&&(j&&d&&(n.isPlainObject(d)||(e=n.isArray(d)))?(e?(e=!1,f=c&&n.isArray(c)?c:[]):f=c&&n.isPlainObject(c)?c:{},g[b]=n.extend(j,f,d)):void 0!==d&&(g[b]=d));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray,isWindow:function(a){return null!=a&&a===a.window},isNumeric:function(a){var b=a&&a.toString();return!n.isArray(a)&&b-parseFloat(b)+1>=0},isPlainObject:function(a){var b;if("object"!==n.type(a)||a.nodeType||n.isWindow(a))return!1;if(a.constructor&&!k.call(a,"constructor")&&!k.call(a.constructor.prototype||{},"isPrototypeOf"))return!1;for(b in a);return void 0===b||k.call(a,b)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?i[j.call(a)]||"object":typeof a},globalEval:function(a){var b,c=eval;a=n.trim(a),a&&(1===a.indexOf("use strict")?(b=d.createElement("script"),b.text=a,d.head.appendChild(b).parentNode.removeChild(b)):c(a))},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b){var c,d=0;if(s(a)){for(c=a.length;c>d;d++)if(b.call(a[d],d,a[d])===!1)break}else for(d in a)if(b.call(a[d],d,a[d])===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):g.call(c,a)),c},inArray:function(a,b,c){return null==b?-1:h.call(b,a,c)},merge:function(a,b){for(var c=+b.length,d=0,e=a.length;c>d;d++)a[e++]=b[d];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,e,g=0,h=[];if(s(a))for(d=a.length;d>g;g++)e=b(a[g],g,c),null!=e&&h.push(e);else for(g in a)e=b(a[g],g,c),null!=e&&h.push(e);return f.apply([],h)},guid:1,proxy:function(a,b){var c,d,f;return"string"==typeof b&&(c=a[b],b=a,a=c),n.isFunction(a)?(d=e.call(arguments,2),f=function(){return a.apply(b||this,d.concat(e.call(arguments)))},f.guid=a.guid=a.guid||n.guid++,f):void 0},now:Date.now,support:l}),"function"==typeof Symbol&&(n.fn[Symbol.iterator]=c[Symbol.iterator]),n.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(a,b){i["[object "+b+"]"]=b.toLowerCase()});function s(a){var b=!!a&&"length"in a&&a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ga(),z=ga(),A=ga(),B=function(a,b){return a===b&&(l=!0),0},C=1<<31,D={}.hasOwnProperty,E=[],F=E.pop,G=E.push,H=E.push,I=E.slice,J=function(a,b){for(var c=0,d=a.length;d>c;c++)if(a[c]===b)return c;return-1},K="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",L="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",N="\\["+L+"*("+M+")(?:"+L+"*([*^$|!~]?=)"+L+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+M+"))|)"+L+"*\\]",O=":("+M+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+N+")*)|.*)\\)|)",P=new RegExp(L+"+","g"),Q=new RegExp("^"+L+"+|((?:^|[^\\\\])(?:\\\\.)*)"+L+"+$","g"),R=new RegExp("^"+L+"*,"+L+"*"),S=new RegExp("^"+L+"*([>+~]|"+L+")"+L+"*"),T=new RegExp("="+L+"*([^\\]'\"]*?)"+L+"*\\]","g"),U=new RegExp(O),V=new RegExp("^"+M+"$"),W={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M+"|[*])"),ATTR:new RegExp("^"+N),PSEUDO:new RegExp("^"+O),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+L+"*(even|odd|(([+-]|)(\\d*)n|)"+L+"*(?:([+-]|)"+L+"*(\\d+)|))"+L+"*\\)|)","i"),bool:new RegExp("^(?:"+K+")$","i"),needsContext:new RegExp("^"+L+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+L+"*((?:-\\d)?\\d*)"+L+"*\\)|)(?=[^-]|$)","i")},X=/^(?:input|select|textarea|button)$/i,Y=/^h\d$/i,Z=/^[^{]+\{\s*\[native \w/,$=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,_=/[+~]/,aa=/'|\\/g,ba=new RegExp("\\\\([\\da-f]{1,6}"+L+"?|("+L+")|.)","ig"),ca=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},da=function(){m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(ea){H={apply:E.length?function(a,b){G.apply(a,I.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fa(a,b,d,e){var f,h,j,k,l,o,r,s,w=b&&b.ownerDocument,x=b?b.nodeType:9;if(d=d||[],"string"!=typeof a||!a||1!==x&&9!==x&&11!==x)return d;if(!e&&((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,p)){if(11!==x&&(o=$.exec(a)))if(f=o[1]){if(9===x){if(!(j=b.getElementById(f)))return d;if(j.id===f)return d.push(j),d}else if(w&&(j=w.getElementById(f))&&t(b,j)&&j.id===f)return d.push(j),d}else{if(o[2])return H.apply(d,b.getElementsByTagName(a)),d;if((f=o[3])&&c.getElementsByClassName&&b.getElementsByClassName)return H.apply(d,b.getElementsByClassName(f)),d}if(c.qsa&&!A[a+" "]&&(!q||!q.test(a))){if(1!==x)w=b,s=a;else if("object"!==b.nodeName.toLowerCase()){(k=b.getAttribute("id"))?k=k.replace(aa,"\\$&"):b.setAttribute("id",k=u),r=g(a),h=r.length,l=V.test(k)?"#"+k:"[id='"+k+"']";while(h--)r[h]=l+" "+qa(r[h]);s=r.join(","),w=_.test(a)&&oa(b.parentNode)||b}if(s)try{return H.apply(d,w.querySelectorAll(s)),d}catch(y){}finally{k===u&&b.removeAttribute("id")}}}return i(a.replace(Q,"$1"),b,d,e)}function ga(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ha(a){return a[u]=!0,a}function ia(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ja(a,b){var c=a.split("|"),e=c.length;while(e--)d.attrHandle[c[e]]=b}function ka(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||C)-(~a.sourceIndex||C);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function la(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function na(a){return ha(function(b){return b=+b,ha(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function oa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=fa.support={},f=fa.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fa.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=n.documentElement,p=!f(n),(e=n.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",da,!1):e.attachEvent&&e.attachEvent("onunload",da)),c.attributes=ia(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ia(function(a){return a.appendChild(n.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Z.test(n.getElementsByClassName),c.getById=ia(function(a){return o.appendChild(a).id=u,!n.getElementsByName||!n.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return"undefined"!=typeof b.getElementsByClassName&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=Z.test(n.querySelectorAll))&&(ia(function(a){o.appendChild(a).innerHTML="<a id='"+u+"'></a><select id='"+u+"-\r\\' msallowcapture=''><option selected=''></option></select>",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+L+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+L+"*(?:value|"+K+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ia(function(a){var b=n.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+L+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=Z.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ia(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",O)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=Z.test(o.compareDocumentPosition),t=b||Z.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===n||a.ownerDocument===v&&t(v,a)?-1:b===n||b.ownerDocument===v&&t(v,b)?1:k?J(k,a)-J(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,g=[a],h=[b];if(!e||!f)return a===n?-1:b===n?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return ka(a,b);c=a;while(c=c.parentNode)g.unshift(c);c=b;while(c=c.parentNode)h.unshift(c);while(g[d]===h[d])d++;return d?ka(g[d],h[d]):g[d]===v?-1:h[d]===v?1:0},n):n},fa.matches=function(a,b){return fa(a,null,null,b)},fa.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(T,"='$1']"),c.matchesSelector&&p&&!A[b+" "]&&(!r||!r.test(b))&&(!q||!q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fa(b,n,null,[a]).length>0},fa.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fa.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&D.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fa.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fa.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fa.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fa.selectors={cacheLength:50,createPseudo:ha,match:W,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ba,ca),a[3]=(a[3]||a[4]||a[5]||"").replace(ba,ca),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fa.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fa.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return W.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&U.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ba,ca).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+L+")"+a+"("+L+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fa.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(P," ")+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h,t=!1;if(q){if(f){while(p){m=b;while(m=m[p])if(h?m.nodeName.toLowerCase()===r:1===m.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){m=q,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n&&j[2],m=n&&q.childNodes[n];while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if(1===m.nodeType&&++t&&m===b){k[a]=[w,n,t];break}}else if(s&&(m=b,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n),t===!1)while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if((h?m.nodeName.toLowerCase()===r:1===m.nodeType)&&++t&&(s&&(l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),k[a]=[w,t]),m===b))break;return t-=e,t===d||t%d===0&&t/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fa.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ha(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=J(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ha(function(a){var b=[],c=[],d=h(a.replace(Q,"$1"));return d[u]?ha(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ha(function(a){return function(b){return fa(a,b).length>0}}),contains:ha(function(a){return a=a.replace(ba,ca),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ha(function(a){return V.test(a||"")||fa.error("unsupported lang: "+a),a=a.replace(ba,ca).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Y.test(a.nodeName)},input:function(a){return X.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:na(function(){return[0]}),last:na(function(a,b){return[b-1]}),eq:na(function(a,b,c){return[0>c?c+b:c]}),even:na(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:na(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:na(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:na(function(a,b,c){for(var d=0>c?c+b:c;++d<b;)a.push(d);return a})}},d.pseudos.nth=d.pseudos.eq;for(b in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})d.pseudos[b]=la(b);for(b in{submit:!0,reset:!0})d.pseudos[b]=ma(b);function pa(){}pa.prototype=d.filters=d.pseudos,d.setFilters=new pa,g=fa.tokenize=function(a,b){var c,e,f,g,h,i,j,k=z[a+" "];if(k)return b?0:k.slice(0);h=a,i=[],j=d.preFilter;while(h){c&&!(e=R.exec(h))||(e&&(h=h.slice(e[0].length)||h),i.push(f=[])),c=!1,(e=S.exec(h))&&(c=e.shift(),f.push({value:c,type:e[0].replace(Q," ")}),h=h.slice(c.length));for(g in d.filter)!(e=W[g].exec(h))||j[g]&&!(e=j[g](e))||(c=e.shift(),f.push({value:c,type:g,matches:e}),h=h.slice(c.length));if(!c)break}return b?h.length:h?fa.error(a):z(a,i).slice(0)};function qa(a){for(var b=0,c=a.length,d="";c>b;b++)d+=a[b].value;return d}function ra(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j,k=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(j=b[u]||(b[u]={}),i=j[b.uniqueID]||(j[b.uniqueID]={}),(h=i[d])&&h[0]===w&&h[1]===f)return k[2]=h[2];if(i[d]=k,k[2]=a(b,c,g))return!0}}}function sa(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function ta(a,b,c){for(var d=0,e=b.length;e>d;d++)fa(a,b[d],c);return c}function ua(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(c&&!c(f,d,e)||(g.push(f),j&&b.push(h)));return g}function va(a,b,c,d,e,f){return d&&!d[u]&&(d=va(d)),e&&!e[u]&&(e=va(e,f)),ha(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||ta(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ua(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ua(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?J(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ua(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function wa(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=ra(function(a){return a===b},h,!0),l=ra(function(a){return J(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];f>i;i++)if(c=d.relative[a[i].type])m=[ra(sa(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return va(i>1&&sa(m),i>1&&qa(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(Q,"$1"),c,e>i&&wa(a.slice(i,e)),f>e&&wa(a=a.slice(e)),f>e&&qa(a))}m.push(c)}return sa(m)}function xa(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,o,q,r=0,s="0",t=f&&[],u=[],v=j,x=f||e&&d.find.TAG("*",k),y=w+=null==v?1:Math.random()||.1,z=x.length;for(k&&(j=g===n||g||k);s!==z&&null!=(l=x[s]);s++){if(e&&l){o=0,g||l.ownerDocument===n||(m(l),h=!p);while(q=a[o++])if(q(l,g||n,h)){i.push(l);break}k&&(w=y)}c&&((l=!q&&l)&&r--,f&&t.push(l))}if(r+=s,c&&s!==r){o=0;while(q=b[o++])q(t,u,g,h);if(f){if(r>0)while(s--)t[s]||u[s]||(u[s]=F.call(i));u=ua(u)}H.apply(i,u),k&&!f&&u.length>0&&r+b.length>1&&fa.uniqueSort(i)}return k&&(w=y,j=v),t};return c?ha(f):f}return h=fa.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wa(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xa(e,d)),f.selector=a}return f},i=fa.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(ba,ca),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=W.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(ba,ca),_.test(j[0].type)&&oa(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qa(j),!a)return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,!b||_.test(a)&&oa(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ia(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ia(function(a){return a.innerHTML="<a href='#'></a>","#"===a.firstChild.getAttribute("href")})||ja("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ia(function(a){return a.innerHTML="<input/>",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ja("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ia(function(a){return null==a.getAttribute("disabled")})||ja(K,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fa}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.uniqueSort=n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&n(a).is(c))break;d.push(a)}return d},v=function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c},w=n.expr.match.needsContext,x=/^<([\w-]+)\s*\/?>(?:<\/\1>|)$/,y=/^.[^:#\[\.,]*$/;function z(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(y.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return h.call(b,a)>-1!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=this.length,d=[],e=this;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;c>b;b++)if(n.contains(e[b],this))return!0}));for(b=0;c>b;b++)n.find(a,e[b],d);return d=this.pushStack(c>1?n.unique(d):d),d.selector=this.selector?this.selector+" "+a:a,d},filter:function(a){return this.pushStack(z(this,a||[],!1))},not:function(a){return this.pushStack(z(this,a||[],!0))},is:function(a){return!!z(this,"string"==typeof a&&w.test(a)?n(a):a||[],!1).length}});var A,B=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=n.fn.init=function(a,b,c){var e,f;if(!a)return this;if(c=c||A,"string"==typeof a){if(e="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:B.exec(a),!e||!e[1]&&b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:d,!0)),x.test(e[1])&&n.isPlainObject(b))for(e in b)n.isFunction(this[e])?this[e](b[e]):this.attr(e,b[e]);return this}return f=d.getElementById(e[2]),f&&f.parentNode&&(this.length=1,this[0]=f),this.context=d,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?void 0!==c.ready?c.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};C.prototype=n.fn,A=n(d);var D=/^(?:parents|prev(?:Until|All))/,E={children:!0,contents:!0,next:!0,prev:!0};n.fn.extend({has:function(a){var b=n(a,this),c=b.length;return this.filter(function(){for(var a=0;c>a;a++)if(n.contains(this,b[a]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=w.test(a)||"string"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.uniqueSort(f):f)},index:function(a){return a?"string"==typeof a?h.call(n(a),this[0]):h.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.uniqueSort(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function F(a,b){while((a=a[b])&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return u(a,"parentNode")},parentsUntil:function(a,b,c){return u(a,"parentNode",c)},next:function(a){return F(a,"nextSibling")},prev:function(a){return F(a,"previousSibling")},nextAll:function(a){return u(a,"nextSibling")},prevAll:function(a){return u(a,"previousSibling")},nextUntil:function(a,b,c){return u(a,"nextSibling",c)},prevUntil:function(a,b,c){return u(a,"previousSibling",c)},siblings:function(a){return v((a.parentNode||{}).firstChild,a)},children:function(a){return v(a.firstChild)},contents:function(a){return a.contentDocument||n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(E[a]||n.uniqueSort(e),D.test(a)&&e.reverse()),this.pushStack(e)}});var G=/\S+/g;function H(a){var b={};return n.each(a.match(G)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?H(a):n.extend({},a);var b,c,d,e,f=[],g=[],h=-1,i=function(){for(e=a.once,d=b=!0;g.length;h=-1){c=g.shift();while(++h<f.length)f[h].apply(c[0],c[1])===!1&&a.stopOnFalse&&(h=f.length,c=!1)}a.memory||(c=!1),b=!1,e&&(f=c?[]:"")},j={add:function(){return f&&(c&&!b&&(h=f.length-1,g.push(c)),function d(b){n.each(b,function(b,c){n.isFunction(c)?a.unique&&j.has(c)||f.push(c):c&&c.length&&"string"!==n.type(c)&&d(c)})}(arguments),c&&!b&&i()),this},remove:function(){return n.each(arguments,function(a,b){var c;while((c=n.inArray(b,f,c))>-1)f.splice(c,1),h>=c&&h--}),this},has:function(a){return a?n.inArray(a,f)>-1:f.length>0},empty:function(){return f&&(f=[]),this},disable:function(){return e=g=[],f=c="",this},disabled:function(){return!f},lock:function(){return e=g=[],c||(f=c=""),this},locked:function(){return!!e},fireWith:function(a,c){return e||(c=c||[],c=[a,c.slice?c.slice():c],g.push(c),b||i()),this},fire:function(){return j.fireWith(this,arguments),this},fired:function(){return!!d}};return j},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().progress(c.notify).done(c.resolve).fail(c.reject):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=e.call(arguments),d=c.length,f=1!==d||a&&n.isFunction(a.promise)?d:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?e.call(arguments):d,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(d>1)for(i=new Array(d),j=new Array(d),k=new Array(d);d>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().progress(h(b,j,i)).done(h(b,k,c)).fail(g.reject):--f;return f||g.resolveWith(k,c),g.promise()}});var I;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){(a===!0?--n.readyWait:n.isReady)||(n.isReady=!0,a!==!0&&--n.readyWait>0||(I.resolveWith(d,[n]),n.fn.triggerHandler&&(n(d).triggerHandler("ready"),n(d).off("ready"))))}});function J(){d.removeEventListener("DOMContentLoaded",J),a.removeEventListener("load",J),n.ready()}n.ready.promise=function(b){return I||(I=n.Deferred(),"complete"===d.readyState||"loading"!==d.readyState&&!d.documentElement.doScroll?a.setTimeout(n.ready):(d.addEventListener("DOMContentLoaded",J),a.addEventListener("load",J))),I.promise(b)},n.ready.promise();var K=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===n.type(c)){e=!0;for(h in c)K(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,n.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(n(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},L=function(a){return 1===a.nodeType||9===a.nodeType||!+a.nodeType};function M(){this.expando=n.expando+M.uid++}M.uid=1,M.prototype={register:function(a,b){var c=b||{};return a.nodeType?a[this.expando]=c:Object.defineProperty(a,this.expando,{value:c,writable:!0,configurable:!0}),a[this.expando]},cache:function(a){if(!L(a))return{};var b=a[this.expando];return b||(b={},L(a)&&(a.nodeType?a[this.expando]=b:Object.defineProperty(a,this.expando,{value:b,configurable:!0}))),b},set:function(a,b,c){var d,e=this.cache(a);if("string"==typeof b)e[b]=c;else for(d in b)e[d]=b[d];return e},get:function(a,b){return void 0===b?this.cache(a):a[this.expando]&&a[this.expando][b]},access:function(a,b,c){var d;return void 0===b||b&&"string"==typeof b&&void 0===c?(d=this.get(a,b),void 0!==d?d:this.get(a,n.camelCase(b))):(this.set(a,b,c),void 0!==c?c:b)},remove:function(a,b){var c,d,e,f=a[this.expando];if(void 0!==f){if(void 0===b)this.register(a);else{n.isArray(b)?d=b.concat(b.map(n.camelCase)):(e=n.camelCase(b),b in f?d=[b,e]:(d=e,d=d in f?[d]:d.match(G)||[])),c=d.length;while(c--)delete f[d[c]]}(void 0===b||n.isEmptyObject(f))&&(a.nodeType?a[this.expando]=void 0:delete a[this.expando])}},hasData:function(a){var b=a[this.expando];return void 0!==b&&!n.isEmptyObject(b)}};var N=new M,O=new M,P=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,Q=/[A-Z]/g;function R(a,b,c){var d;if(void 0===c&&1===a.nodeType)if(d="data-"+b.replace(Q,"-$&").toLowerCase(),c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:P.test(c)?n.parseJSON(c):c;
  3. }catch(e){}O.set(a,b,c)}else c=void 0;return c}n.extend({hasData:function(a){return O.hasData(a)||N.hasData(a)},data:function(a,b,c){return O.access(a,b,c)},removeData:function(a,b){O.remove(a,b)},_data:function(a,b,c){return N.access(a,b,c)},_removeData:function(a,b){N.remove(a,b)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=O.get(f),1===f.nodeType&&!N.get(f,"hasDataAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),R(f,d,e[d])));N.set(f,"hasDataAttrs",!0)}return e}return"object"==typeof a?this.each(function(){O.set(this,a)}):K(this,function(b){var c,d;if(f&&void 0===b){if(c=O.get(f,a)||O.get(f,a.replace(Q,"-$&").toLowerCase()),void 0!==c)return c;if(d=n.camelCase(a),c=O.get(f,d),void 0!==c)return c;if(c=R(f,d,void 0),void 0!==c)return c}else d=n.camelCase(a),this.each(function(){var c=O.get(this,d);O.set(this,d,b),a.indexOf("-")>-1&&void 0!==c&&O.set(this,a,b)})},null,b,arguments.length>1,null,!0)},removeData:function(a){return this.each(function(){O.remove(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=N.get(a,b),c&&(!d||n.isArray(c)?d=N.access(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return N.get(a,c)||N.access(a,c,{empty:n.Callbacks("once memory").add(function(){N.remove(a,[b+"queue",c])})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length<c?n.queue(this[0],a):void 0===b?this:this.each(function(){var c=n.queue(this,a,b);n._queueHooks(this,a),"fx"===a&&"inprogress"!==c[0]&&n.dequeue(this,a)})},dequeue:function(a){return this.each(function(){n.dequeue(this,a)})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,b){var c,d=1,e=n.Deferred(),f=this,g=this.length,h=function(){--d||e.resolveWith(f,[f])};"string"!=typeof a&&(b=a,a=void 0),a=a||"fx";while(g--)c=N.get(f[g],a+"queueHooks"),c&&c.empty&&(d++,c.empty.add(h));return h(),e.promise(b)}});var S=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,T=new RegExp("^(?:([+-])=|)("+S+")([a-z%]*)$","i"),U=["Top","Right","Bottom","Left"],V=function(a,b){return a=b||a,"none"===n.css(a,"display")||!n.contains(a.ownerDocument,a)};function W(a,b,c,d){var e,f=1,g=20,h=d?function(){return d.cur()}:function(){return n.css(a,b,"")},i=h(),j=c&&c[3]||(n.cssNumber[b]?"":"px"),k=(n.cssNumber[b]||"px"!==j&&+i)&&T.exec(n.css(a,b));if(k&&k[3]!==j){j=j||k[3],c=c||[],k=+i||1;do f=f||".5",k/=f,n.style(a,b,k+j);while(f!==(f=h()/i)&&1!==f&&--g)}return c&&(k=+k||+i||0,e=c[1]?k+(c[1]+1)*c[2]:+c[2],d&&(d.unit=j,d.start=k,d.end=e)),e}var X=/^(?:checkbox|radio)$/i,Y=/<([\w:-]+)/,Z=/^$|\/(?:java|ecma)script/i,$={option:[1,"<select multiple='multiple'>","</select>"],thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};$.optgroup=$.option,$.tbody=$.tfoot=$.colgroup=$.caption=$.thead,$.th=$.td;function _(a,b){var c="undefined"!=typeof a.getElementsByTagName?a.getElementsByTagName(b||"*"):"undefined"!=typeof a.querySelectorAll?a.querySelectorAll(b||"*"):[];return void 0===b||b&&n.nodeName(a,b)?n.merge([a],c):c}function aa(a,b){for(var c=0,d=a.length;d>c;c++)N.set(a[c],"globalEval",!b||N.get(b[c],"globalEval"))}var ba=/<|&#?\w+;/;function ca(a,b,c,d,e){for(var f,g,h,i,j,k,l=b.createDocumentFragment(),m=[],o=0,p=a.length;p>o;o++)if(f=a[o],f||0===f)if("object"===n.type(f))n.merge(m,f.nodeType?[f]:f);else if(ba.test(f)){g=g||l.appendChild(b.createElement("div")),h=(Y.exec(f)||["",""])[1].toLowerCase(),i=$[h]||$._default,g.innerHTML=i[1]+n.htmlPrefilter(f)+i[2],k=i[0];while(k--)g=g.lastChild;n.merge(m,g.childNodes),g=l.firstChild,g.textContent=""}else m.push(b.createTextNode(f));l.textContent="",o=0;while(f=m[o++])if(d&&n.inArray(f,d)>-1)e&&e.push(f);else if(j=n.contains(f.ownerDocument,f),g=_(l.appendChild(f),"script"),j&&aa(g),c){k=0;while(f=g[k++])Z.test(f.type||"")&&c.push(f)}return l}!function(){var a=d.createDocumentFragment(),b=a.appendChild(d.createElement("div")),c=d.createElement("input");c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),b.appendChild(c),l.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,b.innerHTML="<textarea>x</textarea>",l.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var da=/^key/,ea=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,fa=/^([^.]*)(?:\.(.+)|)/;function ga(){return!0}function ha(){return!1}function ia(){try{return d.activeElement}catch(a){}}function ja(a,b,c,d,e,f){var g,h;if("object"==typeof b){"string"!=typeof c&&(d=d||c,c=void 0);for(h in b)ja(a,h,c,d,b[h],f);return a}if(null==d&&null==e?(e=c,d=c=void 0):null==e&&("string"==typeof c?(e=d,d=void 0):(e=d,d=c,c=void 0)),e===!1)e=ha;else if(!e)return a;return 1===f&&(g=e,e=function(a){return n().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=n.guid++)),a.each(function(){n.event.add(this,b,e,d,c)})}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=N.get(a);if(r){c.handler&&(f=c,c=f.handler,e=f.selector),c.guid||(c.guid=n.guid++),(i=r.events)||(i=r.events={}),(g=r.handle)||(g=r.handle=function(b){return"undefined"!=typeof n&&n.event.triggered!==b.type?n.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(G)||[""],j=b.length;while(j--)h=fa.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o&&(l=n.event.special[o]||{},o=(e?l.delegateType:l.bindType)||o,l=n.event.special[o]||{},k=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},f),(m=i[o])||(m=i[o]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,p,g)!==!1||a.addEventListener&&a.addEventListener(o,g)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),n.event.global[o]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=N.hasData(a)&&N.get(a);if(r&&(i=r.events)){b=(b||"").match(G)||[""],j=b.length;while(j--)if(h=fa.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=i[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&q!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete i[o])}else for(o in i)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(i)&&N.remove(a,"handle events")}},dispatch:function(a){a=n.event.fix(a);var b,c,d,f,g,h=[],i=e.call(arguments),j=(N.get(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&&!a.isImmediatePropagationStopped())a.rnamespace&&!a.rnamespace.test(g.namespace)||(a.handleObj=g,a.data=g.data,d=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==d&&(a.result=d)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&("click"!==a.type||isNaN(a.button)||a.button<1))for(;i!==this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(d=[],c=0;h>c;c++)f=b[c],e=f.selector+" ",void 0===d[e]&&(d[e]=f.needsContext?n(e,this).index(i)>-1:n.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h<b.length&&g.push({elem:this,handlers:b.slice(h)}),g},props:"altKey bubbles cancelable ctrlKey currentTarget detail eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return null==a.which&&(a.which=null!=b.charCode?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,b){var c,e,f,g=b.button;return null==a.pageX&&null!=b.clientX&&(c=a.target.ownerDocument||d,e=c.documentElement,f=c.body,a.pageX=b.clientX+(e&&e.scrollLeft||f&&f.scrollLeft||0)-(e&&e.clientLeft||f&&f.clientLeft||0),a.pageY=b.clientY+(e&&e.scrollTop||f&&f.scrollTop||0)-(e&&e.clientTop||f&&f.clientTop||0)),a.which||void 0===g||(a.which=1&g?1:2&g?3:4&g?2:0),a}},fix:function(a){if(a[n.expando])return a;var b,c,e,f=a.type,g=a,h=this.fixHooks[f];h||(this.fixHooks[f]=h=ea.test(f)?this.mouseHooks:da.test(f)?this.keyHooks:{}),e=h.props?this.props.concat(h.props):this.props,a=new n.Event(g),b=e.length;while(b--)c=e[b],a[c]=g[c];return a.target||(a.target=d),3===a.target.nodeType&&(a.target=a.target.parentNode),h.filter?h.filter(a,g):a},special:{load:{noBubble:!0},focus:{trigger:function(){return this!==ia()&&this.focus?(this.focus(),!1):void 0},delegateType:"focusin"},blur:{trigger:function(){return this===ia()&&this.blur?(this.blur(),!1):void 0},delegateType:"focusout"},click:{trigger:function(){return"checkbox"===this.type&&this.click&&n.nodeName(this,"input")?(this.click(),!1):void 0},_default:function(a){return n.nodeName(a.target,"a")}},beforeunload:{postDispatch:function(a){void 0!==a.result&&a.originalEvent&&(a.originalEvent.returnValue=a.result)}}}},n.removeEvent=function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c)},n.Event=function(a,b){return this instanceof n.Event?(a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||void 0===a.defaultPrevented&&a.returnValue===!1?ga:ha):this.type=a,b&&n.extend(this,b),this.timeStamp=a&&a.timeStamp||n.now(),void(this[n.expando]=!0)):new n.Event(a,b)},n.Event.prototype={constructor:n.Event,isDefaultPrevented:ha,isPropagationStopped:ha,isImmediatePropagationStopped:ha,isSimulated:!1,preventDefault:function(){var a=this.originalEvent;this.isDefaultPrevented=ga,a&&!this.isSimulated&&a.preventDefault()},stopPropagation:function(){var a=this.originalEvent;this.isPropagationStopped=ga,a&&!this.isSimulated&&a.stopPropagation()},stopImmediatePropagation:function(){var a=this.originalEvent;this.isImmediatePropagationStopped=ga,a&&!this.isSimulated&&a.stopImmediatePropagation(),this.stopPropagation()}},n.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(a,b){n.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj;return e&&(e===d||n.contains(d,e))||(a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b),c}}}),n.fn.extend({on:function(a,b,c,d){return ja(this,a,b,c,d)},one:function(a,b,c,d){return ja(this,a,b,c,d,1)},off:function(a,b,c){var d,e;if(a&&a.preventDefault&&a.handleObj)return d=a.handleObj,n(a.delegateTarget).off(d.namespace?d.origType+"."+d.namespace:d.origType,d.selector,d.handler),this;if("object"==typeof a){for(e in a)this.off(e,b,a[e]);return this}return b!==!1&&"function"!=typeof b||(c=b,b=void 0),c===!1&&(c=ha),this.each(function(){n.event.remove(this,a,c,b)})}});var ka=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi,la=/<script|<style|<link/i,ma=/checked\s*(?:[^=]|=\s*.checked.)/i,na=/^true\/(.*)/,oa=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;function pa(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function qa(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function ra(a){var b=na.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function sa(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(N.hasData(a)&&(f=N.access(a),g=N.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;d>c;c++)n.event.add(b,e,j[e][c])}O.hasData(a)&&(h=O.access(a),i=n.extend({},h),O.set(b,i))}}function ta(a,b){var c=b.nodeName.toLowerCase();"input"===c&&X.test(a.type)?b.checked=a.checked:"input"!==c&&"textarea"!==c||(b.defaultValue=a.defaultValue)}function ua(a,b,c,d){b=f.apply([],b);var e,g,h,i,j,k,m=0,o=a.length,p=o-1,q=b[0],r=n.isFunction(q);if(r||o>1&&"string"==typeof q&&!l.checkClone&&ma.test(q))return a.each(function(e){var f=a.eq(e);r&&(b[0]=q.call(this,e,f.html())),ua(f,b,c,d)});if(o&&(e=ca(b,a[0].ownerDocument,!1,a,d),g=e.firstChild,1===e.childNodes.length&&(e=g),g||d)){for(h=n.map(_(e,"script"),qa),i=h.length;o>m;m++)j=e,m!==p&&(j=n.clone(j,!0,!0),i&&n.merge(h,_(j,"script"))),c.call(a[m],j,m);if(i)for(k=h[h.length-1].ownerDocument,n.map(h,ra),m=0;i>m;m++)j=h[m],Z.test(j.type||"")&&!N.access(j,"globalEval")&&n.contains(k,j)&&(j.src?n._evalUrl&&n._evalUrl(j.src):n.globalEval(j.textContent.replace(oa,"")))}return a}function va(a,b,c){for(var d,e=b?n.filter(b,a):a,f=0;null!=(d=e[f]);f++)c||1!==d.nodeType||n.cleanData(_(d)),d.parentNode&&(c&&n.contains(d.ownerDocument,d)&&aa(_(d,"script")),d.parentNode.removeChild(d));return a}n.extend({htmlPrefilter:function(a){return a.replace(ka,"<$1></$2>")},clone:function(a,b,c){var d,e,f,g,h=a.cloneNode(!0),i=n.contains(a.ownerDocument,a);if(!(l.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(g=_(h),f=_(a),d=0,e=f.length;e>d;d++)ta(f[d],g[d]);if(b)if(c)for(f=f||_(a),g=g||_(h),d=0,e=f.length;e>d;d++)sa(f[d],g[d]);else sa(a,h);return g=_(h,"script"),g.length>0&&aa(g,!i&&_(a,"script")),h},cleanData:function(a){for(var b,c,d,e=n.event.special,f=0;void 0!==(c=a[f]);f++)if(L(c)){if(b=c[N.expando]){if(b.events)for(d in b.events)e[d]?n.event.remove(c,d):n.removeEvent(c,d,b.handle);c[N.expando]=void 0}c[O.expando]&&(c[O.expando]=void 0)}}}),n.fn.extend({domManip:ua,detach:function(a){return va(this,a,!0)},remove:function(a){return va(this,a)},text:function(a){return K(this,function(a){return void 0===a?n.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=a)})},null,a,arguments.length)},append:function(){return ua(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=pa(this,a);b.appendChild(a)}})},prepend:function(){return ua(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=pa(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return ua(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return ua(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},empty:function(){for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(n.cleanData(_(a,!1)),a.textContent="");return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return K(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a&&1===b.nodeType)return b.innerHTML;if("string"==typeof a&&!la.test(a)&&!$[(Y.exec(a)||["",""])[1].toLowerCase()]){a=n.htmlPrefilter(a);try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(_(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=[];return ua(this,arguments,function(b){var c=this.parentNode;n.inArray(this,a)<0&&(n.cleanData(_(this)),c&&c.replaceChild(b,this))},a)}}),n.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){n.fn[a]=function(a){for(var c,d=[],e=n(a),f=e.length-1,h=0;f>=h;h++)c=h===f?this:this.clone(!0),n(e[h])[b](c),g.apply(d,c.get());return this.pushStack(d)}});var wa,xa={HTML:"block",BODY:"block"};function ya(a,b){var c=n(b.createElement(a)).appendTo(b.body),d=n.css(c[0],"display");return c.detach(),d}function za(a){var b=d,c=xa[a];return c||(c=ya(a,b),"none"!==c&&c||(wa=(wa||n("<iframe frameborder='0' width='0' height='0'/>")).appendTo(b.documentElement),b=wa[0].contentDocument,b.write(),b.close(),c=ya(a,b),wa.detach()),xa[a]=c),c}var Aa=/^margin/,Ba=new RegExp("^("+S+")(?!px)[a-z%]+$","i"),Ca=function(b){var c=b.ownerDocument.defaultView;return c&&c.opener||(c=a),c.getComputedStyle(b)},Da=function(a,b,c,d){var e,f,g={};for(f in b)g[f]=a.style[f],a.style[f]=b[f];e=c.apply(a,d||[]);for(f in b)a.style[f]=g[f];return e},Ea=d.documentElement;!function(){var b,c,e,f,g=d.createElement("div"),h=d.createElement("div");if(h.style){h.style.backgroundClip="content-box",h.cloneNode(!0).style.backgroundClip="",l.clearCloneStyle="content-box"===h.style.backgroundClip,g.style.cssText="border:0;width:8px;height:0;top:0;left:-9999px;padding:0;margin-top:1px;position:absolute",g.appendChild(h);function i(){h.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;position:relative;display:block;margin:auto;border:1px;padding:1px;top:1%;width:50%",h.innerHTML="",Ea.appendChild(g);var d=a.getComputedStyle(h);b="1%"!==d.top,f="2px"===d.marginLeft,c="4px"===d.width,h.style.marginRight="50%",e="4px"===d.marginRight,Ea.removeChild(g)}n.extend(l,{pixelPosition:function(){return i(),b},boxSizingReliable:function(){return null==c&&i(),c},pixelMarginRight:function(){return null==c&&i(),e},reliableMarginLeft:function(){return null==c&&i(),f},reliableMarginRight:function(){var b,c=h.appendChild(d.createElement("div"));return c.style.cssText=h.style.cssText="-webkit-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",c.style.marginRight=c.style.width="0",h.style.width="1px",Ea.appendChild(g),b=!parseFloat(a.getComputedStyle(c).marginRight),Ea.removeChild(g),h.removeChild(c),b}})}}();function Fa(a,b,c){var d,e,f,g,h=a.style;return c=c||Ca(a),g=c?c.getPropertyValue(b)||c[b]:void 0,""!==g&&void 0!==g||n.contains(a.ownerDocument,a)||(g=n.style(a,b)),c&&!l.pixelMarginRight()&&Ba.test(g)&&Aa.test(b)&&(d=h.width,e=h.minWidth,f=h.maxWidth,h.minWidth=h.maxWidth=h.width=g,g=c.width,h.width=d,h.minWidth=e,h.maxWidth=f),void 0!==g?g+"":g}function Ga(a,b){return{get:function(){return a()?void delete this.get:(this.get=b).apply(this,arguments)}}}var Ha=/^(none|table(?!-c[ea]).+)/,Ia={position:"absolute",visibility:"hidden",display:"block"},Ja={letterSpacing:"0",fontWeight:"400"},Ka=["Webkit","O","Moz","ms"],La=d.createElement("div").style;function Ma(a){if(a in La)return a;var b=a[0].toUpperCase()+a.slice(1),c=Ka.length;while(c--)if(a=Ka[c]+b,a in La)return a}function Na(a,b,c){var d=T.exec(b);return d?Math.max(0,d[2]-(c||0))+(d[3]||"px"):b}function Oa(a,b,c,d,e){for(var f=c===(d?"border":"content")?4:"width"===b?1:0,g=0;4>f;f+=2)"margin"===c&&(g+=n.css(a,c+U[f],!0,e)),d?("content"===c&&(g-=n.css(a,"padding"+U[f],!0,e)),"margin"!==c&&(g-=n.css(a,"border"+U[f]+"Width",!0,e))):(g+=n.css(a,"padding"+U[f],!0,e),"padding"!==c&&(g+=n.css(a,"border"+U[f]+"Width",!0,e)));return g}function Pa(a,b,c){var d=!0,e="width"===b?a.offsetWidth:a.offsetHeight,f=Ca(a),g="border-box"===n.css(a,"boxSizing",!1,f);if(0>=e||null==e){if(e=Fa(a,b,f),(0>e||null==e)&&(e=a.style[b]),Ba.test(e))return e;d=g&&(l.boxSizingReliable()||e===a.style[b]),e=parseFloat(e)||0}return e+Oa(a,b,c||(g?"border":"content"),d,f)+"px"}function Qa(a,b){for(var c,d,e,f=[],g=0,h=a.length;h>g;g++)d=a[g],d.style&&(f[g]=N.get(d,"olddisplay"),c=d.style.display,b?(f[g]||"none"!==c||(d.style.display=""),""===d.style.display&&V(d)&&(f[g]=N.access(d,"olddisplay",za(d.nodeName)))):(e=V(d),"none"===c&&e||N.set(d,"olddisplay",e?c:n.css(d,"display"))));for(g=0;h>g;g++)d=a[g],d.style&&(b&&"none"!==d.style.display&&""!==d.style.display||(d.style.display=b?f[g]||"":"none"));return a}n.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=Fa(a,"opacity");return""===c?"1":c}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":"cssFloat"},style:function(a,b,c,d){if(a&&3!==a.nodeType&&8!==a.nodeType&&a.style){var e,f,g,h=n.camelCase(b),i=a.style;return b=n.cssProps[h]||(n.cssProps[h]=Ma(h)||h),g=n.cssHooks[b]||n.cssHooks[h],void 0===c?g&&"get"in g&&void 0!==(e=g.get(a,!1,d))?e:i[b]:(f=typeof c,"string"===f&&(e=T.exec(c))&&e[1]&&(c=W(a,b,e),f="number"),null!=c&&c===c&&("number"===f&&(c+=e&&e[3]||(n.cssNumber[h]?"":"px")),l.clearCloneStyle||""!==c||0!==b.indexOf("background")||(i[b]="inherit"),g&&"set"in g&&void 0===(c=g.set(a,c,d))||(i[b]=c)),void 0)}},css:function(a,b,c,d){var e,f,g,h=n.camelCase(b);return b=n.cssProps[h]||(n.cssProps[h]=Ma(h)||h),g=n.cssHooks[b]||n.cssHooks[h],g&&"get"in g&&(e=g.get(a,!0,c)),void 0===e&&(e=Fa(a,b,d)),"normal"===e&&b in Ja&&(e=Ja[b]),""===c||c?(f=parseFloat(e),c===!0||isFinite(f)?f||0:e):e}}),n.each(["height","width"],function(a,b){n.cssHooks[b]={get:function(a,c,d){return c?Ha.test(n.css(a,"display"))&&0===a.offsetWidth?Da(a,Ia,function(){return Pa(a,b,d)}):Pa(a,b,d):void 0},set:function(a,c,d){var e,f=d&&Ca(a),g=d&&Oa(a,b,d,"border-box"===n.css(a,"boxSizing",!1,f),f);return g&&(e=T.exec(c))&&"px"!==(e[3]||"px")&&(a.style[b]=c,c=n.css(a,b)),Na(a,c,g)}}}),n.cssHooks.marginLeft=Ga(l.reliableMarginLeft,function(a,b){return b?(parseFloat(Fa(a,"marginLeft"))||a.getBoundingClientRect().left-Da(a,{marginLeft:0},function(){return a.getBoundingClientRect().left}))+"px":void 0}),n.cssHooks.marginRight=Ga(l.reliableMarginRight,function(a,b){return b?Da(a,{display:"inline-block"},Fa,[a,"marginRight"]):void 0}),n.each({margin:"",padding:"",border:"Width"},function(a,b){n.cssHooks[a+b]={expand:function(c){for(var d=0,e={},f="string"==typeof c?c.split(" "):[c];4>d;d++)e[a+U[d]+b]=f[d]||f[d-2]||f[0];return e}},Aa.test(a)||(n.cssHooks[a+b].set=Na)}),n.fn.extend({css:function(a,b){return K(this,function(a,b,c){var d,e,f={},g=0;if(n.isArray(b)){for(d=Ca(a),e=b.length;e>g;g++)f[b[g]]=n.css(a,b[g],!1,d);return f}return void 0!==c?n.style(a,b,c):n.css(a,b)},a,b,arguments.length>1)},show:function(){return Qa(this,!0)},hide:function(){return Qa(this)},toggle:function(a){return"boolean"==typeof a?a?this.show():this.hide():this.each(function(){V(this)?n(this).show():n(this).hide()})}});function Ra(a,b,c,d,e){return new Ra.prototype.init(a,b,c,d,e)}n.Tween=Ra,Ra.prototype={constructor:Ra,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||n.easing._default,this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(n.cssNumber[c]?"":"px")},cur:function(){var a=Ra.propHooks[this.prop];return a&&a.get?a.get(this):Ra.propHooks._default.get(this)},run:function(a){var b,c=Ra.propHooks[this.prop];return this.options.duration?this.pos=b=n.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):Ra.propHooks._default.set(this),this}},Ra.prototype.init.prototype=Ra.prototype,Ra.propHooks={_default:{get:function(a){var b;return 1!==a.elem.nodeType||null!=a.elem[a.prop]&&null==a.elem.style[a.prop]?a.elem[a.prop]:(b=n.css(a.elem,a.prop,""),b&&"auto"!==b?b:0)},set:function(a){n.fx.step[a.prop]?n.fx.step[a.prop](a):1!==a.elem.nodeType||null==a.elem.style[n.cssProps[a.prop]]&&!n.cssHooks[a.prop]?a.elem[a.prop]=a.now:n.style(a.elem,a.prop,a.now+a.unit)}}},Ra.propHooks.scrollTop=Ra.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},n.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2},_default:"swing"},n.fx=Ra.prototype.init,n.fx.step={};var Sa,Ta,Ua=/^(?:toggle|show|hide)$/,Va=/queueHooks$/;function Wa(){return a.setTimeout(function(){Sa=void 0}),Sa=n.now()}function Xa(a,b){var c,d=0,e={height:a};for(b=b?1:0;4>d;d+=2-b)c=U[d],e["margin"+c]=e["padding"+c]=a;return b&&(e.opacity=e.width=a),e}function Ya(a,b,c){for(var d,e=(_a.tweeners[b]||[]).concat(_a.tweeners["*"]),f=0,g=e.length;g>f;f++)if(d=e[f].call(c,b,a))return d}function Za(a,b,c){var d,e,f,g,h,i,j,k,l=this,m={},o=a.style,p=a.nodeType&&V(a),q=N.get(a,"fxshow");c.queue||(h=n._queueHooks(a,"fx"),null==h.unqueued&&(h.unqueued=0,i=h.empty.fire,h.empty.fire=function(){h.unqueued||i()}),h.unqueued++,l.always(function(){l.always(function(){h.unqueued--,n.queue(a,"fx").length||h.empty.fire()})})),1===a.nodeType&&("height"in b||"width"in b)&&(c.overflow=[o.overflow,o.overflowX,o.overflowY],j=n.css(a,"display"),k="none"===j?N.get(a,"olddisplay")||za(a.nodeName):j,"inline"===k&&"none"===n.css(a,"float")&&(o.display="inline-block")),c.overflow&&(o.overflow="hidden",l.always(function(){o.overflow=c.overflow[0],o.overflowX=c.overflow[1],o.overflowY=c.overflow[2]}));for(d in b)if(e=b[d],Ua.exec(e)){if(delete b[d],f=f||"toggle"===e,e===(p?"hide":"show")){if("show"!==e||!q||void 0===q[d])continue;p=!0}m[d]=q&&q[d]||n.style(a,d)}else j=void 0;if(n.isEmptyObject(m))"inline"===("none"===j?za(a.nodeName):j)&&(o.display=j);else{q?"hidden"in q&&(p=q.hidden):q=N.access(a,"fxshow",{}),f&&(q.hidden=!p),p?n(a).show():l.done(function(){n(a).hide()}),l.done(function(){var b;N.remove(a,"fxshow");for(b in m)n.style(a,b,m[b])});for(d in m)g=Ya(p?q[d]:0,d,l),d in q||(q[d]=g.start,p&&(g.end=g.start,g.start="width"===d||"height"===d?1:0))}}function $a(a,b){var c,d,e,f,g;for(c in a)if(d=n.camelCase(c),e=b[d],f=a[c],n.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=n.cssHooks[d],g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}function _a(a,b,c){var d,e,f=0,g=_a.prefilters.length,h=n.Deferred().always(function(){delete i.elem}),i=function(){if(e)return!1;for(var b=Sa||Wa(),c=Math.max(0,j.startTime+j.duration-b),d=c/j.duration||0,f=1-d,g=0,i=j.tweens.length;i>g;g++)j.tweens[g].run(f);return h.notifyWith(a,[j,f,c]),1>f&&i?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:n.extend({},b),opts:n.extend(!0,{specialEasing:{},easing:n.easing._default},c),originalProperties:b,originalOptions:c,startTime:Sa||Wa(),duration:c.duration,tweens:[],createTween:function(b,c){var d=n.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(d),d},stop:function(b){var c=0,d=b?j.tweens.length:0;if(e)return this;for(e=!0;d>c;c++)j.tweens[c].run(1);return b?(h.notifyWith(a,[j,1,0]),h.resolveWith(a,[j,b])):h.rejectWith(a,[j,b]),this}}),k=j.props;for($a(k,j.opts.specialEasing);g>f;f++)if(d=_a.prefilters[f].call(j,a,k,j.opts))return n.isFunction(d.stop)&&(n._queueHooks(j.elem,j.opts.queue).stop=n.proxy(d.stop,d)),d;return n.map(k,Ya,j),n.isFunction(j.opts.start)&&j.opts.start.call(a,j),n.fx.timer(n.extend(i,{elem:a,anim:j,queue:j.opts.queue})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}n.Animation=n.extend(_a,{tweeners:{"*":[function(a,b){var c=this.createTween(a,b);return W(c.elem,a,T.exec(b),c),c}]},tweener:function(a,b){n.isFunction(a)?(b=a,a=["*"]):a=a.match(G);for(var c,d=0,e=a.length;e>d;d++)c=a[d],_a.tweeners[c]=_a.tweeners[c]||[],_a.tweeners[c].unshift(b)},prefilters:[Za],prefilter:function(a,b){b?_a.prefilters.unshift(a):_a.prefilters.push(a)}}),n.speed=function(a,b,c){var d=a&&"object"==typeof a?n.extend({},a):{complete:c||!c&&b||n.isFunction(a)&&a,duration:a,easing:c&&b||b&&!n.isFunction(b)&&b};return d.duration=n.fx.off?0:"number"==typeof d.duration?d.duration:d.duration in n.fx.speeds?n.fx.speeds[d.duration]:n.fx.speeds._default,null!=d.queue&&d.queue!==!0||(d.queue="fx"),d.old=d.complete,d.complete=function(){n.isFunction(d.old)&&d.old.call(this),d.queue&&n.dequeue(this,d.queue)},d},n.fn.extend({fadeTo:function(a,b,c,d){return this.filter(V).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=n.isEmptyObject(a),f=n.speed(b,c,d),g=function(){var b=_a(this,n.extend({},a),f);(e||N.get(this,"finish"))&&b.stop(!0)};return g.finish=g,e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,b,c){var d=function(a){var b=a.stop;delete a.stop,b(c)};return"string"!=typeof a&&(c=b,b=a,a=void 0),b&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,e=null!=a&&a+"queueHooks",f=n.timers,g=N.get(this);if(e)g[e]&&g[e].stop&&d(g[e]);else for(e in g)g[e]&&g[e].stop&&Va.test(e)&&d(g[e]);for(e=f.length;e--;)f[e].elem!==this||null!=a&&f[e].queue!==a||(f[e].anim.stop(c),b=!1,f.splice(e,1));!b&&c||n.dequeue(this,a)})},finish:function(a){return a!==!1&&(a=a||"fx"),this.each(function(){var b,c=N.get(this),d=c[a+"queue"],e=c[a+"queueHooks"],f=n.timers,g=d?d.length:0;for(c.finish=!0,n.queue(this,a,[]),e&&e.stop&&e.stop.call(this,!0),b=f.length;b--;)f[b].elem===this&&f[b].queue===a&&(f[b].anim.stop(!0),f.splice(b,1));for(b=0;g>b;b++)d[b]&&d[b].finish&&d[b].finish.call(this);delete c.finish})}}),n.each(["toggle","show","hide"],function(a,b){var c=n.fn[b];n.fn[b]=function(a,d,e){return null==a||"boolean"==typeof a?c.apply(this,arguments):this.animate(Xa(b,!0),a,d,e)}}),n.each({slideDown:Xa("show"),slideUp:Xa("hide"),slideToggle:Xa("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){n.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),n.timers=[],n.fx.tick=function(){var a,b=0,c=n.timers;for(Sa=n.now();b<c.length;b++)a=c[b],a()||c[b]!==a||c.splice(b--,1);c.length||n.fx.stop(),Sa=void 0},n.fx.timer=function(a){n.timers.push(a),a()?n.fx.start():n.timers.pop()},n.fx.interval=13,n.fx.start=function(){Ta||(Ta=a.setInterval(n.fx.tick,n.fx.interval))},n.fx.stop=function(){a.clearInterval(Ta),Ta=null},n.fx.speeds={slow:600,fast:200,_default:400},n.fn.delay=function(b,c){return b=n.fx?n.fx.speeds[b]||b:b,c=c||"fx",this.queue(c,function(c,d){var e=a.setTimeout(c,b);d.stop=function(){a.clearTimeout(e)}})},function(){var a=d.createElement("input"),b=d.createElement("select"),c=b.appendChild(d.createElement("option"));a.type="checkbox",l.checkOn=""!==a.value,l.optSelected=c.selected,b.disabled=!0,l.optDisabled=!c.disabled,a=d.createElement("input"),a.value="t",a.type="radio",l.radioValue="t"===a.value}();var ab,bb=n.expr.attrHandle;n.fn.extend({attr:function(a,b){return K(this,n.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){n.removeAttr(this,a)})}}),n.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return"undefined"==typeof a.getAttribute?n.prop(a,b,c):(1===f&&n.isXMLDoc(a)||(b=b.toLowerCase(),e=n.attrHooks[b]||(n.expr.match.bool.test(b)?ab:void 0)),void 0!==c?null===c?void n.removeAttr(a,b):e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:(a.setAttribute(b,c+""),c):e&&"get"in e&&null!==(d=e.get(a,b))?d:(d=n.find.attr(a,b),null==d?void 0:d))},attrHooks:{type:{set:function(a,b){if(!l.radioValue&&"radio"===b&&n.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}},removeAttr:function(a,b){var c,d,e=0,f=b&&b.match(G);if(f&&1===a.nodeType)while(c=f[e++])d=n.propFix[c]||c,n.expr.match.bool.test(c)&&(a[d]=!1),a.removeAttribute(c)}}),ab={set:function(a,b,c){return b===!1?n.removeAttr(a,c):a.setAttribute(c,c),c}},n.each(n.expr.match.bool.source.match(/\w+/g),function(a,b){var c=bb[b]||n.find.attr;bb[b]=function(a,b,d){var e,f;return d||(f=bb[b],bb[b]=e,e=null!=c(a,b,d)?b.toLowerCase():null,bb[b]=f),e}});var cb=/^(?:input|select|textarea|button)$/i,db=/^(?:a|area)$/i;n.fn.extend({prop:function(a,b){return K(this,n.prop,a,b,arguments.length>1)},removeProp:function(a){return this.each(function(){delete this[n.propFix[a]||a]})}}),n.extend({prop:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return 1===f&&n.isXMLDoc(a)||(b=n.propFix[b]||b,e=n.propHooks[b]),
  4. void 0!==c?e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&&"get"in e&&null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){var b=n.find.attr(a,"tabindex");return b?parseInt(b,10):cb.test(a.nodeName)||db.test(a.nodeName)&&a.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),l.optSelected||(n.propHooks.selected={get:function(a){var b=a.parentNode;return b&&b.parentNode&&b.parentNode.selectedIndex,null},set:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex)}}),n.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){n.propFix[this.toLowerCase()]=this});var eb=/[\t\r\n\f]/g;function fb(a){return a.getAttribute&&a.getAttribute("class")||""}n.fn.extend({addClass:function(a){var b,c,d,e,f,g,h,i=0;if(n.isFunction(a))return this.each(function(b){n(this).addClass(a.call(this,b,fb(this)))});if("string"==typeof a&&a){b=a.match(G)||[];while(c=this[i++])if(e=fb(c),d=1===c.nodeType&&(" "+e+" ").replace(eb," ")){g=0;while(f=b[g++])d.indexOf(" "+f+" ")<0&&(d+=f+" ");h=n.trim(d),e!==h&&c.setAttribute("class",h)}}return this},removeClass:function(a){var b,c,d,e,f,g,h,i=0;if(n.isFunction(a))return this.each(function(b){n(this).removeClass(a.call(this,b,fb(this)))});if(!arguments.length)return this.attr("class","");if("string"==typeof a&&a){b=a.match(G)||[];while(c=this[i++])if(e=fb(c),d=1===c.nodeType&&(" "+e+" ").replace(eb," ")){g=0;while(f=b[g++])while(d.indexOf(" "+f+" ")>-1)d=d.replace(" "+f+" "," ");h=n.trim(d),e!==h&&c.setAttribute("class",h)}}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):n.isFunction(a)?this.each(function(c){n(this).toggleClass(a.call(this,c,fb(this),b),b)}):this.each(function(){var b,d,e,f;if("string"===c){d=0,e=n(this),f=a.match(G)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else void 0!==a&&"boolean"!==c||(b=fb(this),b&&N.set(this,"__className__",b),this.setAttribute&&this.setAttribute("class",b||a===!1?"":N.get(this,"__className__")||""))})},hasClass:function(a){var b,c,d=0;b=" "+a+" ";while(c=this[d++])if(1===c.nodeType&&(" "+fb(c)+" ").replace(eb," ").indexOf(b)>-1)return!0;return!1}});var gb=/\r/g,hb=/[\x20\t\r\n\f]+/g;n.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=n.isFunction(a),this.each(function(c){var e;1===this.nodeType&&(e=d?a.call(this,c,n(this).val()):a,null==e?e="":"number"==typeof e?e+="":n.isArray(e)&&(e=n.map(e,function(a){return null==a?"":a+""})),b=n.valHooks[this.type]||n.valHooks[this.nodeName.toLowerCase()],b&&"set"in b&&void 0!==b.set(this,e,"value")||(this.value=e))});if(e)return b=n.valHooks[e.type]||n.valHooks[e.nodeName.toLowerCase()],b&&"get"in b&&void 0!==(c=b.get(e,"value"))?c:(c=e.value,"string"==typeof c?c.replace(gb,""):null==c?"":c)}}}),n.extend({valHooks:{option:{get:function(a){var b=n.find.attr(a,"value");return null!=b?b:n.trim(n.text(a)).replace(hb," ")}},select:{get:function(a){for(var b,c,d=a.options,e=a.selectedIndex,f="select-one"===a.type||0>e,g=f?null:[],h=f?e+1:d.length,i=0>e?h:f?e:0;h>i;i++)if(c=d[i],(c.selected||i===e)&&(l.optDisabled?!c.disabled:null===c.getAttribute("disabled"))&&(!c.parentNode.disabled||!n.nodeName(c.parentNode,"optgroup"))){if(b=n(c).val(),f)return b;g.push(b)}return g},set:function(a,b){var c,d,e=a.options,f=n.makeArray(b),g=e.length;while(g--)d=e[g],(d.selected=n.inArray(n.valHooks.option.get(d),f)>-1)&&(c=!0);return c||(a.selectedIndex=-1),f}}}}),n.each(["radio","checkbox"],function(){n.valHooks[this]={set:function(a,b){return n.isArray(b)?a.checked=n.inArray(n(a).val(),b)>-1:void 0}},l.checkOn||(n.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})});var ib=/^(?:focusinfocus|focusoutblur)$/;n.extend(n.event,{trigger:function(b,c,e,f){var g,h,i,j,l,m,o,p=[e||d],q=k.call(b,"type")?b.type:b,r=k.call(b,"namespace")?b.namespace.split("."):[];if(h=i=e=e||d,3!==e.nodeType&&8!==e.nodeType&&!ib.test(q+n.event.triggered)&&(q.indexOf(".")>-1&&(r=q.split("."),q=r.shift(),r.sort()),l=q.indexOf(":")<0&&"on"+q,b=b[n.expando]?b:new n.Event(q,"object"==typeof b&&b),b.isTrigger=f?2:3,b.namespace=r.join("."),b.rnamespace=b.namespace?new RegExp("(^|\\.)"+r.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=e),c=null==c?[b]:n.makeArray(c,[b]),o=n.event.special[q]||{},f||!o.trigger||o.trigger.apply(e,c)!==!1)){if(!f&&!o.noBubble&&!n.isWindow(e)){for(j=o.delegateType||q,ib.test(j+q)||(h=h.parentNode);h;h=h.parentNode)p.push(h),i=h;i===(e.ownerDocument||d)&&p.push(i.defaultView||i.parentWindow||a)}g=0;while((h=p[g++])&&!b.isPropagationStopped())b.type=g>1?j:o.bindType||q,m=(N.get(h,"events")||{})[b.type]&&N.get(h,"handle"),m&&m.apply(h,c),m=l&&h[l],m&&m.apply&&L(h)&&(b.result=m.apply(h,c),b.result===!1&&b.preventDefault());return b.type=q,f||b.isDefaultPrevented()||o._default&&o._default.apply(p.pop(),c)!==!1||!L(e)||l&&n.isFunction(e[q])&&!n.isWindow(e)&&(i=e[l],i&&(e[l]=null),n.event.triggered=q,e[q](),n.event.triggered=void 0,i&&(e[l]=i)),b.result}},simulate:function(a,b,c){var d=n.extend(new n.Event,c,{type:a,isSimulated:!0});n.event.trigger(d,null,b)}}),n.fn.extend({trigger:function(a,b){return this.each(function(){n.event.trigger(a,b,this)})},triggerHandler:function(a,b){var c=this[0];return c?n.event.trigger(a,b,c,!0):void 0}}),n.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){n.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),n.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),l.focusin="onfocusin"in a,l.focusin||n.each({focus:"focusin",blur:"focusout"},function(a,b){var c=function(a){n.event.simulate(b,a.target,n.event.fix(a))};n.event.special[b]={setup:function(){var d=this.ownerDocument||this,e=N.access(d,b);e||d.addEventListener(a,c,!0),N.access(d,b,(e||0)+1)},teardown:function(){var d=this.ownerDocument||this,e=N.access(d,b)-1;e?N.access(d,b,e):(d.removeEventListener(a,c,!0),N.remove(d,b))}}});var jb=a.location,kb=n.now(),lb=/\?/;n.parseJSON=function(a){return JSON.parse(a+"")},n.parseXML=function(b){var c;if(!b||"string"!=typeof b)return null;try{c=(new a.DOMParser).parseFromString(b,"text/xml")}catch(d){c=void 0}return c&&!c.getElementsByTagName("parsererror").length||n.error("Invalid XML: "+b),c};var mb=/#.*$/,nb=/([?&])_=[^&]*/,ob=/^(.*?):[ \t]*([^\r\n]*)$/gm,pb=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,qb=/^(?:GET|HEAD)$/,rb=/^\/\//,sb={},tb={},ub="*/".concat("*"),vb=d.createElement("a");vb.href=jb.href;function wb(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(G)||[];if(n.isFunction(c))while(d=f[e++])"+"===d[0]?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function xb(a,b,c,d){var e={},f=a===tb;function g(h){var i;return e[h]=!0,n.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e["*"]&&g("*")}function yb(a,b){var c,d,e=n.ajaxSettings.flatOptions||{};for(c in b)void 0!==b[c]&&((e[c]?a:d||(d={}))[c]=b[c]);return d&&n.extend(!0,a,d),a}function zb(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while("*"===i[0])i.shift(),void 0===d&&(d=a.mimeType||b.getResponseHeader("Content-Type"));if(d)for(e in h)if(h[e]&&h[e].test(d)){i.unshift(e);break}if(i[0]in c)f=i[0];else{for(e in c){if(!i[0]||a.converters[e+" "+i[0]]){f=e;break}g||(g=e)}f=f||g}return f?(f!==i[0]&&i.unshift(f),c[f]):void 0}function Ab(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&&(c[a.responseFields[f]]=b),!i&&d&&a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if("*"===f)f=i;else if("*"!==i&&i!==f){if(g=j[i+" "+f]||j["* "+f],!g)for(e in j)if(h=e.split(" "),h[1]===f&&(g=j[i+" "+h[0]]||j["* "+h[0]])){g===!0?g=j[e]:j[e]!==!0&&(f=h[0],k.unshift(h[1]));break}if(g!==!0)if(g&&a["throws"])b=g(b);else try{b=g(b)}catch(l){return{state:"parsererror",error:g?l:"No conversion from "+i+" to "+f}}}return{state:"success",data:b}}n.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:jb.href,type:"GET",isLocal:pb.test(jb.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":ub,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":n.parseJSON,"text xml":n.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?yb(yb(a,n.ajaxSettings),b):yb(n.ajaxSettings,a)},ajaxPrefilter:wb(sb),ajaxTransport:wb(tb),ajax:function(b,c){"object"==typeof b&&(c=b,b=void 0),c=c||{};var e,f,g,h,i,j,k,l,m=n.ajaxSetup({},c),o=m.context||m,p=m.context&&(o.nodeType||o.jquery)?n(o):n.event,q=n.Deferred(),r=n.Callbacks("once memory"),s=m.statusCode||{},t={},u={},v=0,w="canceled",x={readyState:0,getResponseHeader:function(a){var b;if(2===v){if(!h){h={};while(b=ob.exec(g))h[b[1].toLowerCase()]=b[2]}b=h[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return 2===v?g:null},setRequestHeader:function(a,b){var c=a.toLowerCase();return v||(a=u[c]=u[c]||a,t[a]=b),this},overrideMimeType:function(a){return v||(m.mimeType=a),this},statusCode:function(a){var b;if(a)if(2>v)for(b in a)s[b]=[s[b],a[b]];else x.always(a[x.status]);return this},abort:function(a){var b=a||w;return e&&e.abort(b),z(0,b),this}};if(q.promise(x).complete=r.add,x.success=x.done,x.error=x.fail,m.url=((b||m.url||jb.href)+"").replace(mb,"").replace(rb,jb.protocol+"//"),m.type=c.method||c.type||m.method||m.type,m.dataTypes=n.trim(m.dataType||"*").toLowerCase().match(G)||[""],null==m.crossDomain){j=d.createElement("a");try{j.href=m.url,j.href=j.href,m.crossDomain=vb.protocol+"//"+vb.host!=j.protocol+"//"+j.host}catch(y){m.crossDomain=!0}}if(m.data&&m.processData&&"string"!=typeof m.data&&(m.data=n.param(m.data,m.traditional)),xb(sb,m,c,x),2===v)return x;k=n.event&&m.global,k&&0===n.active++&&n.event.trigger("ajaxStart"),m.type=m.type.toUpperCase(),m.hasContent=!qb.test(m.type),f=m.url,m.hasContent||(m.data&&(f=m.url+=(lb.test(f)?"&":"?")+m.data,delete m.data),m.cache===!1&&(m.url=nb.test(f)?f.replace(nb,"$1_="+kb++):f+(lb.test(f)?"&":"?")+"_="+kb++)),m.ifModified&&(n.lastModified[f]&&x.setRequestHeader("If-Modified-Since",n.lastModified[f]),n.etag[f]&&x.setRequestHeader("If-None-Match",n.etag[f])),(m.data&&m.hasContent&&m.contentType!==!1||c.contentType)&&x.setRequestHeader("Content-Type",m.contentType),x.setRequestHeader("Accept",m.dataTypes[0]&&m.accepts[m.dataTypes[0]]?m.accepts[m.dataTypes[0]]+("*"!==m.dataTypes[0]?", "+ub+"; q=0.01":""):m.accepts["*"]);for(l in m.headers)x.setRequestHeader(l,m.headers[l]);if(m.beforeSend&&(m.beforeSend.call(o,x,m)===!1||2===v))return x.abort();w="abort";for(l in{success:1,error:1,complete:1})x[l](m[l]);if(e=xb(tb,m,c,x)){if(x.readyState=1,k&&p.trigger("ajaxSend",[x,m]),2===v)return x;m.async&&m.timeout>0&&(i=a.setTimeout(function(){x.abort("timeout")},m.timeout));try{v=1,e.send(t,z)}catch(y){if(!(2>v))throw y;z(-1,y)}}else z(-1,"No Transport");function z(b,c,d,h){var j,l,t,u,w,y=c;2!==v&&(v=2,i&&a.clearTimeout(i),e=void 0,g=h||"",x.readyState=b>0?4:0,j=b>=200&&300>b||304===b,d&&(u=zb(m,x,d)),u=Ab(m,u,x,j),j?(m.ifModified&&(w=x.getResponseHeader("Last-Modified"),w&&(n.lastModified[f]=w),w=x.getResponseHeader("etag"),w&&(n.etag[f]=w)),204===b||"HEAD"===m.type?y="nocontent":304===b?y="notmodified":(y=u.state,l=u.data,t=u.error,j=!t)):(t=y,!b&&y||(y="error",0>b&&(b=0))),x.status=b,x.statusText=(c||y)+"",j?q.resolveWith(o,[l,y,x]):q.rejectWith(o,[x,y,t]),x.statusCode(s),s=void 0,k&&p.trigger(j?"ajaxSuccess":"ajaxError",[x,m,j?l:t]),r.fireWith(o,[x,y]),k&&(p.trigger("ajaxComplete",[x,m]),--n.active||n.event.trigger("ajaxStop")))}return x},getJSON:function(a,b,c){return n.get(a,b,c,"json")},getScript:function(a,b){return n.get(a,void 0,b,"script")}}),n.each(["get","post"],function(a,b){n[b]=function(a,c,d,e){return n.isFunction(c)&&(e=e||d,d=c,c=void 0),n.ajax(n.extend({url:a,type:b,dataType:e,data:c,success:d},n.isPlainObject(a)&&a))}}),n._evalUrl=function(a){return n.ajax({url:a,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})},n.fn.extend({wrapAll:function(a){var b;return n.isFunction(a)?this.each(function(b){n(this).wrapAll(a.call(this,b))}):(this[0]&&(b=n(a,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstElementChild)a=a.firstElementChild;return a}).append(this)),this)},wrapInner:function(a){return n.isFunction(a)?this.each(function(b){n(this).wrapInner(a.call(this,b))}):this.each(function(){var b=n(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=n.isFunction(a);return this.each(function(c){n(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){n.nodeName(this,"body")||n(this).replaceWith(this.childNodes)}).end()}}),n.expr.filters.hidden=function(a){return!n.expr.filters.visible(a)},n.expr.filters.visible=function(a){return a.offsetWidth>0||a.offsetHeight>0||a.getClientRects().length>0};var Bb=/%20/g,Cb=/\[\]$/,Db=/\r?\n/g,Eb=/^(?:submit|button|image|reset|file)$/i,Fb=/^(?:input|select|textarea|keygen)/i;function Gb(a,b,c,d){var e;if(n.isArray(b))n.each(b,function(b,e){c||Cb.test(a)?d(a,e):Gb(a+"["+("object"==typeof e&&null!=e?b:"")+"]",e,c,d)});else if(c||"object"!==n.type(b))d(a,b);else for(e in b)Gb(a+"["+e+"]",b[e],c,d)}n.param=function(a,b){var c,d=[],e=function(a,b){b=n.isFunction(b)?b():null==b?"":b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};if(void 0===b&&(b=n.ajaxSettings&&n.ajaxSettings.traditional),n.isArray(a)||a.jquery&&!n.isPlainObject(a))n.each(a,function(){e(this.name,this.value)});else for(c in a)Gb(c,a[c],b,e);return d.join("&").replace(Bb,"+")},n.fn.extend({serialize:function(){return n.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=n.prop(this,"elements");return a?n.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!n(this).is(":disabled")&&Fb.test(this.nodeName)&&!Eb.test(a)&&(this.checked||!X.test(a))}).map(function(a,b){var c=n(this).val();return null==c?null:n.isArray(c)?n.map(c,function(a){return{name:b.name,value:a.replace(Db,"\r\n")}}):{name:b.name,value:c.replace(Db,"\r\n")}}).get()}}),n.ajaxSettings.xhr=function(){try{return new a.XMLHttpRequest}catch(b){}};var Hb={0:200,1223:204},Ib=n.ajaxSettings.xhr();l.cors=!!Ib&&"withCredentials"in Ib,l.ajax=Ib=!!Ib,n.ajaxTransport(function(b){var c,d;return l.cors||Ib&&!b.crossDomain?{send:function(e,f){var g,h=b.xhr();if(h.open(b.type,b.url,b.async,b.username,b.password),b.xhrFields)for(g in b.xhrFields)h[g]=b.xhrFields[g];b.mimeType&&h.overrideMimeType&&h.overrideMimeType(b.mimeType),b.crossDomain||e["X-Requested-With"]||(e["X-Requested-With"]="XMLHttpRequest");for(g in e)h.setRequestHeader(g,e[g]);c=function(a){return function(){c&&(c=d=h.onload=h.onerror=h.onabort=h.onreadystatechange=null,"abort"===a?h.abort():"error"===a?"number"!=typeof h.status?f(0,"error"):f(h.status,h.statusText):f(Hb[h.status]||h.status,h.statusText,"text"!==(h.responseType||"text")||"string"!=typeof h.responseText?{binary:h.response}:{text:h.responseText},h.getAllResponseHeaders()))}},h.onload=c(),d=h.onerror=c("error"),void 0!==h.onabort?h.onabort=d:h.onreadystatechange=function(){4===h.readyState&&a.setTimeout(function(){c&&d()})},c=c("abort");try{h.send(b.hasContent&&b.data||null)}catch(i){if(c)throw i}},abort:function(){c&&c()}}:void 0}),n.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(a){return n.globalEval(a),a}}}),n.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type="GET")}),n.ajaxTransport("script",function(a){if(a.crossDomain){var b,c;return{send:function(e,f){b=n("<script>").prop({charset:a.scriptCharset,src:a.url}).on("load error",c=function(a){b.remove(),c=null,a&&f("error"===a.type?404:200,a.type)}),d.head.appendChild(b[0])},abort:function(){c&&c()}}}});var Jb=[],Kb=/(=)\?(?=&|$)|\?\?/;n.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=Jb.pop()||n.expando+"_"+kb++;return this[a]=!0,a}}),n.ajaxPrefilter("json jsonp",function(b,c,d){var e,f,g,h=b.jsonp!==!1&&(Kb.test(b.url)?"url":"string"==typeof b.data&&0===(b.contentType||"").indexOf("application/x-www-form-urlencoded")&&Kb.test(b.data)&&"data");return h||"jsonp"===b.dataTypes[0]?(e=b.jsonpCallback=n.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,h?b[h]=b[h].replace(Kb,"$1"+e):b.jsonp!==!1&&(b.url+=(lb.test(b.url)?"&":"?")+b.jsonp+"="+e),b.converters["script json"]=function(){return g||n.error(e+" was not called"),g[0]},b.dataTypes[0]="json",f=a[e],a[e]=function(){g=arguments},d.always(function(){void 0===f?n(a).removeProp(e):a[e]=f,b[e]&&(b.jsonpCallback=c.jsonpCallback,Jb.push(e)),g&&n.isFunction(f)&&f(g[0]),g=f=void 0}),"script"):void 0}),n.parseHTML=function(a,b,c){if(!a||"string"!=typeof a)return null;"boolean"==typeof b&&(c=b,b=!1),b=b||d;var e=x.exec(a),f=!c&&[];return e?[b.createElement(e[1])]:(e=ca([a],b,f),f&&f.length&&n(f).remove(),n.merge([],e.childNodes))};var Lb=n.fn.load;n.fn.load=function(a,b,c){if("string"!=typeof a&&Lb)return Lb.apply(this,arguments);var d,e,f,g=this,h=a.indexOf(" ");return h>-1&&(d=n.trim(a.slice(h)),a=a.slice(0,h)),n.isFunction(b)?(c=b,b=void 0):b&&"object"==typeof b&&(e="POST"),g.length>0&&n.ajax({url:a,type:e||"GET",dataType:"html",data:b}).done(function(a){f=arguments,g.html(d?n("<div>").append(n.parseHTML(a)).find(d):a)}).always(c&&function(a,b){g.each(function(){c.apply(this,f||[a.responseText,b,a])})}),this},n.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(a,b){n.fn[b]=function(a){return this.on(b,a)}}),n.expr.filters.animated=function(a){return n.grep(n.timers,function(b){return a===b.elem}).length};function Mb(a){return n.isWindow(a)?a:9===a.nodeType&&a.defaultView}n.offset={setOffset:function(a,b,c){var d,e,f,g,h,i,j,k=n.css(a,"position"),l=n(a),m={};"static"===k&&(a.style.position="relative"),h=l.offset(),f=n.css(a,"top"),i=n.css(a,"left"),j=("absolute"===k||"fixed"===k)&&(f+i).indexOf("auto")>-1,j?(d=l.position(),g=d.top,e=d.left):(g=parseFloat(f)||0,e=parseFloat(i)||0),n.isFunction(b)&&(b=b.call(a,c,n.extend({},h))),null!=b.top&&(m.top=b.top-h.top+g),null!=b.left&&(m.left=b.left-h.left+e),"using"in b?b.using.call(a,m):l.css(m)}},n.fn.extend({offset:function(a){if(arguments.length)return void 0===a?this:this.each(function(b){n.offset.setOffset(this,a,b)});var b,c,d=this[0],e={top:0,left:0},f=d&&d.ownerDocument;if(f)return b=f.documentElement,n.contains(b,d)?(e=d.getBoundingClientRect(),c=Mb(f),{top:e.top+c.pageYOffset-b.clientTop,left:e.left+c.pageXOffset-b.clientLeft}):e},position:function(){if(this[0]){var a,b,c=this[0],d={top:0,left:0};return"fixed"===n.css(c,"position")?b=c.getBoundingClientRect():(a=this.offsetParent(),b=this.offset(),n.nodeName(a[0],"html")||(d=a.offset()),d.top+=n.css(a[0],"borderTopWidth",!0),d.left+=n.css(a[0],"borderLeftWidth",!0)),{top:b.top-d.top-n.css(c,"marginTop",!0),left:b.left-d.left-n.css(c,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var a=this.offsetParent;while(a&&"static"===n.css(a,"position"))a=a.offsetParent;return a||Ea})}}),n.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,b){var c="pageYOffset"===b;n.fn[a]=function(d){return K(this,function(a,d,e){var f=Mb(a);return void 0===e?f?f[b]:a[d]:void(f?f.scrollTo(c?f.pageXOffset:e,c?e:f.pageYOffset):a[d]=e)},a,d,arguments.length)}}),n.each(["top","left"],function(a,b){n.cssHooks[b]=Ga(l.pixelPosition,function(a,c){return c?(c=Fa(a,b),Ba.test(c)?n(a).position()[b]+"px":c):void 0})}),n.each({Height:"height",Width:"width"},function(a,b){n.each({padding:"inner"+a,content:b,"":"outer"+a},function(c,d){n.fn[d]=function(d,e){var f=arguments.length&&(c||"boolean"!=typeof d),g=c||(d===!0||e===!0?"margin":"border");return K(this,function(b,c,d){var e;return n.isWindow(b)?b.document.documentElement["client"+a]:9===b.nodeType?(e=b.documentElement,Math.max(b.body["scroll"+a],e["scroll"+a],b.body["offset"+a],e["offset"+a],e["client"+a])):void 0===d?n.css(b,c,g):n.style(b,c,d,g)},b,f?d:void 0,f,null)}})}),n.fn.extend({bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return 1===arguments.length?this.off(a,"**"):this.off(b,a||"**",c)},size:function(){return this.length}}),n.fn.andSelf=n.fn.addBack,"function"==typeof define&&define.amd&&define("jquery",[],function(){return n});var Nb=a.jQuery,Ob=a.$;return n.noConflict=function(b){return a.$===n&&(a.$=Ob),b&&a.jQuery===n&&(a.jQuery=Nb),n},b||(a.jQuery=a.$=n),n});
  5. /*!
  6. * Bootstrap v3.4.1 (https://getbootstrap.com/)
  7. * Copyright 2011-2019 Twitter, Inc.
  8. * Licensed under the MIT license
  9. */
  10. if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");!function(t){"use strict";var e=jQuery.fn.jquery.split(" ")[0].split(".");if(e[0]<2&&e[1]<9||1==e[0]&&9==e[1]&&e[2]<1||3<e[0])throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4")}(),function(n){"use strict";n.fn.emulateTransitionEnd=function(t){var e=!1,i=this;n(this).one("bsTransitionEnd",function(){e=!0});return setTimeout(function(){e||n(i).trigger(n.support.transition.end)},t),this},n(function(){n.support.transition=function o(){var t=document.createElement("bootstrap"),e={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var i in e)if(t.style[i]!==undefined)return{end:e[i]};return!1}(),n.support.transition&&(n.event.special.bsTransitionEnd={bindType:n.support.transition.end,delegateType:n.support.transition.end,handle:function(t){if(n(t.target).is(this))return t.handleObj.handler.apply(this,arguments)}})})}(jQuery),function(s){"use strict";var e='[data-dismiss="alert"]',a=function(t){s(t).on("click",e,this.close)};a.VERSION="3.4.1",a.TRANSITION_DURATION=150,a.prototype.close=function(t){var e=s(this),i=e.attr("data-target");i||(i=(i=e.attr("href"))&&i.replace(/.*(?=#[^\s]*$)/,"")),i="#"===i?[]:i;var o=s(document).find(i);function n(){o.detach().trigger("closed.bs.alert").remove()}t&&t.preventDefault(),o.length||(o=e.closest(".alert")),o.trigger(t=s.Event("close.bs.alert")),t.isDefaultPrevented()||(o.removeClass("in"),s.support.transition&&o.hasClass("fade")?o.one("bsTransitionEnd",n).emulateTransitionEnd(a.TRANSITION_DURATION):n())};var t=s.fn.alert;s.fn.alert=function o(i){return this.each(function(){var t=s(this),e=t.data("bs.alert");e||t.data("bs.alert",e=new a(this)),"string"==typeof i&&e[i].call(t)})},s.fn.alert.Constructor=a,s.fn.alert.noConflict=function(){return s.fn.alert=t,this},s(document).on("click.bs.alert.data-api",e,a.prototype.close)}(jQuery),function(s){"use strict";var n=function(t,e){this.$element=s(t),this.options=s.extend({},n.DEFAULTS,e),this.isLoading=!1};function i(o){return this.each(function(){var t=s(this),e=t.data("bs.button"),i="object"==typeof o&&o;e||t.data("bs.button",e=new n(this,i)),"toggle"==o?e.toggle():o&&e.setState(o)})}n.VERSION="3.4.1",n.DEFAULTS={loadingText:"loading..."},n.prototype.setState=function(t){var e="disabled",i=this.$element,o=i.is("input")?"val":"html",n=i.data();t+="Text",null==n.resetText&&i.data("resetText",i[o]()),setTimeout(s.proxy(function(){i[o](null==n[t]?this.options[t]:n[t]),"loadingText"==t?(this.isLoading=!0,i.addClass(e).attr(e,e).prop(e,!0)):this.isLoading&&(this.isLoading=!1,i.removeClass(e).removeAttr(e).prop(e,!1))},this),0)},n.prototype.toggle=function(){var t=!0,e=this.$element.closest('[data-toggle="buttons"]');if(e.length){var i=this.$element.find("input");"radio"==i.prop("type")?(i.prop("checked")&&(t=!1),e.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==i.prop("type")&&(i.prop("checked")!==this.$element.hasClass("active")&&(t=!1),this.$element.toggleClass("active")),i.prop("checked",this.$element.hasClass("active")),t&&i.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var t=s.fn.button;s.fn.button=i,s.fn.button.Constructor=n,s.fn.button.noConflict=function(){return s.fn.button=t,this},s(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(t){var e=s(t.target).closest(".btn");i.call(e,"toggle"),s(t.target).is('input[type="radio"], input[type="checkbox"]')||(t.preventDefault(),e.is("input,button")?e.trigger("focus"):e.find("input:visible,button:visible").first().trigger("focus"))}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(t){s(t.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(t.type))})}(jQuery),function(p){"use strict";var c=function(t,e){this.$element=p(t),this.$indicators=this.$element.find(".carousel-indicators"),this.options=e,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",p.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",p.proxy(this.pause,this)).on("mouseleave.bs.carousel",p.proxy(this.cycle,this))};function r(n){return this.each(function(){var t=p(this),e=t.data("bs.carousel"),i=p.extend({},c.DEFAULTS,t.data(),"object"==typeof n&&n),o="string"==typeof n?n:i.slide;e||t.data("bs.carousel",e=new c(this,i)),"number"==typeof n?e.to(n):o?e[o]():i.interval&&e.pause().cycle()})}c.VERSION="3.4.1",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(t){if(!/input|textarea/i.test(t.target.tagName)){switch(t.which){case 37:this.prev();break;case 39:this.next();break;default:return}t.preventDefault()}},c.prototype.cycle=function(t){return t||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(p.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(t){return this.$items=t.parent().children(".item"),this.$items.index(t||this.$active)},c.prototype.getItemForDirection=function(t,e){var i=this.getItemIndex(e);if(("prev"==t&&0===i||"next"==t&&i==this.$items.length-1)&&!this.options.wrap)return e;var o=(i+("prev"==t?-1:1))%this.$items.length;return this.$items.eq(o)},c.prototype.to=function(t){var e=this,i=this.getItemIndex(this.$active=this.$element.find(".item.active"));if(!(t>this.$items.length-1||t<0))return this.sliding?this.$element.one("slid.bs.carousel",function(){e.to(t)}):i==t?this.pause().cycle():this.slide(i<t?"next":"prev",this.$items.eq(t))},c.prototype.pause=function(t){return t||(this.paused=!0),this.$element.find(".next, .prev").length&&p.support.transition&&(this.$element.trigger(p.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){if(!this.sliding)return this.slide("next")},c.prototype.prev=function(){if(!this.sliding)return this.slide("prev")},c.prototype.slide=function(t,e){var i=this.$element.find(".item.active"),o=e||this.getItemForDirection(t,i),n=this.interval,s="next"==t?"left":"right",a=this;if(o.hasClass("active"))return this.sliding=!1;var r=o[0],l=p.Event("slide.bs.carousel",{relatedTarget:r,direction:s});if(this.$element.trigger(l),!l.isDefaultPrevented()){if(this.sliding=!0,n&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var h=p(this.$indicators.children()[this.getItemIndex(o)]);h&&h.addClass("active")}var d=p.Event("slid.bs.carousel",{relatedTarget:r,direction:s});return p.support.transition&&this.$element.hasClass("slide")?(o.addClass(t),"object"==typeof o&&o.length&&o[0].offsetWidth,i.addClass(s),o.addClass(s),i.one("bsTransitionEnd",function(){o.removeClass([t,s].join(" ")).addClass("active"),i.removeClass(["active",s].join(" ")),a.sliding=!1,setTimeout(function(){a.$element.trigger(d)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(i.removeClass("active"),o.addClass("active"),this.sliding=!1,this.$element.trigger(d)),n&&this.cycle(),this}};var t=p.fn.carousel;p.fn.carousel=r,p.fn.carousel.Constructor=c,p.fn.carousel.noConflict=function(){return p.fn.carousel=t,this};var e=function(t){var e=p(this),i=e.attr("href");i&&(i=i.replace(/.*(?=#[^\s]+$)/,""));var o=e.attr("data-target")||i,n=p(document).find(o);if(n.hasClass("carousel")){var s=p.extend({},n.data(),e.data()),a=e.attr("data-slide-to");a&&(s.interval=!1),r.call(n,s),a&&n.data("bs.carousel").to(a),t.preventDefault()}};p(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),p(window).on("load",function(){p('[data-ride="carousel"]').each(function(){var t=p(this);r.call(t,t.data())})})}(jQuery),function(a){"use strict";var r=function(t,e){this.$element=a(t),this.options=a.extend({},r.DEFAULTS,e),this.$trigger=a('[data-toggle="collapse"][href="#'+t.id+'"],[data-toggle="collapse"][data-target="#'+t.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};function n(t){var e,i=t.attr("data-target")||(e=t.attr("href"))&&e.replace(/.*(?=#[^\s]+$)/,"");return a(document).find(i)}function l(o){return this.each(function(){var t=a(this),e=t.data("bs.collapse"),i=a.extend({},r.DEFAULTS,t.data(),"object"==typeof o&&o);!e&&i.toggle&&/show|hide/.test(o)&&(i.toggle=!1),e||t.data("bs.collapse",e=new r(this,i)),"string"==typeof o&&e[o]()})}r.VERSION="3.4.1",r.TRANSITION_DURATION=350,r.DEFAULTS={toggle:!0},r.prototype.dimension=function(){return this.$element.hasClass("width")?"width":"height"},r.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var t,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(t=e.data("bs.collapse"))&&t.transitioning)){var i=a.Event("show.bs.collapse");if(this.$element.trigger(i),!i.isDefaultPrevented()){e&&e.length&&(l.call(e,"hide"),t||e.data("bs.collapse",null));var o=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[o](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var n=function(){this.$element.removeClass("collapsing").addClass("collapse in")[o](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return n.call(this);var s=a.camelCase(["scroll",o].join("-"));this.$element.one("bsTransitionEnd",a.proxy(n,this)).emulateTransitionEnd(r.TRANSITION_DURATION)[o](this.$element[0][s])}}}},r.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var t=a.Event("hide.bs.collapse");if(this.$element.trigger(t),!t.isDefaultPrevented()){var e=this.dimension();this.$element[e](this.$element[e]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var i=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};if(!a.support.transition)return i.call(this);this.$element[e](0).one("bsTransitionEnd",a.proxy(i,this)).emulateTransitionEnd(r.TRANSITION_DURATION)}}},r.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},r.prototype.getParent=function(){return a(document).find(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(t,e){var i=a(e);this.addAriaAndCollapsedClass(n(i),i)},this)).end()},r.prototype.addAriaAndCollapsedClass=function(t,e){var i=t.hasClass("in");t.attr("aria-expanded",i),e.toggleClass("collapsed",!i).attr("aria-expanded",i)};var t=a.fn.collapse;a.fn.collapse=l,a.fn.collapse.Constructor=r,a.fn.collapse.noConflict=function(){return a.fn.collapse=t,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(t){var e=a(this);e.attr("data-target")||t.preventDefault();var i=n(e),o=i.data("bs.collapse")?"toggle":e.data();l.call(i,o)})}(jQuery),function(a){"use strict";var r='[data-toggle="dropdown"]',o=function(t){a(t).on("click.bs.dropdown",this.toggle)};function l(t){var e=t.attr("data-target");e||(e=(e=t.attr("href"))&&/#[A-Za-z]/.test(e)&&e.replace(/.*(?=#[^\s]*$)/,""));var i="#"!==e?a(document).find(e):null;return i&&i.length?i:t.parent()}function s(o){o&&3===o.which||(a(".dropdown-backdrop").remove(),a(r).each(function(){var t=a(this),e=l(t),i={relatedTarget:this};e.hasClass("open")&&(o&&"click"==o.type&&/input|textarea/i.test(o.target.tagName)&&a.contains(e[0],o.target)||(e.trigger(o=a.Event("hide.bs.dropdown",i)),o.isDefaultPrevented()||(t.attr("aria-expanded","false"),e.removeClass("open").trigger(a.Event("hidden.bs.dropdown",i)))))}))}o.VERSION="3.4.1",o.prototype.toggle=function(t){var e=a(this);if(!e.is(".disabled, :disabled")){var i=l(e),o=i.hasClass("open");if(s(),!o){"ontouchstart"in document.documentElement&&!i.closest(".navbar-nav").length&&a(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(a(this)).on("click",s);var n={relatedTarget:this};if(i.trigger(t=a.Event("show.bs.dropdown",n)),t.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),i.toggleClass("open").trigger(a.Event("shown.bs.dropdown",n))}return!1}},o.prototype.keydown=function(t){if(/(38|40|27|32)/.test(t.which)&&!/input|textarea/i.test(t.target.tagName)){var e=a(this);if(t.preventDefault(),t.stopPropagation(),!e.is(".disabled, :disabled")){var i=l(e),o=i.hasClass("open");if(!o&&27!=t.which||o&&27==t.which)return 27==t.which&&i.find(r).trigger("focus"),e.trigger("click");var n=i.find(".dropdown-menu li:not(.disabled):visible a");if(n.length){var s=n.index(t.target);38==t.which&&0<s&&s--,40==t.which&&s<n.length-1&&s++,~s||(s=0),n.eq(s).trigger("focus")}}}};var t=a.fn.dropdown;a.fn.dropdown=function e(i){return this.each(function(){var t=a(this),e=t.data("bs.dropdown");e||t.data("bs.dropdown",e=new o(this)),"string"==typeof i&&e[i].call(t)})},a.fn.dropdown.Constructor=o,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=t,this},a(document).on("click.bs.dropdown.data-api",s).on("click.bs.dropdown.data-api",".dropdown form",function(t){t.stopPropagation()}).on("click.bs.dropdown.data-api",r,o.prototype.toggle).on("keydown.bs.dropdown.data-api",r,o.prototype.keydown).on("keydown.bs.dropdown.data-api",".dropdown-menu",o.prototype.keydown)}(jQuery),function(a){"use strict";var s=function(t,e){this.options=e,this.$body=a(document.body),this.$element=a(t),this.$dialog=this.$element.find(".modal-dialog"),this.$backdrop=null,this.isShown=null,this.originalBodyPad=null,this.scrollbarWidth=0,this.ignoreBackdropClick=!1,this.fixedContent=".navbar-fixed-top, .navbar-fixed-bottom",this.options.remote&&this.$element.find(".modal-content").load(this.options.remote,a.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};function r(o,n){return this.each(function(){var t=a(this),e=t.data("bs.modal"),i=a.extend({},s.DEFAULTS,t.data(),"object"==typeof o&&o);e||t.data("bs.modal",e=new s(this,i)),"string"==typeof o?e[o](n):i.show&&e.show(n)})}s.VERSION="3.4.1",s.TRANSITION_DURATION=300,s.BACKDROP_TRANSITION_DURATION=150,s.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},s.prototype.toggle=function(t){return this.isShown?this.hide():this.show(t)},s.prototype.show=function(i){var o=this,t=a.Event("show.bs.modal",{relatedTarget:i});this.$element.trigger(t),this.isShown||t.isDefaultPrevented()||(this.isShown=!0,this.checkScrollbar(),this.setScrollbar(),this.$body.addClass("modal-open"),this.escape(),this.resize(),this.$element.on("click.dismiss.bs.modal",'[data-dismiss="modal"]',a.proxy(this.hide,this)),this.$dialog.on("mousedown.dismiss.bs.modal",function(){o.$element.one("mouseup.dismiss.bs.modal",function(t){a(t.target).is(o.$element)&&(o.ignoreBackdropClick=!0)})}),this.backdrop(function(){var t=a.support.transition&&o.$element.hasClass("fade");o.$element.parent().length||o.$element.appendTo(o.$body),o.$element.show().scrollTop(0),o.adjustDialog(),t&&o.$element[0].offsetWidth,o.$element.addClass("in"),o.enforceFocus();var e=a.Event("shown.bs.modal",{relatedTarget:i});t?o.$dialog.one("bsTransitionEnd",function(){o.$element.trigger("focus").trigger(e)}).emulateTransitionEnd(s.TRANSITION_DURATION):o.$element.trigger("focus").trigger(e)}))},s.prototype.hide=function(t){t&&t.preventDefault(),t=a.Event("hide.bs.modal"),this.$element.trigger(t),this.isShown&&!t.isDefaultPrevented()&&(this.isShown=!1,this.escape(),this.resize(),a(document).off("focusin.bs.modal"),this.$element.removeClass("in").off("click.dismiss.bs.modal").off("mouseup.dismiss.bs.modal"),this.$dialog.off("mousedown.dismiss.bs.modal"),a.support.transition&&this.$element.hasClass("fade")?this.$element.one("bsTransitionEnd",a.proxy(this.hideModal,this)).emulateTransitionEnd(s.TRANSITION_DURATION):this.hideModal())},s.prototype.enforceFocus=function(){a(document).off("focusin.bs.modal").on("focusin.bs.modal",a.proxy(function(t){document===t.target||this.$element[0]===t.target||this.$element.has(t.target).length||this.$element.trigger("focus")},this))},s.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keydown.dismiss.bs.modal",a.proxy(function(t){27==t.which&&this.hide()},this)):this.isShown||this.$element.off("keydown.dismiss.bs.modal")},s.prototype.resize=function(){this.isShown?a(window).on("resize.bs.modal",a.proxy(this.handleUpdate,this)):a(window).off("resize.bs.modal")},s.prototype.hideModal=function(){var t=this;this.$element.hide(),this.backdrop(function(){t.$body.removeClass("modal-open"),t.resetAdjustments(),t.resetScrollbar(),t.$element.trigger("hidden.bs.modal")})},s.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},s.prototype.backdrop=function(t){var e=this,i=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var o=a.support.transition&&i;if(this.$backdrop=a(document.createElement("div")).addClass("modal-backdrop "+i).appendTo(this.$body),this.$element.on("click.dismiss.bs.modal",a.proxy(function(t){this.ignoreBackdropClick?this.ignoreBackdropClick=!1:t.target===t.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus():this.hide())},this)),o&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!t)return;o?this.$backdrop.one("bsTransitionEnd",t).emulateTransitionEnd(s.BACKDROP_TRANSITION_DURATION):t()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("in");var n=function(){e.removeBackdrop(),t&&t()};a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one("bsTransitionEnd",n).emulateTransitionEnd(s.BACKDROP_TRANSITION_DURATION):n()}else t&&t()},s.prototype.handleUpdate=function(){this.adjustDialog()},s.prototype.adjustDialog=function(){var t=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&t?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!t?this.scrollbarWidth:""})},s.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},s.prototype.checkScrollbar=function(){var t=window.innerWidth;if(!t){var e=document.documentElement.getBoundingClientRect();t=e.right-Math.abs(e.left)}this.bodyIsOverflowing=document.body.clientWidth<t,this.scrollbarWidth=this.measureScrollbar()},s.prototype.setScrollbar=function(){var t=parseInt(this.$body.css("padding-right")||0,10);this.originalBodyPad=document.body.style.paddingRight||"";var n=this.scrollbarWidth;this.bodyIsOverflowing&&(this.$body.css("padding-right",t+n),a(this.fixedContent).each(function(t,e){var i=e.style.paddingRight,o=a(e).css("padding-right");a(e).data("padding-right",i).css("padding-right",parseFloat(o)+n+"px")}))},s.prototype.resetScrollbar=function(){this.$body.css("padding-right",this.originalBodyPad),a(this.fixedContent).each(function(t,e){var i=a(e).data("padding-right");a(e).removeData("padding-right"),e.style.paddingRight=i||""})},s.prototype.measureScrollbar=function(){var t=document.createElement("div");t.className="modal-scrollbar-measure",this.$body.append(t);var e=t.offsetWidth-t.clientWidth;return this.$body[0].removeChild(t),e};var t=a.fn.modal;a.fn.modal=r,a.fn.modal.Constructor=s,a.fn.modal.noConflict=function(){return a.fn.modal=t,this},a(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(t){var e=a(this),i=e.attr("href"),o=e.attr("data-target")||i&&i.replace(/.*(?=#[^\s]+$)/,""),n=a(document).find(o),s=n.data("bs.modal")?"toggle":a.extend({remote:!/#/.test(i)&&i},n.data(),e.data());e.is("a")&&t.preventDefault(),n.one("show.bs.modal",function(t){t.isDefaultPrevented()||n.one("hidden.bs.modal",function(){e.is(":visible")&&e.trigger("focus")})}),r.call(n,s,this)})}(jQuery),function(g){"use strict";var o=["sanitize","whiteList","sanitizeFn"],a=["background","cite","href","itemtype","longdesc","poster","src","xlink:href"],t={"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},r=/^(?:(?:https?|mailto|ftp|tel|file):|[^&:/?#]*(?:[/?#]|$))/gi,l=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[a-z0-9+/]+=*$/i;function u(t,e){var i=t.nodeName.toLowerCase();if(-1!==g.inArray(i,e))return-1===g.inArray(i,a)||Boolean(t.nodeValue.match(r)||t.nodeValue.match(l));for(var o=g(e).filter(function(t,e){return e instanceof RegExp}),n=0,s=o.length;n<s;n++)if(i.match(o[n]))return!0;return!1}function n(t,e,i){if(0===t.length)return t;if(i&&"function"==typeof i)return i(t);if(!document.implementation||!document.implementation.createHTMLDocument)return t;var o=document.implementation.createHTMLDocument("sanitization");o.body.innerHTML=t;for(var n=g.map(e,function(t,e){return e}),s=g(o.body).find("*"),a=0,r=s.length;a<r;a++){var l=s[a],h=l.nodeName.toLowerCase();if(-1!==g.inArray(h,n))for(var d=g.map(l.attributes,function(t){return t}),p=[].concat(e["*"]||[],e[h]||[]),c=0,f=d.length;c<f;c++)u(d[c],p)||l.removeAttribute(d[c].nodeName);else l.parentNode.removeChild(l)}return o.body.innerHTML}var m=function(t,e){this.type=null,this.options=null,this.enabled=null,this.timeout=null,this.hoverState=null,this.$element=null,this.inState=null,this.init("tooltip",t,e)};m.VERSION="3.4.1",m.TRANSITION_DURATION=150,m.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0},sanitize:!0,sanitizeFn:null,whiteList:t},m.prototype.init=function(t,e,i){if(this.enabled=!0,this.type=t,this.$element=g(e),this.options=this.getOptions(i),this.$viewport=this.options.viewport&&g(document).find(g.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var o=this.options.trigger.split(" "),n=o.length;n--;){var s=o[n];if("click"==s)this.$element.on("click."+this.type,this.options.selector,g.proxy(this.toggle,this));else if("manual"!=s){var a="hover"==s?"mouseenter":"focusin",r="hover"==s?"mouseleave":"focusout";this.$element.on(a+"."+this.type,this.options.selector,g.proxy(this.enter,this)),this.$element.on(r+"."+this.type,this.options.selector,g.proxy(this.leave,this))}}this.options.selector?this._options=g.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},m.prototype.getDefaults=function(){return m.DEFAULTS},m.prototype.getOptions=function(t){var e=this.$element.data();for(var i in e)e.hasOwnProperty(i)&&-1!==g.inArray(i,o)&&delete e[i];return(t=g.extend({},this.getDefaults(),e,t)).delay&&"number"==typeof t.delay&&(t.delay={show:t.delay,hide:t.delay}),t.sanitize&&(t.template=n(t.template,t.whiteList,t.sanitizeFn)),t},m.prototype.getDelegateOptions=function(){var i={},o=this.getDefaults();return this._options&&g.each(this._options,function(t,e){o[t]!=e&&(i[t]=e)}),i},m.prototype.enter=function(t){var e=t instanceof this.constructor?t:g(t.currentTarget).data("bs."+this.type);if(e||(e=new this.constructor(t.currentTarget,this.getDelegateOptions()),g(t.currentTarget).data("bs."+this.type,e)),t instanceof g.Event&&(e.inState["focusin"==t.type?"focus":"hover"]=!0),e.tip().hasClass("in")||"in"==e.hoverState)e.hoverState="in";else{if(clearTimeout(e.timeout),e.hoverState="in",!e.options.delay||!e.options.delay.show)return e.show();e.timeout=setTimeout(function(){"in"==e.hoverState&&e.show()},e.options.delay.show)}},m.prototype.isInStateTrue=function(){for(var t in this.inState)if(this.inState[t])return!0;return!1},m.prototype.leave=function(t){var e=t instanceof this.constructor?t:g(t.currentTarget).data("bs."+this.type);if(e||(e=new this.constructor(t.currentTarget,this.getDelegateOptions()),g(t.currentTarget).data("bs."+this.type,e)),t instanceof g.Event&&(e.inState["focusout"==t.type?"focus":"hover"]=!1),!e.isInStateTrue()){if(clearTimeout(e.timeout),e.hoverState="out",!e.options.delay||!e.options.delay.hide)return e.hide();e.timeout=setTimeout(function(){"out"==e.hoverState&&e.hide()},e.options.delay.hide)}},m.prototype.show=function(){var t=g.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(t);var e=g.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(t.isDefaultPrevented()||!e)return;var i=this,o=this.tip(),n=this.getUID(this.type);this.setContent(),o.attr("id",n),this.$element.attr("aria-describedby",n),this.options.animation&&o.addClass("fade");var s="function"==typeof this.options.placement?this.options.placement.call(this,o[0],this.$element[0]):this.options.placement,a=/\s?auto?\s?/i,r=a.test(s);r&&(s=s.replace(a,"")||"top"),o.detach().css({top:0,left:0,display:"block"}).addClass(s).data("bs."+this.type,this),this.options.container?o.appendTo(g(document).find(this.options.container)):o.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var l=this.getPosition(),h=o[0].offsetWidth,d=o[0].offsetHeight;if(r){var p=s,c=this.getPosition(this.$viewport);s="bottom"==s&&l.bottom+d>c.bottom?"top":"top"==s&&l.top-d<c.top?"bottom":"right"==s&&l.right+h>c.width?"left":"left"==s&&l.left-h<c.left?"right":s,o.removeClass(p).addClass(s)}var f=this.getCalculatedOffset(s,l,h,d);this.applyPlacement(f,s);var u=function(){var t=i.hoverState;i.$element.trigger("shown.bs."+i.type),i.hoverState=null,"out"==t&&i.leave(i)};g.support.transition&&this.$tip.hasClass("fade")?o.one("bsTransitionEnd",u).emulateTransitionEnd(m.TRANSITION_DURATION):u()}},m.prototype.applyPlacement=function(t,e){var i=this.tip(),o=i[0].offsetWidth,n=i[0].offsetHeight,s=parseInt(i.css("margin-top"),10),a=parseInt(i.css("margin-left"),10);isNaN(s)&&(s=0),isNaN(a)&&(a=0),t.top+=s,t.left+=a,g.offset.setOffset(i[0],g.extend({using:function(t){i.css({top:Math.round(t.top),left:Math.round(t.left)})}},t),0),i.addClass("in");var r=i[0].offsetWidth,l=i[0].offsetHeight;"top"==e&&l!=n&&(t.top=t.top+n-l);var h=this.getViewportAdjustedDelta(e,t,r,l);h.left?t.left+=h.left:t.top+=h.top;var d=/top|bottom/.test(e),p=d?2*h.left-o+r:2*h.top-n+l,c=d?"offsetWidth":"offsetHeight";i.offset(t),this.replaceArrow(p,i[0][c],d)},m.prototype.replaceArrow=function(t,e,i){this.arrow().css(i?"left":"top",50*(1-t/e)+"%").css(i?"top":"left","")},m.prototype.setContent=function(){var t=this.tip(),e=this.getTitle();this.options.html?(this.options.sanitize&&(e=n(e,this.options.whiteList,this.options.sanitizeFn)),t.find(".tooltip-inner").html(e)):t.find(".tooltip-inner").text(e),t.removeClass("fade in top bottom left right")},m.prototype.hide=function(t){var e=this,i=g(this.$tip),o=g.Event("hide.bs."+this.type);function n(){"in"!=e.hoverState&&i.detach(),e.$element&&e.$element.removeAttr("aria-describedby").trigger("hidden.bs."+e.type),t&&t()}if(this.$element.trigger(o),!o.isDefaultPrevented())return i.removeClass("in"),g.support.transition&&i.hasClass("fade")?i.one("bsTransitionEnd",n).emulateTransitionEnd(m.TRANSITION_DURATION):n(),this.hoverState=null,this},m.prototype.fixTitle=function(){var t=this.$element;(t.attr("title")||"string"!=typeof t.attr("data-original-title"))&&t.attr("data-original-title",t.attr("title")||"").attr("title","")},m.prototype.hasContent=function(){return this.getTitle()},m.prototype.getPosition=function(t){var e=(t=t||this.$element)[0],i="BODY"==e.tagName,o=e.getBoundingClientRect();null==o.width&&(o=g.extend({},o,{width:o.right-o.left,height:o.bottom-o.top}));var n=window.SVGElement&&e instanceof window.SVGElement,s=i?{top:0,left:0}:n?null:t.offset(),a={scroll:i?document.documentElement.scrollTop||document.body.scrollTop:t.scrollTop()},r=i?{width:g(window).width(),height:g(window).height()}:null;return g.extend({},o,a,r,s)},m.prototype.getCalculatedOffset=function(t,e,i,o){return"bottom"==t?{top:e.top+e.height,left:e.left+e.width/2-i/2}:"top"==t?{top:e.top-o,left:e.left+e.width/2-i/2}:"left"==t?{top:e.top+e.height/2-o/2,left:e.left-i}:{top:e.top+e.height/2-o/2,left:e.left+e.width}},m.prototype.getViewportAdjustedDelta=function(t,e,i,o){var n={top:0,left:0};if(!this.$viewport)return n;var s=this.options.viewport&&this.options.viewport.padding||0,a=this.getPosition(this.$viewport);if(/right|left/.test(t)){var r=e.top-s-a.scroll,l=e.top+s-a.scroll+o;r<a.top?n.top=a.top-r:l>a.top+a.height&&(n.top=a.top+a.height-l)}else{var h=e.left-s,d=e.left+s+i;h<a.left?n.left=a.left-h:d>a.right&&(n.left=a.left+a.width-d)}return n},m.prototype.getTitle=function(){var t=this.$element,e=this.options;return t.attr("data-original-title")||("function"==typeof e.title?e.title.call(t[0]):e.title)},m.prototype.getUID=function(t){for(;t+=~~(1e6*Math.random()),document.getElementById(t););return t},m.prototype.tip=function(){if(!this.$tip&&(this.$tip=g(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},m.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},m.prototype.enable=function(){this.enabled=!0},m.prototype.disable=function(){this.enabled=!1},m.prototype.toggleEnabled=function(){this.enabled=!this.enabled},m.prototype.toggle=function(t){var e=this;t&&((e=g(t.currentTarget).data("bs."+this.type))||(e=new this.constructor(t.currentTarget,this.getDelegateOptions()),g(t.currentTarget).data("bs."+this.type,e))),t?(e.inState.click=!e.inState.click,e.isInStateTrue()?e.enter(e):e.leave(e)):e.tip().hasClass("in")?e.leave(e):e.enter(e)},m.prototype.destroy=function(){var t=this;clearTimeout(this.timeout),this.hide(function(){t.$element.off("."+t.type).removeData("bs."+t.type),t.$tip&&t.$tip.detach(),t.$tip=null,t.$arrow=null,t.$viewport=null,t.$element=null})},m.prototype.sanitizeHtml=function(t){return n(t,this.options.whiteList,this.options.sanitizeFn)};var e=g.fn.tooltip;g.fn.tooltip=function i(o){return this.each(function(){var t=g(this),e=t.data("bs.tooltip"),i="object"==typeof o&&o;!e&&/destroy|hide/.test(o)||(e||t.data("bs.tooltip",e=new m(this,i)),"string"==typeof o&&e[o]())})},g.fn.tooltip.Constructor=m,g.fn.tooltip.noConflict=function(){return g.fn.tooltip=e,this}}(jQuery),function(n){"use strict";var s=function(t,e){this.init("popover",t,e)};if(!n.fn.tooltip)throw new Error("Popover requires tooltip.js");s.VERSION="3.4.1",s.DEFAULTS=n.extend({},n.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),((s.prototype=n.extend({},n.fn.tooltip.Constructor.prototype)).constructor=s).prototype.getDefaults=function(){return s.DEFAULTS},s.prototype.setContent=function(){var t=this.tip(),e=this.getTitle(),i=this.getContent();if(this.options.html){var o=typeof i;this.options.sanitize&&(e=this.sanitizeHtml(e),"string"===o&&(i=this.sanitizeHtml(i))),t.find(".popover-title").html(e),t.find(".popover-content").children().detach().end()["string"===o?"html":"append"](i)}else t.find(".popover-title").text(e),t.find(".popover-content").children().detach().end().text(i);t.removeClass("fade top bottom left right in"),t.find(".popover-title").html()||t.find(".popover-title").hide()},s.prototype.hasContent=function(){return this.getTitle()||this.getContent()},s.prototype.getContent=function(){var t=this.$element,e=this.options;return t.attr("data-content")||("function"==typeof e.content?e.content.call(t[0]):e.content)},s.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var t=n.fn.popover;n.fn.popover=function e(o){return this.each(function(){var t=n(this),e=t.data("bs.popover"),i="object"==typeof o&&o;!e&&/destroy|hide/.test(o)||(e||t.data("bs.popover",e=new s(this,i)),"string"==typeof o&&e[o]())})},n.fn.popover.Constructor=s,n.fn.popover.noConflict=function(){return n.fn.popover=t,this}}(jQuery),function(s){"use strict";function n(t,e){this.$body=s(document.body),this.$scrollElement=s(t).is(document.body)?s(window):s(t),this.options=s.extend({},n.DEFAULTS,e),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",s.proxy(this.process,this)),this.refresh(),this.process()}function e(o){return this.each(function(){var t=s(this),e=t.data("bs.scrollspy"),i="object"==typeof o&&o;e||t.data("bs.scrollspy",e=new n(this,i)),"string"==typeof o&&e[o]()})}n.VERSION="3.4.1",n.DEFAULTS={offset:10},n.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},n.prototype.refresh=function(){var t=this,o="offset",n=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),s.isWindow(this.$scrollElement[0])||(o="position",n=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var t=s(this),e=t.data("target")||t.attr("href"),i=/^#./.test(e)&&s(e);return i&&i.length&&i.is(":visible")&&[[i[o]().top+n,e]]||null}).sort(function(t,e){return t[0]-e[0]}).each(function(){t.offsets.push(this[0]),t.targets.push(this[1])})},n.prototype.process=function(){var t,e=this.$scrollElement.scrollTop()+this.options.offset,i=this.getScrollHeight(),o=this.options.offset+i-this.$scrollElement.height(),n=this.offsets,s=this.targets,a=this.activeTarget;if(this.scrollHeight!=i&&this.refresh(),o<=e)return a!=(t=s[s.length-1])&&this.activate(t);if(a&&e<n[0])return this.activeTarget=null,this.clear();for(t=n.length;t--;)a!=s[t]&&e>=n[t]&&(n[t+1]===undefined||e<n[t+1])&&this.activate(s[t])},n.prototype.activate=function(t){this.activeTarget=t,this.clear();var e=this.selector+'[data-target="'+t+'"],'+this.selector+'[href="'+t+'"]',i=s(e).parents("li").addClass("active");i.parent(".dropdown-menu").length&&(i=i.closest("li.dropdown").addClass("active")),i.trigger("activate.bs.scrollspy")},n.prototype.clear=function(){s(this.selector).parentsUntil(this.options.target,".active").removeClass("active")};var t=s.fn.scrollspy;s.fn.scrollspy=e,s.fn.scrollspy.Constructor=n,s.fn.scrollspy.noConflict=function(){return s.fn.scrollspy=t,this},s(window).on("load.bs.scrollspy.data-api",function(){s('[data-spy="scroll"]').each(function(){var t=s(this);e.call(t,t.data())})})}(jQuery),function(r){"use strict";var a=function(t){this.element=r(t)};function e(i){return this.each(function(){var t=r(this),e=t.data("bs.tab");e||t.data("bs.tab",e=new a(this)),"string"==typeof i&&e[i]()})}a.VERSION="3.4.1",a.TRANSITION_DURATION=150,a.prototype.show=function(){var t=this.element,e=t.closest("ul:not(.dropdown-menu)"),i=t.data("target");if(i||(i=(i=t.attr("href"))&&i.replace(/.*(?=#[^\s]*$)/,"")),!t.parent("li").hasClass("active")){var o=e.find(".active:last a"),n=r.Event("hide.bs.tab",{relatedTarget:t[0]}),s=r.Event("show.bs.tab",{relatedTarget:o[0]});if(o.trigger(n),t.trigger(s),!s.isDefaultPrevented()&&!n.isDefaultPrevented()){var a=r(document).find(i);this.activate(t.closest("li"),e),this.activate(a,a.parent(),function(){o.trigger({type:"hidden.bs.tab",relatedTarget:t[0]}),t.trigger({type:"shown.bs.tab",relatedTarget:o[0]})})}}},a.prototype.activate=function(t,e,i){var o=e.find("> .active"),n=i&&r.support.transition&&(o.length&&o.hasClass("fade")||!!e.find("> .fade").length);function s(){o.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),t.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),n?(t[0].offsetWidth,t.addClass("in")):t.removeClass("fade"),t.parent(".dropdown-menu").length&&t.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),i&&i()}o.length&&n?o.one("bsTransitionEnd",s).emulateTransitionEnd(a.TRANSITION_DURATION):s(),o.removeClass("in")};var t=r.fn.tab;r.fn.tab=e,r.fn.tab.Constructor=a,r.fn.tab.noConflict=function(){return r.fn.tab=t,this};var i=function(t){t.preventDefault(),e.call(r(this),"show")};r(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',i).on("click.bs.tab.data-api",'[data-toggle="pill"]',i)}(jQuery),function(l){"use strict";var h=function(t,e){this.options=l.extend({},h.DEFAULTS,e);var i=this.options.target===h.DEFAULTS.target?l(this.options.target):l(document).find(this.options.target);this.$target=i.on("scroll.bs.affix.data-api",l.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",l.proxy(this.checkPositionWithEventLoop,this)),this.$element=l(t),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};function i(o){return this.each(function(){var t=l(this),e=t.data("bs.affix"),i="object"==typeof o&&o;e||t.data("bs.affix",e=new h(this,i)),"string"==typeof o&&e[o]()})}h.VERSION="3.4.1",h.RESET="affix affix-top affix-bottom",h.DEFAULTS={offset:0,target:window},h.prototype.getState=function(t,e,i,o){var n=this.$target.scrollTop(),s=this.$element.offset(),a=this.$target.height();if(null!=i&&"top"==this.affixed)return n<i&&"top";if("bottom"==this.affixed)return null!=i?!(n+this.unpin<=s.top)&&"bottom":!(n+a<=t-o)&&"bottom";var r=null==this.affixed,l=r?n:s.top;return null!=i&&n<=i?"top":null!=o&&t-o<=l+(r?a:e)&&"bottom"},h.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(h.RESET).addClass("affix");var t=this.$target.scrollTop(),e=this.$element.offset();return this.pinnedOffset=e.top-t},h.prototype.checkPositionWithEventLoop=function(){setTimeout(l.proxy(this.checkPosition,this),1)},h.prototype.checkPosition=function(){if(this.$element.is(":visible")){var t=this.$element.height(),e=this.options.offset,i=e.top,o=e.bottom,n=Math.max(l(document).height(),l(document.body).height());"object"!=typeof e&&(o=i=e),"function"==typeof i&&(i=e.top(this.$element)),"function"==typeof o&&(o=e.bottom(this.$element));var s=this.getState(n,t,i,o);if(this.affixed!=s){null!=this.unpin&&this.$element.css("top","");var a="affix"+(s?"-"+s:""),r=l.Event(a+".bs.affix");if(this.$element.trigger(r),r.isDefaultPrevented())return;this.affixed=s,this.unpin="bottom"==s?this.getPinnedOffset():null,this.$element.removeClass(h.RESET).addClass(a).trigger(a.replace("affix","affixed")+".bs.affix")}"bottom"==s&&this.$element.offset({top:n-t-o})}};var t=l.fn.affix;l.fn.affix=i,l.fn.affix.Constructor=h,l.fn.affix.noConflict=function(){return l.fn.affix=t,this},l(window).on("load",function(){l('[data-spy="affix"]').each(function(){var t=l(this),e=t.data();e.offset=e.offset||{},null!=e.offsetBottom&&(e.offset.bottom=e.offsetBottom),null!=e.offsetTop&&(e.offset.top=e.offsetTop),i.call(t,e)})})}(jQuery);
  11. define("bootstrap", ["jquery"], function(){});
  12. require.config({
  13. urlArgs: "v=" + requirejs.s.contexts._.config.config.site.version,
  14. packages: [{
  15. name: 'moment',
  16. location: '../libs/moment',
  17. main: 'moment'
  18. }
  19. ],
  20. //在打包压缩时将会把include中的模块合并到主文件中
  21. include: ['css', 'layer', 'toastr', 'fast', 'backend', 'backend-init', 'table', 'form', 'dragsort', 'drag', 'drop', 'addtabs', 'selectpage'],
  22. paths: {
  23. 'lang': "empty:",
  24. 'form': 'require-form',
  25. 'table': 'require-table',
  26. 'upload': 'require-upload',
  27. 'validator': 'require-validator',
  28. 'drag': 'jquery.drag.min',
  29. 'drop': 'jquery.drop.min',
  30. 'echarts': 'echarts.min',
  31. 'echarts-theme': 'echarts-theme',
  32. 'adminlte': 'adminlte',
  33. 'bootstrap-table-commonsearch': 'bootstrap-table-commonsearch',
  34. 'bootstrap-table-template': 'bootstrap-table-template',
  35. //
  36. // 以下的包从bower的libs目录加载
  37. 'jquery': '../libs/jquery/dist/jquery.min',
  38. 'bootstrap': '../libs/bootstrap/dist/js/bootstrap.min',
  39. 'bootstrap-datetimepicker': '../libs/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min',
  40. 'bootstrap-daterangepicker': '../libs/bootstrap-daterangepicker/daterangepicker',
  41. 'bootstrap-select': '../libs/bootstrap-select/dist/js/bootstrap-select.min',
  42. 'bootstrap-select-lang': '../libs/bootstrap-select/dist/js/i18n/defaults-zh_CN',
  43. 'bootstrap-table': '../libs/bootstrap-table/dist/bootstrap-table.min',
  44. 'bootstrap-table-export': '../libs/bootstrap-table/dist/extensions/export/bootstrap-table-export.min',
  45. 'bootstrap-table-mobile': '../libs/bootstrap-table/dist/extensions/mobile/bootstrap-table-mobile',
  46. 'bootstrap-table-lang': '../libs/bootstrap-table/dist/locale/bootstrap-table-zh-CN',
  47. 'bootstrap-slider': '../libs/bootstrap-slider/bootstrap-slider',
  48. 'tableexport': '../libs/tableExport.jquery.plugin/tableExport.min',
  49. 'dragsort': '../libs/fastadmin-dragsort/jquery.dragsort',
  50. 'sortable': '../libs/Sortable/Sortable.min',
  51. 'addtabs': '../libs/fastadmin-addtabs/jquery.addtabs',
  52. 'slimscroll': '../libs/jquery-slimscroll/jquery.slimscroll',
  53. 'validator-core': '../libs/nice-validator/dist/jquery.validator',
  54. 'validator-lang': '../libs/nice-validator/dist/local/zh-CN',
  55. 'plupload': '../libs/plupload/js/plupload.min',
  56. 'toastr': '../libs/toastr/toastr',
  57. 'jstree': '../libs/jstree/dist/jstree.min',
  58. 'layer': '../libs/fastadmin-layer/dist/layer',
  59. 'cookie': '../libs/jquery.cookie/jquery.cookie',
  60. 'cxselect': '../libs/fastadmin-cxselect/js/jquery.cxselect',
  61. 'template': '../libs/art-template/dist/template-native',
  62. 'selectpage': '../libs/fastadmin-selectpage/selectpage',
  63. 'citypicker': '../libs/fastadmin-citypicker/dist/js/city-picker.min',
  64. 'citypicker-data': '../libs/fastadmin-citypicker/dist/js/city-picker.data',
  65. },
  66. // shim依赖配置
  67. shim: {
  68. 'addons': ['backend'],
  69. 'bootstrap': ['jquery'],
  70. 'bootstrap-table': {
  71. deps: [
  72. 'bootstrap',
  73. // 'css!../libs/bootstrap-table/dist/bootstrap-table.min.css'
  74. ],
  75. exports: '$.fn.bootstrapTable'
  76. },
  77. 'bootstrap-table-lang': {
  78. deps: ['bootstrap-table'],
  79. exports: '$.fn.bootstrapTable.defaults'
  80. },
  81. 'bootstrap-table-export': {
  82. deps: ['bootstrap-table', 'tableexport'],
  83. exports: '$.fn.bootstrapTable.defaults'
  84. },
  85. 'bootstrap-table-mobile': {
  86. deps: ['bootstrap-table'],
  87. exports: '$.fn.bootstrapTable.defaults'
  88. },
  89. 'bootstrap-table-advancedsearch': {
  90. deps: ['bootstrap-table'],
  91. exports: '$.fn.bootstrapTable.defaults'
  92. },
  93. 'bootstrap-table-commonsearch': {
  94. deps: ['bootstrap-table'],
  95. exports: '$.fn.bootstrapTable.defaults'
  96. },
  97. 'bootstrap-table-template': {
  98. deps: ['bootstrap-table', 'template'],
  99. exports: '$.fn.bootstrapTable.defaults'
  100. },
  101. 'tableexport': {
  102. deps: ['jquery'],
  103. exports: '$.fn.extend'
  104. },
  105. 'slimscroll': {
  106. deps: ['jquery'],
  107. exports: '$.fn.extend'
  108. },
  109. 'adminlte': {
  110. deps: ['bootstrap', 'slimscroll'],
  111. exports: '$.AdminLTE'
  112. },
  113. 'bootstrap-datetimepicker': [
  114. 'moment/locale/zh-cn',
  115. // 'css!../libs/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.css',
  116. ],
  117. // 'bootstrap-select': ['css!../libs/bootstrap-select/dist/css/bootstrap-select.min.css',],
  118. 'bootstrap-select-lang': ['bootstrap-select'],
  119. // 'toastr': ['css!../libs/toastr/toastr.min.css'],
  120. 'jstree': ['css!../libs/jstree/dist/themes/default/style.css',],
  121. 'plupload': {
  122. deps: ['../libs/plupload/js/moxie.min'],
  123. exports: "plupload"
  124. },
  125. // 'layer': ['css!../libs/fastadmin-layer/dist/theme/default/layer.css'],
  126. // 'validator-core': ['css!../libs/nice-validator/dist/jquery.validator.css'],
  127. 'validator-lang': ['validator-core'],
  128. // 'selectpage': ['css!../libs/fastadmin-selectpage/selectpage.css'],
  129. 'citypicker': ['citypicker-data', 'css!../libs/fastadmin-citypicker/dist/css/city-picker.css']
  130. },
  131. baseUrl: requirejs.s.contexts._.config.config.site.cdnurl + '/assets/js/', //资源基础路径
  132. map: {
  133. '*': {
  134. 'css': '../libs/require-css/css.min'
  135. }
  136. },
  137. waitSeconds: 30,
  138. charset: 'utf-8' // 文件编码
  139. });
  140. require(['jquery', 'bootstrap'], function ($, undefined) {
  141. //初始配置
  142. var Config = requirejs.s.contexts._.config.config;
  143. //将Config渲染到全局
  144. window.Config = Config;
  145. // 配置语言包的路径
  146. var paths = {};
  147. paths['lang'] = Config.moduleurl + '/ajax/lang?callback=define&controllername=' + Config.controllername;
  148. // 避免目录冲突
  149. paths['backend/'] = 'backend/';
  150. require.config({paths: paths});
  151. // 初始化
  152. $(function () {
  153. require(['fast'], function (Fast) {
  154. require(['backend', 'backend-init', 'addons'], function (Backend, undefined, Addons) {
  155. //加载相应模块
  156. if (Config.jsname) {
  157. require([Config.jsname], function (Controller) {
  158. Controller[Config.actionname] != undefined && Controller[Config.actionname]();
  159. }, function (e) {
  160. console.error(e);
  161. // 这里可捕获模块加载的错误
  162. });
  163. }
  164. });
  165. });
  166. });
  167. });
  168. define("require-backend", function(){});
  169. define('../libs/require-css/css.min',[],function(){if("undefined"==typeof window)return{load:function(a,b,c){c()}};var a=document.getElementsByTagName("head")[0],b=window.navigator.userAgent.match(/Trident\/([^ ;]*)|AppleWebKit\/([^ ;]*)|Opera\/([^ ;]*)|rv\:([^ ;]*)(.*?)Gecko\/([^ ;]*)|MSIE\s([^ ;]*)|AndroidWebKit\/([^ ;]*)/)||0,c=!1,d=!0;b[1]||b[7]?c=parseInt(b[1])<6||parseInt(b[7])<=9:b[2]||b[8]?d=!1:b[4]&&(c=parseInt(b[4])<18);var e={};e.pluginBuilder="./css-builder";var f,g,h,i=function(){f=document.createElement("style"),a.appendChild(f),g=f.styleSheet||f.sheet},j=0,k=[],l=function(a){g.addImport(a),f.onload=function(){m()},j++,31==j&&(i(),j=0)},m=function(){h();var a=k.shift();return a?(h=a[1],void l(a[0])):void(h=null)},n=function(a,b){if(g&&g.addImport||i(),g&&g.addImport)h?k.push([a,b]):(l(a),h=b);else{f.textContent='@import "'+a+'";';var c=setInterval(function(){try{f.sheet.cssRules,clearInterval(c),b()}catch(a){}},10)}},o=function(b,c){var e=document.createElement("link");if(e.type="text/css",e.rel="stylesheet",d)e.onload=function(){e.onload=function(){},setTimeout(c,7)};else var f=setInterval(function(){for(var a=0;a<document.styleSheets.length;a++){var b=document.styleSheets[a];if(b.href==e.href)return clearInterval(f),c()}},10);e.href=b,a.appendChild(e)};return e.normalize=function(a,b){return".css"==a.substr(a.length-4,4)&&(a=a.substr(0,a.length-4)),b(a)},e.load=function(a,b,d,e){(c?n:o)(b.toUrl(a+".css"),d)},e});
  170. /*! layer-v3.1.1 Web弹层组件 MIT License http://layer.layui.com/ By 贤心 */
  171. ;!function(e,t){"use strict";var i,n,a=e.layui&&layui.define,o={getPath:function(){var e=document.currentScript?document.currentScript.src:function(){for(var e,t=document.scripts,i=t.length-1,n=i;n>0;n--)if("interactive"===t[n].readyState){e=t[n].src;break}return e||t[i].src}();return e.substring(0,e.lastIndexOf("/")+1)}(),config:{},end:{},minIndex:0,minLeft:[],btn:["&#x786E;&#x5B9A;","&#x53D6;&#x6D88;"],type:["dialog","page","iframe","loading","tips"],getStyle:function(t,i){var n=t.currentStyle?t.currentStyle:e.getComputedStyle(t,null);return n[n.getPropertyValue?"getPropertyValue":"getAttribute"](i)},link:function(t,i,n){if(r.path){var a=document.getElementsByTagName("head")[0],s=document.createElement("link");"string"==typeof i&&(n=i);var l=(n||t).replace(/\.|\//g,""),f="layuicss-"+l,c=0;s.rel="stylesheet",s.href=r.path+t,s.id=f,document.getElementById(f)||a.appendChild(s),"function"==typeof i&&!function u(){return++c>80?e.console&&console.error("layer.css: Invalid"):void(1989===parseInt(o.getStyle(document.getElementById(f),"width"))?i():setTimeout(u,100))}()}}},r={v:"3.1.1",ie:function(){var t=navigator.userAgent.toLowerCase();return!!(e.ActiveXObject||"ActiveXObject"in e)&&((t.match(/msie\s(\d+)/)||[])[1]||"11")}(),index:e.layer&&e.layer.v?1e5:0,path:o.getPath,config:function(e,t){return e=e||{},f=r.cache=o.config=i.extend({},o.config,e),r.path=o.config.path||r.path,"string"==typeof e.extend&&(e.extend=[e.extend]),o.config.path&&r.ready(),e.extend?(a?layui.addcss("modules/layer/"+e.extend):o.link("theme/"+e.extend),this):this},ready:function(e){var t="layer",i="",n=(a?"modules/layer/":"theme/")+"default/layer.css?v="+r.v+i;return a?layui.addcss(n,e,t):o.link(n,e,t),this},alert:function(e,t,n){var a="function"==typeof t;return a&&(n=t),r.open(i.extend({content:e,yes:n},a?{}:t))},confirm:function(e,t,n,a){var s="function"==typeof t;return s&&(a=n,n=t),r.open(i.extend({content:e,btn:o.btn,yes:n,btn2:a},s?{}:t))},msg:function(e,n,a){var s="function"==typeof n,f=o.config.skin,c=(f?f+" "+f+"-msg":"")||"layui-layer-msg",u=l.anim.length-1;return s&&(a=n),r.open(i.extend({content:e,time:3e3,shade:!1,skin:c,title:!1,closeBtn:!1,btn:!1,resize:!1,end:a},s&&!o.config.skin?{skin:c+" layui-layer-hui",anim:u}:function(){return n=n||{},n.icon!==-1&&n.icon!==t||(n.skin=c+" "+(n.skin||"layui-layer-hui")),n}()))},load:function(e,t){return r.open(i.extend({type:3,icon:e||0,resize:!1,shade:.01},t))},tips:function(e,t,n){return r.open(i.extend({type:4,content:[e,t],closeBtn:!1,time:3e3,shade:!1,resize:!1,fixed:!1,maxWidth:210},n))}},s=function(e){var t=this;t.index=++r.index,t.config=i.extend({},t.config,o.config,e),document.body?t.creat():setTimeout(function(){t.creat()},30)};s.pt=s.prototype;var l=["layui-layer",".layui-layer-title",".layui-layer-main",".layui-layer-dialog","layui-layer-iframe","layui-layer-content","layui-layer-btn","layui-layer-close"];l.anim=["layer-anim-00","layer-anim-01","layer-anim-02","layer-anim-03","layer-anim-04","layer-anim-05","layer-anim-06"],s.pt.config={type:0,shade:.3,fixed:!0,move:l[1],title:"&#x4FE1;&#x606F;",offset:"auto",area:"auto",closeBtn:1,time:0,zIndex:19891014,maxWidth:360,anim:0,isOutAnim:!0,icon:-1,moveType:1,resize:!0,scrollbar:!0,tips:2},s.pt.vessel=function(e,t){var n=this,a=n.index,r=n.config,s=r.zIndex+a,f="object"==typeof r.title,c=r.maxmin&&(1===r.type||2===r.type),u=r.title?'<div class="layui-layer-title" style="'+(f?r.title[1]:"")+'">'+(f?r.title[0]:r.title)+"</div>":"";return r.zIndex=s,t([r.shade?'<div class="layui-layer-shade" id="layui-layer-shade'+a+'" times="'+a+'" style="'+("z-index:"+(s-1)+"; ")+'"></div>':"",'<div class="'+l[0]+(" layui-layer-"+o.type[r.type])+(0!=r.type&&2!=r.type||r.shade?"":" layui-layer-border")+" "+(r.skin||"")+'" id="'+l[0]+a+'" type="'+o.type[r.type]+'" times="'+a+'" showtime="'+r.time+'" conType="'+(e?"object":"string")+'" style="z-index: '+s+"; width:"+r.area[0]+";height:"+r.area[1]+(r.fixed?"":";position:absolute;")+'">'+(e&&2!=r.type?"":u)+'<div id="'+(r.id||"")+'" class="layui-layer-content'+(0==r.type&&r.icon!==-1?" layui-layer-padding":"")+(3==r.type?" layui-layer-loading"+r.icon:"")+'">'+(0==r.type&&r.icon!==-1?'<i class="layui-layer-ico layui-layer-ico'+r.icon+'"></i>':"")+(1==r.type&&e?"":r.content||"")+'</div><span class="layui-layer-setwin">'+function(){var e=c?'<a class="layui-layer-min" href="javascript:;"><cite></cite></a><a class="layui-layer-ico layui-layer-max" href="javascript:;"></a>':"";return r.closeBtn&&(e+='<a class="layui-layer-ico '+l[7]+" "+l[7]+(r.title?r.closeBtn:4==r.type?"1":"2")+'" href="javascript:;"></a>'),e}()+"</span>"+(r.btn?function(){var e="";"string"==typeof r.btn&&(r.btn=[r.btn]);for(var t=0,i=r.btn.length;t<i;t++)e+='<a class="'+l[6]+t+'">'+r.btn[t]+"</a>";return'<div class="'+l[6]+" layui-layer-btn-"+(r.btnAlign||"")+'">'+e+"</div>"}():"")+(r.resize?'<span class="layui-layer-resize"></span>':"")+"</div>"],u,i('<div class="layui-layer-move"></div>')),n},s.pt.creat=function(){var e=this,t=e.config,a=e.index,s=t.content,f="object"==typeof s,c=i("body");if(!t.id||!i("#"+t.id)[0]){switch("string"==typeof t.area&&(t.area="auto"===t.area?["",""]:[t.area,""]),t.shift&&(t.anim=t.shift),6==r.ie&&(t.fixed=!1),t.type){case 0:t.btn="btn"in t?t.btn:o.btn[0],r.closeAll("dialog");break;case 2:var s=t.content=f?t.content:[t.content||"http://layer.layui.com","auto"];t.content='<iframe scrolling="'+(t.content[1]||"auto")+'" allowtransparency="true" id="'+l[4]+a+'" name="'+l[4]+a+'" onload="this.className=\'\';" class="layui-layer-load" frameborder="0" src="'+t.content[0]+'"></iframe>';break;case 3:delete t.title,delete t.closeBtn,t.icon===-1&&0===t.icon,r.closeAll("loading");break;case 4:f||(t.content=[t.content,"body"]),t.follow=t.content[1],t.content=t.content[0]+'<i class="layui-layer-TipsG"></i>',delete t.title,t.tips="object"==typeof t.tips?t.tips:[t.tips,!0],t.tipsMore||r.closeAll("tips")}if(e.vessel(f,function(n,r,u){c.append(n[0]),f?function(){2==t.type||4==t.type?function(){i("body").append(n[1])}():function(){s.parents("."+l[0])[0]||(s.data("display",s.css("display")).show().addClass("layui-layer-wrap").wrap(n[1]),i("#"+l[0]+a).find("."+l[5]).before(r))}()}():c.append(n[1]),i(".layui-layer-move")[0]||c.append(o.moveElem=u),e.layero=i("#"+l[0]+a),t.scrollbar||l.html.css("overflow","hidden").attr("layer-full",a)}).auto(a),i("#layui-layer-shade"+e.index).css({"background-color":t.shade[1]||"#000",opacity:t.shade[0]||t.shade}),2==t.type&&6==r.ie&&e.layero.find("iframe").attr("src",s[0]),4==t.type?e.tips():e.offset(),t.fixed&&n.on("resize",function(){e.offset(),(/^\d+%$/.test(t.area[0])||/^\d+%$/.test(t.area[1]))&&e.auto(a),4==t.type&&e.tips()}),t.time<=0||setTimeout(function(){r.close(e.index)},t.time),e.move().callback(),l.anim[t.anim]){var u="layer-anim "+l.anim[t.anim];e.layero.addClass(u).one("webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend",function(){i(this).removeClass(u)})}t.isOutAnim&&e.layero.data("isOutAnim",!0)}},s.pt.auto=function(e){var t=this,a=t.config,o=i("#"+l[0]+e);""===a.area[0]&&a.maxWidth>0&&(r.ie&&r.ie<8&&a.btn&&o.width(o.innerWidth()),o.outerWidth()>a.maxWidth&&o.width(a.maxWidth));var s=[o.innerWidth(),o.innerHeight()],f=o.find(l[1]).outerHeight()||0,c=o.find("."+l[6]).outerHeight()||0,u=function(e){e=o.find(e),e.height(s[1]-f-c-2*(0|parseFloat(e.css("padding-top"))))};switch(a.type){case 2:u("iframe");break;default:""===a.area[1]?a.maxHeight>0&&o.outerHeight()>a.maxHeight?(s[1]=a.maxHeight,u("."+l[5])):a.fixed&&s[1]>=n.height()&&(s[1]=n.height(),u("."+l[5])):u("."+l[5])}return t},s.pt.offset=function(){var e=this,t=e.config,i=e.layero,a=[i.outerWidth(),i.outerHeight()],o="object"==typeof t.offset;e.offsetTop=(n.height()-a[1])/2,e.offsetLeft=(n.width()-a[0])/2,o?(e.offsetTop=t.offset[0],e.offsetLeft=t.offset[1]||e.offsetLeft):"auto"!==t.offset&&("t"===t.offset?e.offsetTop=0:"r"===t.offset?e.offsetLeft=n.width()-a[0]:"b"===t.offset?e.offsetTop=n.height()-a[1]:"l"===t.offset?e.offsetLeft=0:"lt"===t.offset?(e.offsetTop=0,e.offsetLeft=0):"lb"===t.offset?(e.offsetTop=n.height()-a[1],e.offsetLeft=0):"rt"===t.offset?(e.offsetTop=0,e.offsetLeft=n.width()-a[0]):"rb"===t.offset?(e.offsetTop=n.height()-a[1],e.offsetLeft=n.width()-a[0]):e.offsetTop=t.offset),t.fixed||(e.offsetTop=/%$/.test(e.offsetTop)?n.height()*parseFloat(e.offsetTop)/100:parseFloat(e.offsetTop),e.offsetLeft=/%$/.test(e.offsetLeft)?n.width()*parseFloat(e.offsetLeft)/100:parseFloat(e.offsetLeft),e.offsetTop+=n.scrollTop(),e.offsetLeft+=n.scrollLeft()),i.attr("minLeft")&&(e.offsetTop=n.height()-(i.find(l[1]).outerHeight()||0),e.offsetLeft=i.css("left")),i.css({top:e.offsetTop,left:e.offsetLeft})},s.pt.tips=function(){var e=this,t=e.config,a=e.layero,o=[a.outerWidth(),a.outerHeight()],r=i(t.follow);r[0]||(r=i("body"));var s={width:r.outerWidth(),height:r.outerHeight(),top:r.offset().top,left:r.offset().left},f=a.find(".layui-layer-TipsG"),c=t.tips[0];t.tips[1]||f.remove(),s.autoLeft=function(){s.left+o[0]-n.width()>0?(s.tipLeft=s.left+s.width-o[0],f.css({right:12,left:"auto"})):s.tipLeft=s.left},s.where=[function(){s.autoLeft(),s.tipTop=s.top-o[1]-10,f.removeClass("layui-layer-TipsB").addClass("layui-layer-TipsT").css("border-right-color",t.tips[1])},function(){s.tipLeft=s.left+s.width+10,s.tipTop=s.top,f.removeClass("layui-layer-TipsL").addClass("layui-layer-TipsR").css("border-bottom-color",t.tips[1])},function(){s.autoLeft(),s.tipTop=s.top+s.height+10,f.removeClass("layui-layer-TipsT").addClass("layui-layer-TipsB").css("border-right-color",t.tips[1])},function(){s.tipLeft=s.left-o[0]-10,s.tipTop=s.top,f.removeClass("layui-layer-TipsR").addClass("layui-layer-TipsL").css("border-bottom-color",t.tips[1])}],s.where[c-1](),1===c?s.top-(n.scrollTop()+o[1]+16)<0&&s.where[2]():2===c?n.width()-(s.left+s.width+o[0]+16)>0||s.where[3]():3===c?s.top-n.scrollTop()+s.height+o[1]+16-n.height()>0&&s.where[0]():4===c&&o[0]+16-s.left>0&&s.where[1](),a.find("."+l[5]).css({"background-color":t.tips[1],"padding-right":t.closeBtn?"30px":""}),a.css({left:s.tipLeft-(t.fixed?n.scrollLeft():0),top:s.tipTop-(t.fixed?n.scrollTop():0)})},s.pt.move=function(){var e=this,t=e.config,a=i(document),s=e.layero,l=s.find(t.move),f=s.find(".layui-layer-resize"),c={};return t.move&&l.css("cursor","move"),l.on("mousedown",function(e){e.preventDefault(),t.move&&(c.moveStart=!0,c.offset=[e.clientX-parseFloat(s.css("left")),e.clientY-parseFloat(s.css("top"))],o.moveElem.css("cursor","move").show())}),f.on("mousedown",function(e){e.preventDefault(),c.resizeStart=!0,c.offset=[e.clientX,e.clientY],c.area=[s.outerWidth(),s.outerHeight()],o.moveElem.css("cursor","se-resize").show()}),a.on("mousemove",function(i){if(c.moveStart){var a=i.clientX-c.offset[0],o=i.clientY-c.offset[1],l="fixed"===s.css("position");if(i.preventDefault(),c.stX=l?0:n.scrollLeft(),c.stY=l?0:n.scrollTop(),!t.moveOut){var f=n.width()-s.outerWidth()+c.stX,u=n.height()-s.outerHeight()+c.stY;a<c.stX&&(a=c.stX),a>f&&(a=f),o<c.stY&&(o=c.stY),o>u&&(o=u)}s.css({left:a,top:o})}if(t.resize&&c.resizeStart){var a=i.clientX-c.offset[0],o=i.clientY-c.offset[1];i.preventDefault(),r.style(e.index,{width:c.area[0]+a,height:c.area[1]+o}),c.isResize=!0,t.resizing&&t.resizing(s)}}).on("mouseup",function(e){c.moveStart&&(delete c.moveStart,o.moveElem.hide(),t.moveEnd&&t.moveEnd(s)),c.resizeStart&&(delete c.resizeStart,o.moveElem.hide())}),e},s.pt.callback=function(){function e(){var e=a.cancel&&a.cancel(t.index,n);e===!1||r.close(t.index)}var t=this,n=t.layero,a=t.config;t.openLayer(),a.success&&(2==a.type?n.find("iframe").on("load",function(){a.success(n,t.index)}):a.success(n,t.index)),6==r.ie&&t.IE6(n),n.find("."+l[6]).children("a").on("click",function(){var e=i(this).index();if(0===e)a.yes?a.yes(t.index,n):a.btn1?a.btn1(t.index,n):r.close(t.index);else{var o=a["btn"+(e+1)]&&a["btn"+(e+1)](t.index,n);o===!1||r.close(t.index)}}),n.find("."+l[7]).on("click",e),a.shadeClose&&i("#layui-layer-shade"+t.index).on("click",function(){r.close(t.index)}),n.find(".layui-layer-min").on("click",function(){var e=a.min&&a.min(n);e===!1||r.min(t.index,a)}),n.find(".layui-layer-max").on("click",function(){i(this).hasClass("layui-layer-maxmin")?(r.restore(t.index),a.restore&&a.restore(n)):(r.full(t.index,a),setTimeout(function(){a.full&&a.full(n)},100))}),a.end&&(o.end[t.index]=a.end)},o.reselect=function(){i.each(i("select"),function(e,t){var n=i(this);n.parents("."+l[0])[0]||1==n.attr("layer")&&i("."+l[0]).length<1&&n.removeAttr("layer").show(),n=null})},s.pt.IE6=function(e){i("select").each(function(e,t){var n=i(this);n.parents("."+l[0])[0]||"none"===n.css("display")||n.attr({layer:"1"}).hide(),n=null})},s.pt.openLayer=function(){var e=this;r.zIndex=e.config.zIndex,r.setTop=function(e){var t=function(){r.zIndex++,e.css("z-index",r.zIndex+1)};return r.zIndex=parseInt(e[0].style.zIndex),e.on("mousedown",t),r.zIndex}},o.record=function(e){var t=[e.width(),e.height(),e.position().top,e.position().left+parseFloat(e.css("margin-left"))];e.find(".layui-layer-max").addClass("layui-layer-maxmin"),e.attr({area:t})},o.rescollbar=function(e){l.html.attr("layer-full")==e&&(l.html[0].style.removeProperty?l.html[0].style.removeProperty("overflow"):l.html[0].style.removeAttribute("overflow"),l.html.removeAttr("layer-full"))},e.layer=r,r.getChildFrame=function(e,t){return t=t||i("."+l[4]).attr("times"),i("#"+l[0]+t).find("iframe").contents().find(e)},r.getFrameIndex=function(e){return i("#"+e).parents("."+l[4]).attr("times")},r.iframeAuto=function(e){if(e){var t=r.getChildFrame("html",e).outerHeight(),n=i("#"+l[0]+e),a=n.find(l[1]).outerHeight()||0,o=n.find("."+l[6]).outerHeight()||0;n.css({height:t+a+o}),n.find("iframe").css({height:t})}},r.iframeSrc=function(e,t){i("#"+l[0]+e).find("iframe").attr("src",t)},r.style=function(e,t,n){var a=i("#"+l[0]+e),r=a.find(".layui-layer-content"),s=a.attr("type"),f=a.find(l[1]).outerHeight()||0,c=a.find("."+l[6]).outerHeight()||0;a.attr("minLeft");s!==o.type[3]&&s!==o.type[4]&&(n||(parseFloat(t.width)<=260&&(t.width=260),parseFloat(t.height)-f-c<=64&&(t.height=64+f+c)),a.css(t),c=a.find("."+l[6]).outerHeight(),s===o.type[2]?a.find("iframe").css({height:parseFloat(t.height)-f-c}):r.css({height:parseFloat(t.height)-f-c-parseFloat(r.css("padding-top"))-parseFloat(r.css("padding-bottom"))}))},r.min=function(e,t){var a=i("#"+l[0]+e),s=a.find(l[1]).outerHeight()||0,f=a.attr("minLeft")||181*o.minIndex+"px",c=a.css("position");o.record(a),o.minLeft[0]&&(f=o.minLeft[0],o.minLeft.shift()),a.attr("position",c),r.style(e,{width:180,height:s,left:f,top:n.height()-s,position:"fixed",overflow:"hidden"},!0),a.find(".layui-layer-min").hide(),"page"===a.attr("type")&&a.find(l[4]).hide(),o.rescollbar(e),a.attr("minLeft")||o.minIndex++,a.attr("minLeft",f)},r.restore=function(e){var t=i("#"+l[0]+e),n=t.attr("area").split(",");t.attr("type");r.style(e,{width:parseFloat(n[0]),height:parseFloat(n[1]),top:parseFloat(n[2]),left:parseFloat(n[3]),position:t.attr("position"),overflow:"visible"},!0),t.find(".layui-layer-max").removeClass("layui-layer-maxmin"),t.find(".layui-layer-min").show(),"page"===t.attr("type")&&t.find(l[4]).show(),o.rescollbar(e)},r.full=function(e){var t,a=i("#"+l[0]+e);o.record(a),l.html.attr("layer-full")||l.html.css("overflow","hidden").attr("layer-full",e),clearTimeout(t),t=setTimeout(function(){var t="fixed"===a.css("position");r.style(e,{top:t?0:n.scrollTop(),left:t?0:n.scrollLeft(),width:n.width(),height:n.height()},!0),a.find(".layui-layer-min").hide()},100)},r.title=function(e,t){var n=i("#"+l[0]+(t||r.index)).find(l[1]);n.html(e)},r.close=function(e){var t=i("#"+l[0]+e),n=t.attr("type"),a="layer-anim-close";if(t[0]){var s="layui-layer-wrap",f=function(){if(n===o.type[1]&&"object"===t.attr("conType")){t.children(":not(."+l[5]+")").remove();for(var a=t.find("."+s),r=0;r<2;r++)a.unwrap();a.css("display",a.data("display")).removeClass(s)}else{if(n===o.type[2])try{var f=i("#"+l[4]+e)[0];f.contentWindow.document.write(""),f.contentWindow.close(),t.find("."+l[5])[0].removeChild(f)}catch(c){}t[0].innerHTML="",t.remove()}"function"==typeof o.end[e]&&o.end[e](),delete o.end[e]};t.data("isOutAnim")&&t.addClass("layer-anim "+a),i("#layui-layer-moves, #layui-layer-shade"+e).remove(),6==r.ie&&o.reselect(),o.rescollbar(e),t.attr("minLeft")&&(o.minIndex--,o.minLeft.push(t.attr("minLeft"))),r.ie&&r.ie<10||!t.data("isOutAnim")?f():setTimeout(function(){f()},200)}},r.closeAll=function(e){i.each(i("."+l[0]),function(){var t=i(this),n=e?t.attr("type")===e:1;n&&r.close(t.attr("times")),n=null})};var f=r.cache||{},c=function(e){return f.skin?" "+f.skin+" "+f.skin+"-"+e:""};r.prompt=function(e,t){var a="";if(e=e||{},"function"==typeof e&&(t=e),e.area){var o=e.area;a='style="width: '+o[0]+"; height: "+o[1]+';"',delete e.area}var s,l=2==e.formType?'<textarea class="layui-layer-input"'+a+">"+(e.value||"")+"</textarea>":function(){return'<input type="'+(1==e.formType?"password":"text")+'" class="layui-layer-input" value="'+(e.value||"")+'">'}(),f=e.success;return delete e.success,r.open(i.extend({type:1,btn:["&#x786E;&#x5B9A;","&#x53D6;&#x6D88;"],content:l,skin:"layui-layer-prompt"+c("prompt"),maxWidth:n.width(),success:function(e){s=e.find(".layui-layer-input"),s.focus(),"function"==typeof f&&f(e)},resize:!1,yes:function(i){var n=s.val();""===n?s.focus():n.length>(e.maxlength||500)?r.tips("&#x6700;&#x591A;&#x8F93;&#x5165;"+(e.maxlength||500)+"&#x4E2A;&#x5B57;&#x6570;",s,{tips:1}):t&&t(n,i,s)}},e))},r.tab=function(e){e=e||{};var t=e.tab||{},n="layui-this",a=e.success;return delete e.success,r.open(i.extend({type:1,skin:"layui-layer-tab"+c("tab"),resize:!1,title:function(){var e=t.length,i=1,a="";if(e>0)for(a='<span class="'+n+'">'+t[0].title+"</span>";i<e;i++)a+="<span>"+t[i].title+"</span>";return a}(),content:'<ul class="layui-layer-tabmain">'+function(){var e=t.length,i=1,a="";if(e>0)for(a='<li class="layui-layer-tabli '+n+'">'+(t[0].content||"no content")+"</li>";i<e;i++)a+='<li class="layui-layer-tabli">'+(t[i].content||"no content")+"</li>";return a}()+"</ul>",success:function(t){var o=t.find(".layui-layer-title").children(),r=t.find(".layui-layer-tabmain").children();o.on("mousedown",function(t){t.stopPropagation?t.stopPropagation():t.cancelBubble=!0;var a=i(this),o=a.index();a.addClass(n).siblings().removeClass(n),r.eq(o).show().siblings().hide(),"function"==typeof e.change&&e.change(o)}),"function"==typeof a&&a(t)}},e))},r.photos=function(t,n,a){function o(e,t,i){var n=new Image;return n.src=e,n.complete?t(n):(n.onload=function(){n.onload=null,t(n)},void(n.onerror=function(e){n.onerror=null,i(e)}))}var s={};if(t=t||{},t.photos){var l=t.photos.constructor===Object,f=l?t.photos:{},u=f.data||[],d=f.start||0;s.imgIndex=(0|d)+1,t.img=t.img||"img";var y=t.success;if(delete t.success,l){if(0===u.length)return r.msg("&#x6CA1;&#x6709;&#x56FE;&#x7247;")}else{var p=i(t.photos),h=function(){u=[],p.find(t.img).each(function(e){var t=i(this);t.attr("layer-index",e),u.push({alt:t.attr("alt"),pid:t.attr("layer-pid"),src:t.attr("layer-src")||t.attr("src"),thumb:t.attr("src")})})};if(h(),0===u.length)return;if(n||p.on("click",t.img,function(){var e=i(this),n=e.attr("layer-index");r.photos(i.extend(t,{photos:{start:n,data:u,tab:t.tab},full:t.full}),!0),h()}),!n)return}s.imgprev=function(e){s.imgIndex--,s.imgIndex<1&&(s.imgIndex=u.length),s.tabimg(e)},s.imgnext=function(e,t){s.imgIndex++,s.imgIndex>u.length&&(s.imgIndex=1,t)||s.tabimg(e)},s.keyup=function(e){if(!s.end){var t=e.keyCode;e.preventDefault(),37===t?s.imgprev(!0):39===t?s.imgnext(!0):27===t&&r.close(s.index)}},s.tabimg=function(e){if(!(u.length<=1))return f.start=s.imgIndex-1,r.close(s.index),r.photos(t,!0,e)},s.event=function(){s.bigimg.hover(function(){s.imgsee.show()},function(){s.imgsee.hide()}),s.bigimg.find(".layui-layer-imgprev").on("click",function(e){e.preventDefault(),s.imgprev()}),s.bigimg.find(".layui-layer-imgnext").on("click",function(e){e.preventDefault(),s.imgnext()}),i(document).on("keyup",s.keyup)},s.loadi=r.load(1,{shade:!("shade"in t)&&.9,scrollbar:!1}),o(u[d].src,function(n){r.close(s.loadi),s.index=r.open(i.extend({type:1,id:"layui-layer-photos",area:function(){var a=[n.width,n.height],o=[i(e).width()-100,i(e).height()-100];if(!t.full&&(a[0]>o[0]||a[1]>o[1])){var r=[a[0]/o[0],a[1]/o[1]];r[0]>r[1]?(a[0]=a[0]/r[0],a[1]=a[1]/r[0]):r[0]<r[1]&&(a[0]=a[0]/r[1],a[1]=a[1]/r[1])}return[a[0]+"px",a[1]+"px"]}(),title:!1,shade:.9,shadeClose:!0,closeBtn:!1,move:".layui-layer-phimg img",moveType:1,scrollbar:!1,moveOut:!0,isOutAnim:!1,skin:"layui-layer-photos"+c("photos"),content:'<div class="layui-layer-phimg"><img src="'+u[d].src+'" alt="'+(u[d].alt||"")+'" layer-pid="'+u[d].pid+'"><div class="layui-layer-imgsee">'+(u.length>1?'<span class="layui-layer-imguide"><a href="javascript:;" class="layui-layer-iconext layui-layer-imgprev"></a><a href="javascript:;" class="layui-layer-iconext layui-layer-imgnext"></a></span>':"")+'<div class="layui-layer-imgbar" style="display:'+(a?"block":"")+'"><span class="layui-layer-imgtit"><a href="javascript:;">'+(u[d].alt||"")+"</a><em>"+s.imgIndex+"/"+u.length+"</em></span></div></div></div>",success:function(e,i){s.bigimg=e.find(".layui-layer-phimg"),s.imgsee=e.find(".layui-layer-imguide,.layui-layer-imgbar"),s.event(e),t.tab&&t.tab(u[d],e),"function"==typeof y&&y(e)},end:function(){s.end=!0,i(document).off("keyup",s.keyup)}},t))},function(){r.close(s.loadi),r.msg("&#x5F53;&#x524D;&#x56FE;&#x7247;&#x5730;&#x5740;&#x5F02;&#x5E38;<br>&#x662F;&#x5426;&#x7EE7;&#x7EED;&#x67E5;&#x770B;&#x4E0B;&#x4E00;&#x5F20;&#xFF1F;",{time:3e4,btn:["&#x4E0B;&#x4E00;&#x5F20;","&#x4E0D;&#x770B;&#x4E86;"],yes:function(){u.length>1&&s.imgnext(!0,!0)}})})}},o.run=function(t){i=t,n=i(e),l.html=i("html"),r.open=function(e){var t=new s(e);return t.index}},e.layui&&layui.define?(r.ready(),layui.define("jquery",function(t){r.path=layui.cache.dir,o.run(layui.$),e.layer=r,t("layer",r)})):"function"==typeof define&&define.amd?define('layer',["jquery"],function(){return o.run(e.jQuery),r}):function(){o.run(e.jQuery),r.ready()}()}(window);
  172. /*
  173. * Toastr
  174. * Copyright 2012-2015
  175. * Authors: John Papa, Hans Fjällemark, and Tim Ferrell.
  176. * All Rights Reserved.
  177. * Use, reproduction, distribution, and modification of this code is subject to the terms and
  178. * conditions of the MIT license, available at http://www.opensource.org/licenses/mit-license.php
  179. *
  180. * ARIA Support: Greta Krafsig
  181. *
  182. * Project: https://github.com/CodeSeven/toastr
  183. */
  184. /* global define */
  185. (function (define) {
  186. define('toastr',['jquery'], function ($) {
  187. return (function () {
  188. var $container;
  189. var listener;
  190. var toastId = 0;
  191. var toastType = {
  192. error: 'error',
  193. info: 'info',
  194. success: 'success',
  195. warning: 'warning'
  196. };
  197. var toastr = {
  198. clear: clear,
  199. remove: remove,
  200. error: error,
  201. getContainer: getContainer,
  202. info: info,
  203. options: {},
  204. subscribe: subscribe,
  205. success: success,
  206. version: '2.1.3',
  207. warning: warning
  208. };
  209. var previousToast;
  210. return toastr;
  211. ////////////////
  212. function error(message, title, optionsOverride) {
  213. return notify({
  214. type: toastType.error,
  215. iconClass: getOptions().iconClasses.error,
  216. message: message,
  217. optionsOverride: optionsOverride,
  218. title: title
  219. });
  220. }
  221. function getContainer(options, create) {
  222. if (!options) { options = getOptions(); }
  223. $container = $('#' + options.containerId);
  224. if ($container.length) {
  225. return $container;
  226. }
  227. if (create) {
  228. $container = createContainer(options);
  229. }
  230. return $container;
  231. }
  232. function info(message, title, optionsOverride) {
  233. return notify({
  234. type: toastType.info,
  235. iconClass: getOptions().iconClasses.info,
  236. message: message,
  237. optionsOverride: optionsOverride,
  238. title: title
  239. });
  240. }
  241. function subscribe(callback) {
  242. listener = callback;
  243. }
  244. function success(message, title, optionsOverride) {
  245. return notify({
  246. type: toastType.success,
  247. iconClass: getOptions().iconClasses.success,
  248. message: message,
  249. optionsOverride: optionsOverride,
  250. title: title
  251. });
  252. }
  253. function warning(message, title, optionsOverride) {
  254. return notify({
  255. type: toastType.warning,
  256. iconClass: getOptions().iconClasses.warning,
  257. message: message,
  258. optionsOverride: optionsOverride,
  259. title: title
  260. });
  261. }
  262. function clear($toastElement, clearOptions) {
  263. var options = getOptions();
  264. if (!$container) { getContainer(options); }
  265. if (!clearToast($toastElement, options, clearOptions)) {
  266. clearContainer(options);
  267. }
  268. }
  269. function remove($toastElement) {
  270. var options = getOptions();
  271. if (!$container) { getContainer(options); }
  272. if ($toastElement && $(':focus', $toastElement).length === 0) {
  273. removeToast($toastElement);
  274. return;
  275. }
  276. if ($container.children().length) {
  277. $container.remove();
  278. }
  279. }
  280. // internal functions
  281. function clearContainer (options) {
  282. var toastsToClear = $container.children();
  283. for (var i = toastsToClear.length - 1; i >= 0; i--) {
  284. clearToast($(toastsToClear[i]), options);
  285. }
  286. }
  287. function clearToast ($toastElement, options, clearOptions) {
  288. var force = clearOptions && clearOptions.force ? clearOptions.force : false;
  289. if ($toastElement && (force || $(':focus', $toastElement).length === 0)) {
  290. $toastElement[options.hideMethod]({
  291. duration: options.hideDuration,
  292. easing: options.hideEasing,
  293. complete: function () { removeToast($toastElement); }
  294. });
  295. return true;
  296. }
  297. return false;
  298. }
  299. function createContainer(options) {
  300. $container = $('<div/>')
  301. .attr('id', options.containerId)
  302. .addClass(options.positionClass);
  303. $container.appendTo($(options.target));
  304. return $container;
  305. }
  306. function getDefaults() {
  307. return {
  308. tapToDismiss: true,
  309. toastClass: 'toast',
  310. containerId: 'toast-container',
  311. debug: false,
  312. showMethod: 'fadeIn', //fadeIn, slideDown, and show are built into jQuery
  313. showDuration: 300,
  314. showEasing: 'swing', //swing and linear are built into jQuery
  315. onShown: undefined,
  316. hideMethod: 'fadeOut',
  317. hideDuration: 1000,
  318. hideEasing: 'swing',
  319. onHidden: undefined,
  320. closeMethod: false,
  321. closeDuration: false,
  322. closeEasing: false,
  323. closeOnHover: true,
  324. extendedTimeOut: 1000,
  325. iconClasses: {
  326. error: 'toast-error',
  327. info: 'toast-info',
  328. success: 'toast-success',
  329. warning: 'toast-warning'
  330. },
  331. iconClass: 'toast-info',
  332. positionClass: 'toast-top-right',
  333. timeOut: 5000, // Set timeOut and extendedTimeOut to 0 to make it sticky
  334. titleClass: 'toast-title',
  335. messageClass: 'toast-message',
  336. escapeHtml: false,
  337. target: 'body',
  338. closeHtml: '<button type="button">&times;</button>',
  339. closeClass: 'toast-close-button',
  340. newestOnTop: true,
  341. preventDuplicates: false,
  342. progressBar: false,
  343. progressClass: 'toast-progress',
  344. rtl: false
  345. };
  346. }
  347. function publish(args) {
  348. if (!listener) { return; }
  349. listener(args);
  350. }
  351. function notify(map) {
  352. var options = getOptions();
  353. var iconClass = map.iconClass || options.iconClass;
  354. if (typeof (map.optionsOverride) !== 'undefined') {
  355. options = $.extend(options, map.optionsOverride);
  356. iconClass = map.optionsOverride.iconClass || iconClass;
  357. }
  358. if (shouldExit(options, map)) { return; }
  359. toastId++;
  360. $container = getContainer(options, true);
  361. var intervalId = null;
  362. var $toastElement = $('<div/>');
  363. var $titleElement = $('<div/>');
  364. var $messageElement = $('<div/>');
  365. var $progressElement = $('<div/>');
  366. var $closeElement = $(options.closeHtml);
  367. var progressBar = {
  368. intervalId: null,
  369. hideEta: null,
  370. maxHideTime: null
  371. };
  372. var response = {
  373. toastId: toastId,
  374. state: 'visible',
  375. startTime: new Date(),
  376. options: options,
  377. map: map
  378. };
  379. personalizeToast();
  380. displayToast();
  381. handleEvents();
  382. publish(response);
  383. if (options.debug && console) {
  384. console.log(response);
  385. }
  386. return $toastElement;
  387. function escapeHtml(source) {
  388. if (source == null) {
  389. source = '';
  390. }
  391. return source
  392. .replace(/&/g, '&amp;')
  393. .replace(/"/g, '&quot;')
  394. .replace(/'/g, '&#39;')
  395. .replace(/</g, '&lt;')
  396. .replace(/>/g, '&gt;');
  397. }
  398. function personalizeToast() {
  399. setIcon();
  400. setTitle();
  401. setMessage();
  402. setCloseButton();
  403. setProgressBar();
  404. setRTL();
  405. setSequence();
  406. setAria();
  407. }
  408. function setAria() {
  409. var ariaValue = '';
  410. switch (map.iconClass) {
  411. case 'toast-success':
  412. case 'toast-info':
  413. ariaValue = 'polite';
  414. break;
  415. default:
  416. ariaValue = 'assertive';
  417. }
  418. $toastElement.attr('aria-live', ariaValue);
  419. }
  420. function handleEvents() {
  421. if (options.closeOnHover) {
  422. $toastElement.hover(stickAround, delayedHideToast);
  423. }
  424. if (!options.onclick && options.tapToDismiss) {
  425. $toastElement.click(hideToast);
  426. }
  427. if (options.closeButton && $closeElement) {
  428. $closeElement.click(function (event) {
  429. if (event.stopPropagation) {
  430. event.stopPropagation();
  431. } else if (event.cancelBubble !== undefined && event.cancelBubble !== true) {
  432. event.cancelBubble = true;
  433. }
  434. if (options.onCloseClick) {
  435. options.onCloseClick(event);
  436. }
  437. hideToast(true);
  438. });
  439. }
  440. if (options.onclick) {
  441. $toastElement.click(function (event) {
  442. options.onclick(event);
  443. hideToast();
  444. });
  445. }
  446. }
  447. function displayToast() {
  448. $toastElement.hide();
  449. $toastElement[options.showMethod](
  450. {duration: options.showDuration, easing: options.showEasing, complete: options.onShown}
  451. );
  452. if (options.timeOut > 0) {
  453. intervalId = setTimeout(hideToast, options.timeOut);
  454. progressBar.maxHideTime = parseFloat(options.timeOut);
  455. progressBar.hideEta = new Date().getTime() + progressBar.maxHideTime;
  456. if (options.progressBar) {
  457. progressBar.intervalId = setInterval(updateProgress, 10);
  458. }
  459. }
  460. }
  461. function setIcon() {
  462. if (map.iconClass) {
  463. $toastElement.addClass(options.toastClass).addClass(iconClass);
  464. }
  465. }
  466. function setSequence() {
  467. if (options.newestOnTop) {
  468. $container.prepend($toastElement);
  469. } else {
  470. $container.append($toastElement);
  471. }
  472. }
  473. function setTitle() {
  474. if (map.title) {
  475. var suffix = map.title;
  476. if (options.escapeHtml) {
  477. suffix = escapeHtml(map.title);
  478. }
  479. $titleElement.append(suffix).addClass(options.titleClass);
  480. $toastElement.append($titleElement);
  481. }
  482. }
  483. function setMessage() {
  484. if (map.message) {
  485. var suffix = map.message;
  486. if (options.escapeHtml) {
  487. suffix = escapeHtml(map.message);
  488. }
  489. $messageElement.append(suffix).addClass(options.messageClass);
  490. $toastElement.append($messageElement);
  491. }
  492. }
  493. function setCloseButton() {
  494. if (options.closeButton) {
  495. $closeElement.addClass(options.closeClass).attr('role', 'button');
  496. $toastElement.prepend($closeElement);
  497. }
  498. }
  499. function setProgressBar() {
  500. if (options.progressBar) {
  501. $progressElement.addClass(options.progressClass);
  502. $toastElement.prepend($progressElement);
  503. }
  504. }
  505. function setRTL() {
  506. if (options.rtl) {
  507. $toastElement.addClass('rtl');
  508. }
  509. }
  510. function shouldExit(options, map) {
  511. if (options.preventDuplicates) {
  512. if (map.message === previousToast) {
  513. return true;
  514. } else {
  515. previousToast = map.message;
  516. }
  517. }
  518. return false;
  519. }
  520. function hideToast(override) {
  521. var method = override && options.closeMethod !== false ? options.closeMethod : options.hideMethod;
  522. var duration = override && options.closeDuration !== false ?
  523. options.closeDuration : options.hideDuration;
  524. var easing = override && options.closeEasing !== false ? options.closeEasing : options.hideEasing;
  525. if ($(':focus', $toastElement).length && !override) {
  526. return;
  527. }
  528. clearTimeout(progressBar.intervalId);
  529. return $toastElement[method]({
  530. duration: duration,
  531. easing: easing,
  532. complete: function () {
  533. removeToast($toastElement);
  534. clearTimeout(intervalId);
  535. if (options.onHidden && response.state !== 'hidden') {
  536. options.onHidden();
  537. }
  538. response.state = 'hidden';
  539. response.endTime = new Date();
  540. publish(response);
  541. }
  542. });
  543. }
  544. function delayedHideToast() {
  545. if (options.timeOut > 0 || options.extendedTimeOut > 0) {
  546. intervalId = setTimeout(hideToast, options.extendedTimeOut);
  547. progressBar.maxHideTime = parseFloat(options.extendedTimeOut);
  548. progressBar.hideEta = new Date().getTime() + progressBar.maxHideTime;
  549. }
  550. }
  551. function stickAround() {
  552. clearTimeout(intervalId);
  553. progressBar.hideEta = 0;
  554. $toastElement.stop(true, true)[options.showMethod](
  555. {duration: options.showDuration, easing: options.showEasing}
  556. );
  557. }
  558. function updateProgress() {
  559. var percentage = ((progressBar.hideEta - (new Date().getTime())) / progressBar.maxHideTime) * 100;
  560. $progressElement.width(percentage + '%');
  561. }
  562. }
  563. function getOptions() {
  564. return $.extend({}, getDefaults(), toastr.options);
  565. }
  566. function removeToast($toastElement) {
  567. if (!$container) { $container = getContainer(); }
  568. if ($toastElement.is(':visible')) {
  569. return;
  570. }
  571. $toastElement.remove();
  572. $toastElement = null;
  573. if ($container.children().length === 0) {
  574. $container.remove();
  575. previousToast = undefined;
  576. }
  577. }
  578. })();
  579. });
  580. }(typeof define === 'function' && define.amd ? define : function (deps, factory) {
  581. if (typeof module !== 'undefined' && module.exports) { //Node
  582. module.exports = factory(require('jquery'));
  583. } else {
  584. window.toastr = factory(window.jQuery);
  585. }
  586. }));
  587. define('fast',['jquery', 'bootstrap', 'toastr', 'layer', 'lang'], function ($, undefined, Toastr, Layer, Lang) {
  588. var Fast = {
  589. config: {
  590. //toastr默认配置
  591. toastr: {
  592. "closeButton": true,
  593. "debug": false,
  594. "newestOnTop": false,
  595. "progressBar": false,
  596. "positionClass": "toast-top-center",
  597. "preventDuplicates": false,
  598. "onclick": null,
  599. "showDuration": "300",
  600. "hideDuration": "1000",
  601. "timeOut": "5000",
  602. "extendedTimeOut": "1000",
  603. "showEasing": "swing",
  604. "hideEasing": "linear",
  605. "showMethod": "fadeIn",
  606. "hideMethod": "fadeOut"
  607. }
  608. },
  609. events: {
  610. //请求成功的回调
  611. onAjaxSuccess: function (ret, onAjaxSuccess) {
  612. var data = typeof ret.data !== 'undefined' ? ret.data : null;
  613. var msg = typeof ret.msg !== 'undefined' && ret.msg ? ret.msg : __('Operation completed');
  614. if (typeof onAjaxSuccess === 'function') {
  615. var result = onAjaxSuccess.call(this, data, ret);
  616. if (result === false)
  617. return;
  618. }
  619. Toastr.success(msg);
  620. },
  621. //请求错误的回调
  622. onAjaxError: function (ret, onAjaxError) {
  623. var data = typeof ret.data !== 'undefined' ? ret.data : null;
  624. if (typeof onAjaxError === 'function') {
  625. var result = onAjaxError.call(this, data, ret);
  626. if (result === false) {
  627. return;
  628. }
  629. }
  630. Toastr.error(ret.msg);
  631. },
  632. //服务器响应数据后
  633. onAjaxResponse: function (response) {
  634. try {
  635. var ret = typeof response === 'object' ? response : JSON.parse(response);
  636. if (!ret.hasOwnProperty('code')) {
  637. $.extend(ret, {code: -2, msg: response, data: null});
  638. }
  639. } catch (e) {
  640. var ret = {code: -1, msg: e.message, data: null};
  641. }
  642. return ret;
  643. }
  644. },
  645. api: {
  646. //发送Ajax请求
  647. ajax: function (options, success, error) {
  648. options = typeof options === 'string' ? {url: options} : options;
  649. var index = Layer.load();
  650. options = $.extend({
  651. type: "POST",
  652. dataType: "json",
  653. success: function (ret) {
  654. Layer.close(index);
  655. ret = Fast.events.onAjaxResponse(ret);
  656. if (ret.code === 1) {
  657. Fast.events.onAjaxSuccess(ret, success);
  658. } else {
  659. Fast.events.onAjaxError(ret, error);
  660. }
  661. },
  662. error: function (xhr) {
  663. Layer.close(index);
  664. var ret = {code: xhr.status, msg: xhr.statusText, data: null};
  665. Fast.events.onAjaxError(ret, error);
  666. }
  667. }, options);
  668. $.ajax(options);
  669. },
  670. //修复URL
  671. fixurl: function (url) {
  672. if (url.substr(0, 1) !== "/") {
  673. var r = new RegExp('^(?:[a-z]+:)?//', 'i');
  674. if (!r.test(url)) {
  675. url = Config.moduleurl + "/" + url;
  676. }
  677. } else if (url.substr(0, 8) === "/addons/") {
  678. url = Config.__PUBLIC__.replace(/(\/*$)/g, "") + url;
  679. }
  680. return url;
  681. },
  682. //获取修复后可访问的cdn链接
  683. cdnurl: function (url, domain) {
  684. var rule = new RegExp("^((?:[a-z]+:)?\\/\\/|data:image\\/)", "i");
  685. var url = rule.test(url) ? url : Config.upload.cdnurl + url;
  686. if (domain && !rule.test(url)) {
  687. domain = typeof domain === 'string' ? domain : location.origin;
  688. url = domain + url;
  689. }
  690. return url;
  691. },
  692. //查询Url参数
  693. query: function (name, url) {
  694. if (!url) {
  695. url = window.location.href;
  696. }
  697. name = name.replace(/[\[\]]/g, "\\$&");
  698. var regex = new RegExp("[?&/]" + name + "([=/]([^&#/?]*)|&|#|$)"),
  699. results = regex.exec(url);
  700. if (!results)
  701. return null;
  702. if (!results[2])
  703. return '';
  704. return decodeURIComponent(results[2].replace(/\+/g, " "));
  705. },
  706. //打开一个弹出窗口
  707. open: function (url, title, options) {
  708. title = options && options.title ? options.title : (title ? title : "");
  709. url = Fast.api.fixurl(url);
  710. url = url + (url.indexOf("?") > -1 ? "&" : "?") + "dialog=1";
  711. var area = Fast.config.openArea != undefined ? Fast.config.openArea : [$(window).width() > 800 ? '800px' : '95%', $(window).height() > 600 ? '600px' : '95%'];
  712. options = $.extend({
  713. type: 2,
  714. title: title,
  715. shadeClose: true,
  716. shade: false,
  717. maxmin: true,
  718. moveOut: true,
  719. area: area,
  720. content: url,
  721. zIndex: Layer.zIndex,
  722. success: function (layero, index) {
  723. var that = this;
  724. //存储callback事件
  725. $(layero).data("callback", that.callback);
  726. //$(layero).removeClass("layui-layer-border");
  727. Layer.setTop(layero);
  728. try {
  729. var frame = Layer.getChildFrame('html', index);
  730. var layerfooter = frame.find(".layer-footer");
  731. Fast.api.layerfooter(layero, index, that);
  732. //绑定事件
  733. if (layerfooter.size() > 0) {
  734. // 监听窗口内的元素及属性变化
  735. // Firefox和Chrome早期版本中带有前缀
  736. var MutationObserver = window.MutationObserver || window.WebKitMutationObserver || window.MozMutationObserver;
  737. if (MutationObserver) {
  738. // 选择目标节点
  739. var target = layerfooter[0];
  740. // 创建观察者对象
  741. var observer = new MutationObserver(function (mutations) {
  742. Fast.api.layerfooter(layero, index, that);
  743. mutations.forEach(function (mutation) {
  744. });
  745. });
  746. // 配置观察选项:
  747. var config = {attributes: true, childList: true, characterData: true, subtree: true}
  748. // 传入目标节点和观察选项
  749. observer.observe(target, config);
  750. // 随后,你还可以停止观察
  751. // observer.disconnect();
  752. }
  753. }
  754. } catch (e) {
  755. }
  756. if ($(layero).height() > $(window).height()) {
  757. //当弹出窗口大于浏览器可视高度时,重定位
  758. Layer.style(index, {
  759. top: 0,
  760. height: $(window).height()
  761. });
  762. }
  763. }
  764. }, options ? options : {});
  765. if ($(window).width() < 480 || (/iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream && top.$(".tab-pane.active").size() > 0)) {
  766. options.area = [top.$(".tab-pane.active").width() + "px", top.$(".tab-pane.active").height() + "px"];
  767. options.offset = [top.$(".tab-pane.active").scrollTop() + "px", "0px"];
  768. }
  769. return Layer.open(options);
  770. },
  771. //关闭窗口并回传数据
  772. close: function (data) {
  773. var index = parent.Layer.getFrameIndex(window.name);
  774. var callback = parent.$("#layui-layer" + index).data("callback");
  775. //再执行关闭
  776. parent.Layer.close(index);
  777. //再调用回传函数
  778. if (typeof callback === 'function') {
  779. callback.call(undefined, data);
  780. }
  781. },
  782. layerfooter: function (layero, index, that) {
  783. var frame = Layer.getChildFrame('html', index);
  784. var layerfooter = frame.find(".layer-footer");
  785. if (layerfooter.size() > 0) {
  786. $(".layui-layer-footer", layero).remove();
  787. var footer = $("<div />").addClass('layui-layer-btn layui-layer-footer');
  788. footer.html(layerfooter.html());
  789. if ($(".row", footer).size() === 0) {
  790. $(">", footer).wrapAll("<div class='row'></div>");
  791. }
  792. footer.insertAfter(layero.find('.layui-layer-content'));
  793. //绑定事件
  794. footer.on("click", ".btn", function () {
  795. if ($(this).hasClass("disabled") || $(this).parent().hasClass("disabled")) {
  796. return;
  797. }
  798. var index = footer.find('.btn').index(this);
  799. $(".btn:eq(" + index + ")", layerfooter).trigger("click");
  800. });
  801. var titHeight = layero.find('.layui-layer-title').outerHeight() || 0;
  802. var btnHeight = layero.find('.layui-layer-btn').outerHeight() || 0;
  803. //重设iframe高度
  804. $("iframe", layero).height(layero.height() - titHeight - btnHeight);
  805. }
  806. //修复iOS下弹出窗口的高度和iOS下iframe无法滚动的BUG
  807. if (/iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream) {
  808. var titHeight = layero.find('.layui-layer-title').outerHeight() || 0;
  809. var btnHeight = layero.find('.layui-layer-btn').outerHeight() || 0;
  810. $("iframe", layero).parent().css("height", layero.height() - titHeight - btnHeight);
  811. $("iframe", layero).css("height", "100%");
  812. }
  813. },
  814. success: function (options, callback) {
  815. var type = typeof options === 'function';
  816. if (type) {
  817. callback = options;
  818. }
  819. return Layer.msg(__('Operation completed'), $.extend({
  820. offset: 0, icon: 1
  821. }, type ? {} : options), callback);
  822. },
  823. error: function (options, callback) {
  824. var type = typeof options === 'function';
  825. if (type) {
  826. callback = options;
  827. }
  828. return Layer.msg(__('Operation failed'), $.extend({
  829. offset: 0, icon: 2
  830. }, type ? {} : options), callback);
  831. },
  832. toastr: Toastr,
  833. layer: Layer
  834. },
  835. lang: function () {
  836. var args = arguments,
  837. string = args[0],
  838. i = 1;
  839. string = string.toLowerCase();
  840. //string = typeof Lang[string] != 'undefined' ? Lang[string] : string;
  841. if (typeof Lang !== 'undefined' && typeof Lang[string] !== 'undefined') {
  842. if (typeof Lang[string] == 'object')
  843. return Lang[string];
  844. string = Lang[string];
  845. } else if (string.indexOf('.') !== -1 && false) {
  846. var arr = string.split('.');
  847. var current = Lang[arr[0]];
  848. for (var i = 1; i < arr.length; i++) {
  849. current = typeof current[arr[i]] != 'undefined' ? current[arr[i]] : '';
  850. if (typeof current != 'object')
  851. break;
  852. }
  853. if (typeof current == 'object')
  854. return current;
  855. string = current;
  856. } else {
  857. string = args[0];
  858. }
  859. return string.replace(/%((%)|s|d)/g, function (m) {
  860. // m is the matched format, e.g. %s, %d
  861. var val = null;
  862. if (m[2]) {
  863. val = m[2];
  864. } else {
  865. val = args[i];
  866. // A switch statement so that the formatter can be extended. Default is %s
  867. switch (m) {
  868. case '%d':
  869. val = parseFloat(val);
  870. if (isNaN(val)) {
  871. val = 0;
  872. }
  873. break;
  874. }
  875. i++;
  876. }
  877. return val;
  878. });
  879. },
  880. init: function () {
  881. // 对相对地址进行处理
  882. $.ajaxSetup({
  883. beforeSend: function (xhr, setting) {
  884. setting.url = Fast.api.fixurl(setting.url);
  885. }
  886. });
  887. Layer.config({
  888. skin: 'layui-layer-fast'
  889. });
  890. // 绑定ESC关闭窗口事件
  891. $(window).keyup(function (e) {
  892. if (e.keyCode == 27) {
  893. if ($(".layui-layer").size() > 0) {
  894. var index = 0;
  895. $(".layui-layer").each(function () {
  896. index = Math.max(index, parseInt($(this).attr("times")));
  897. });
  898. if (index) {
  899. Layer.close(index);
  900. }
  901. }
  902. }
  903. });
  904. //公共代码
  905. //配置Toastr的参数
  906. Toastr.options = Fast.config.toastr;
  907. }
  908. };
  909. //将Layer暴露到全局中去
  910. window.Layer = Layer;
  911. //将Toastr暴露到全局中去
  912. window.Toastr = Toastr;
  913. //将语言方法暴露到全局中去
  914. window.__ = Fast.lang;
  915. //将Fast渲染至全局
  916. window.Fast = Fast;
  917. //默认初始化执行的代码
  918. Fast.init();
  919. return Fast;
  920. });
  921. /*!art-template - Template Engine | http://aui.github.com/artTemplate/*/
  922. !function(){function a(a){return a.replace(t,"").replace(u,",").replace(v,"").replace(w,"").replace(x,"").split(y)}function b(a){return"'"+a.replace(/('|\\)/g,"\\$1").replace(/\r/g,"\\r").replace(/\n/g,"\\n")+"'"}function c(c,d){function e(a){return m+=a.split(/\n/).length-1,k&&(a=a.replace(/\s+/g," ").replace(/<!--[\w\W]*?-->/g,"")),a&&(a=s[1]+b(a)+s[2]+"\n"),a}function f(b){var c=m;if(j?b=j(b,d):g&&(b=b.replace(/\n/g,function(){return m++,"$line="+m+";"})),0===b.indexOf("=")){var e=l&&!/^=[=#]/.test(b);if(b=b.replace(/^=[=#]?|[\s;]*$/g,""),e){var f=b.replace(/\s*\([^\)]+\)/,"");n[f]||/^(include|print)$/.test(f)||(b="$escape("+b+")")}else b="$string("+b+")";b=s[1]+b+s[2]}return g&&(b="$line="+c+";"+b),r(a(b),function(a){if(a&&!p[a]){var b;b="print"===a?u:"include"===a?v:n[a]?"$utils."+a:o[a]?"$helpers."+a:"$data."+a,w+=a+"="+b+",",p[a]=!0}}),b+"\n"}var g=d.debug,h=d.openTag,i=d.closeTag,j=d.parser,k=d.compress,l=d.escape,m=1,p={$data:1,$filename:1,$utils:1,$helpers:1,$out:1,$line:1},q="".trim,s=q?["$out='';","$out+=",";","$out"]:["$out=[];","$out.push(",");","$out.join('')"],t=q?"$out+=text;return $out;":"$out.push(text);",u="function(){var text=''.concat.apply('',arguments);"+t+"}",v="function(filename,data){data=data||$data;var text=$utils.$include(filename,data,$filename);"+t+"}",w="'use strict';var $utils=this,$helpers=$utils.$helpers,"+(g?"$line=0,":""),x=s[0],y="return new String("+s[3]+");";r(c.split(h),function(a){a=a.split(i);var b=a[0],c=a[1];1===a.length?x+=e(b):(x+=f(b),c&&(x+=e(c)))});var z=w+x+y;g&&(z="try{"+z+"}catch(e){throw {filename:$filename,name:'Render Error',message:e.message,line:$line,source:"+b(c)+".split(/\\n/)[$line-1].replace(/^\\s+/,'')};}");try{var A=new Function("$data","$filename",z);return A.prototype=n,A}catch(a){throw a.temp="function anonymous($data,$filename) {"+z+"}",a}}var d=function(a,b){return"string"==typeof b?q(b,{filename:a}):g(a,b)};d.version="3.0.0",d.config=function(a,b){e[a]=b};var e=d.defaults={openTag:"<%",closeTag:"%>",escape:!0,cache:!0,compress:!1,parser:null},f=d.cache={};d.render=function(a,b){return q(a)(b)};var g=d.renderFile=function(a,b){var c=d.get(a)||p({filename:a,name:"Render Error",message:"Template not found"});return b?c(b):c};d.get=function(a){var b;if(f[a])b=f[a];else if("object"==typeof document){var c=document.getElementById(a);if(c){var d=(c.value||c.innerHTML).replace(/^\s*|\s*$/g,"");b=q(d,{filename:a})}}return b};var h=function(a,b){return"string"!=typeof a&&(b=typeof a,"number"===b?a+="":a="function"===b?h(a.call(a)):""),a},i={"<":"&#60;",">":"&#62;",'"':"&#34;","'":"&#39;","&":"&#38;"},j=function(a){return i[a]},k=function(a){return h(a).replace(/&(?![\w#]+;)|[<>"']/g,j)},l=Array.isArray||function(a){return"[object Array]"==={}.toString.call(a)},m=function(a,b){var c,d;if(l(a))for(c=0,d=a.length;c<d;c++)b.call(a,a[c],c,a);else for(c in a)b.call(a,a[c],c)},n=d.utils={$helpers:{},$include:g,$string:h,$escape:k,$each:m};d.helper=function(a,b){o[a]=b};var o=d.helpers=n.$helpers;d.onerror=function(a){var b="Template Error\n\n";for(var c in a)b+="<"+c+">\n"+a[c]+"\n\n";"object"==typeof console&&console.error(b)};var p=function(a){return d.onerror(a),function(){return"{Template Error}"}},q=d.compile=function(a,b){function d(c){try{return new i(c,h)+""}catch(d){return b.debug?p(d)():(b.debug=!0,q(a,b)(c))}}b=b||{};for(var g in e)void 0===b[g]&&(b[g]=e[g]);var h=b.filename;try{var i=c(a,b)}catch(a){return a.filename=h||"anonymous",a.name="Syntax Error",p(a)}return d.prototype=i.prototype,d.toString=function(){return i.toString()},h&&b.cache&&(f[h]=d),d},r=n.$each,s="break,case,catch,continue,debugger,default,delete,do,else,false,finally,for,function,if,in,instanceof,new,null,return,switch,this,throw,true,try,typeof,var,void,while,with,abstract,boolean,byte,char,class,const,double,enum,export,extends,final,float,goto,implements,import,int,interface,long,native,package,private,protected,public,short,static,super,synchronized,throws,transient,volatile,arguments,let,yield,undefined",t=/\/\*[\w\W]*?\*\/|\/\/[^\n]*\n|\/\/[^\n]*$|"(?:[^"\\]|\\[\w\W])*"|'(?:[^'\\]|\\[\w\W])*'|\s*\.\s*[$\w\.]+/g,u=/[^\w$]+/g,v=new RegExp(["\\b"+s.replace(/,/g,"\\b|\\b")+"\\b"].join("|"),"g"),w=/^\d[^,]*|,\d[^,]*/g,x=/^,+|,+$/g,y=/^$|,+/;"object"==typeof exports&&"undefined"!=typeof module?module.exports=d:"function"==typeof define?define('template',[],function(){return d}):this.template=d}();
  923. //! moment.js
  924. ;(function (global, factory) {
  925. typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
  926. typeof define === 'function' && define.amd ? define('moment/moment',factory) :
  927. global.moment = factory()
  928. }(this, (function () { 'use strict';
  929. var hookCallback;
  930. function hooks () {
  931. return hookCallback.apply(null, arguments);
  932. }
  933. // This is done to register the method called with moment()
  934. // without creating circular dependencies.
  935. function setHookCallback (callback) {
  936. hookCallback = callback;
  937. }
  938. function isArray(input) {
  939. return input instanceof Array || Object.prototype.toString.call(input) === '[object Array]';
  940. }
  941. function isObject(input) {
  942. // IE8 will treat undefined and null as object if it wasn't for
  943. // input != null
  944. return input != null && Object.prototype.toString.call(input) === '[object Object]';
  945. }
  946. function isObjectEmpty(obj) {
  947. if (Object.getOwnPropertyNames) {
  948. return (Object.getOwnPropertyNames(obj).length === 0);
  949. } else {
  950. var k;
  951. for (k in obj) {
  952. if (obj.hasOwnProperty(k)) {
  953. return false;
  954. }
  955. }
  956. return true;
  957. }
  958. }
  959. function isUndefined(input) {
  960. return input === void 0;
  961. }
  962. function isNumber(input) {
  963. return typeof input === 'number' || Object.prototype.toString.call(input) === '[object Number]';
  964. }
  965. function isDate(input) {
  966. return input instanceof Date || Object.prototype.toString.call(input) === '[object Date]';
  967. }
  968. function map(arr, fn) {
  969. var res = [], i;
  970. for (i = 0; i < arr.length; ++i) {
  971. res.push(fn(arr[i], i));
  972. }
  973. return res;
  974. }
  975. function hasOwnProp(a, b) {
  976. return Object.prototype.hasOwnProperty.call(a, b);
  977. }
  978. function extend(a, b) {
  979. for (var i in b) {
  980. if (hasOwnProp(b, i)) {
  981. a[i] = b[i];
  982. }
  983. }
  984. if (hasOwnProp(b, 'toString')) {
  985. a.toString = b.toString;
  986. }
  987. if (hasOwnProp(b, 'valueOf')) {
  988. a.valueOf = b.valueOf;
  989. }
  990. return a;
  991. }
  992. function createUTC (input, format, locale, strict) {
  993. return createLocalOrUTC(input, format, locale, strict, true).utc();
  994. }
  995. function defaultParsingFlags() {
  996. // We need to deep clone this object.
  997. return {
  998. empty : false,
  999. unusedTokens : [],
  1000. unusedInput : [],
  1001. overflow : -2,
  1002. charsLeftOver : 0,
  1003. nullInput : false,
  1004. invalidMonth : null,
  1005. invalidFormat : false,
  1006. userInvalidated : false,
  1007. iso : false,
  1008. parsedDateParts : [],
  1009. meridiem : null,
  1010. rfc2822 : false,
  1011. weekdayMismatch : false
  1012. };
  1013. }
  1014. function getParsingFlags(m) {
  1015. if (m._pf == null) {
  1016. m._pf = defaultParsingFlags();
  1017. }
  1018. return m._pf;
  1019. }
  1020. var some;
  1021. if (Array.prototype.some) {
  1022. some = Array.prototype.some;
  1023. } else {
  1024. some = function (fun) {
  1025. var t = Object(this);
  1026. var len = t.length >>> 0;
  1027. for (var i = 0; i < len; i++) {
  1028. if (i in t && fun.call(this, t[i], i, t)) {
  1029. return true;
  1030. }
  1031. }
  1032. return false;
  1033. };
  1034. }
  1035. function isValid(m) {
  1036. if (m._isValid == null) {
  1037. var flags = getParsingFlags(m);
  1038. var parsedParts = some.call(flags.parsedDateParts, function (i) {
  1039. return i != null;
  1040. });
  1041. var isNowValid = !isNaN(m._d.getTime()) &&
  1042. flags.overflow < 0 &&
  1043. !flags.empty &&
  1044. !flags.invalidMonth &&
  1045. !flags.invalidWeekday &&
  1046. !flags.weekdayMismatch &&
  1047. !flags.nullInput &&
  1048. !flags.invalidFormat &&
  1049. !flags.userInvalidated &&
  1050. (!flags.meridiem || (flags.meridiem && parsedParts));
  1051. if (m._strict) {
  1052. isNowValid = isNowValid &&
  1053. flags.charsLeftOver === 0 &&
  1054. flags.unusedTokens.length === 0 &&
  1055. flags.bigHour === undefined;
  1056. }
  1057. if (Object.isFrozen == null || !Object.isFrozen(m)) {
  1058. m._isValid = isNowValid;
  1059. }
  1060. else {
  1061. return isNowValid;
  1062. }
  1063. }
  1064. return m._isValid;
  1065. }
  1066. function createInvalid (flags) {
  1067. var m = createUTC(NaN);
  1068. if (flags != null) {
  1069. extend(getParsingFlags(m), flags);
  1070. }
  1071. else {
  1072. getParsingFlags(m).userInvalidated = true;
  1073. }
  1074. return m;
  1075. }
  1076. // Plugins that add properties should also add the key here (null value),
  1077. // so we can properly clone ourselves.
  1078. var momentProperties = hooks.momentProperties = [];
  1079. function copyConfig(to, from) {
  1080. var i, prop, val;
  1081. if (!isUndefined(from._isAMomentObject)) {
  1082. to._isAMomentObject = from._isAMomentObject;
  1083. }
  1084. if (!isUndefined(from._i)) {
  1085. to._i = from._i;
  1086. }
  1087. if (!isUndefined(from._f)) {
  1088. to._f = from._f;
  1089. }
  1090. if (!isUndefined(from._l)) {
  1091. to._l = from._l;
  1092. }
  1093. if (!isUndefined(from._strict)) {
  1094. to._strict = from._strict;
  1095. }
  1096. if (!isUndefined(from._tzm)) {
  1097. to._tzm = from._tzm;
  1098. }
  1099. if (!isUndefined(from._isUTC)) {
  1100. to._isUTC = from._isUTC;
  1101. }
  1102. if (!isUndefined(from._offset)) {
  1103. to._offset = from._offset;
  1104. }
  1105. if (!isUndefined(from._pf)) {
  1106. to._pf = getParsingFlags(from);
  1107. }
  1108. if (!isUndefined(from._locale)) {
  1109. to._locale = from._locale;
  1110. }
  1111. if (momentProperties.length > 0) {
  1112. for (i = 0; i < momentProperties.length; i++) {
  1113. prop = momentProperties[i];
  1114. val = from[prop];
  1115. if (!isUndefined(val)) {
  1116. to[prop] = val;
  1117. }
  1118. }
  1119. }
  1120. return to;
  1121. }
  1122. var updateInProgress = false;
  1123. // Moment prototype object
  1124. function Moment(config) {
  1125. copyConfig(this, config);
  1126. this._d = new Date(config._d != null ? config._d.getTime() : NaN);
  1127. if (!this.isValid()) {
  1128. this._d = new Date(NaN);
  1129. }
  1130. // Prevent infinite loop in case updateOffset creates new moment
  1131. // objects.
  1132. if (updateInProgress === false) {
  1133. updateInProgress = true;
  1134. hooks.updateOffset(this);
  1135. updateInProgress = false;
  1136. }
  1137. }
  1138. function isMoment (obj) {
  1139. return obj instanceof Moment || (obj != null && obj._isAMomentObject != null);
  1140. }
  1141. function absFloor (number) {
  1142. if (number < 0) {
  1143. // -0 -> 0
  1144. return Math.ceil(number) || 0;
  1145. } else {
  1146. return Math.floor(number);
  1147. }
  1148. }
  1149. function toInt(argumentForCoercion) {
  1150. var coercedNumber = +argumentForCoercion,
  1151. value = 0;
  1152. if (coercedNumber !== 0 && isFinite(coercedNumber)) {
  1153. value = absFloor(coercedNumber);
  1154. }
  1155. return value;
  1156. }
  1157. // compare two arrays, return the number of differences
  1158. function compareArrays(array1, array2, dontConvert) {
  1159. var len = Math.min(array1.length, array2.length),
  1160. lengthDiff = Math.abs(array1.length - array2.length),
  1161. diffs = 0,
  1162. i;
  1163. for (i = 0; i < len; i++) {
  1164. if ((dontConvert && array1[i] !== array2[i]) ||
  1165. (!dontConvert && toInt(array1[i]) !== toInt(array2[i]))) {
  1166. diffs++;
  1167. }
  1168. }
  1169. return diffs + lengthDiff;
  1170. }
  1171. function warn(msg) {
  1172. if (hooks.suppressDeprecationWarnings === false &&
  1173. (typeof console !== 'undefined') && console.warn) {
  1174. console.warn('Deprecation warning: ' + msg);
  1175. }
  1176. }
  1177. function deprecate(msg, fn) {
  1178. var firstTime = true;
  1179. return extend(function () {
  1180. if (hooks.deprecationHandler != null) {
  1181. hooks.deprecationHandler(null, msg);
  1182. }
  1183. if (firstTime) {
  1184. var args = [];
  1185. var arg;
  1186. for (var i = 0; i < arguments.length; i++) {
  1187. arg = '';
  1188. if (typeof arguments[i] === 'object') {
  1189. arg += '\n[' + i + '] ';
  1190. for (var key in arguments[0]) {
  1191. arg += key + ': ' + arguments[0][key] + ', ';
  1192. }
  1193. arg = arg.slice(0, -2); // Remove trailing comma and space
  1194. } else {
  1195. arg = arguments[i];
  1196. }
  1197. args.push(arg);
  1198. }
  1199. warn(msg + '\nArguments: ' + Array.prototype.slice.call(args).join('') + '\n' + (new Error()).stack);
  1200. firstTime = false;
  1201. }
  1202. return fn.apply(this, arguments);
  1203. }, fn);
  1204. }
  1205. var deprecations = {};
  1206. function deprecateSimple(name, msg) {
  1207. if (hooks.deprecationHandler != null) {
  1208. hooks.deprecationHandler(name, msg);
  1209. }
  1210. if (!deprecations[name]) {
  1211. warn(msg);
  1212. deprecations[name] = true;
  1213. }
  1214. }
  1215. hooks.suppressDeprecationWarnings = false;
  1216. hooks.deprecationHandler = null;
  1217. function isFunction(input) {
  1218. return input instanceof Function || Object.prototype.toString.call(input) === '[object Function]';
  1219. }
  1220. function set (config) {
  1221. var prop, i;
  1222. for (i in config) {
  1223. prop = config[i];
  1224. if (isFunction(prop)) {
  1225. this[i] = prop;
  1226. } else {
  1227. this['_' + i] = prop;
  1228. }
  1229. }
  1230. this._config = config;
  1231. // Lenient ordinal parsing accepts just a number in addition to
  1232. // number + (possibly) stuff coming from _dayOfMonthOrdinalParse.
  1233. // TODO: Remove "ordinalParse" fallback in next major release.
  1234. this._dayOfMonthOrdinalParseLenient = new RegExp(
  1235. (this._dayOfMonthOrdinalParse.source || this._ordinalParse.source) +
  1236. '|' + (/\d{1,2}/).source);
  1237. }
  1238. function mergeConfigs(parentConfig, childConfig) {
  1239. var res = extend({}, parentConfig), prop;
  1240. for (prop in childConfig) {
  1241. if (hasOwnProp(childConfig, prop)) {
  1242. if (isObject(parentConfig[prop]) && isObject(childConfig[prop])) {
  1243. res[prop] = {};
  1244. extend(res[prop], parentConfig[prop]);
  1245. extend(res[prop], childConfig[prop]);
  1246. } else if (childConfig[prop] != null) {
  1247. res[prop] = childConfig[prop];
  1248. } else {
  1249. delete res[prop];
  1250. }
  1251. }
  1252. }
  1253. for (prop in parentConfig) {
  1254. if (hasOwnProp(parentConfig, prop) &&
  1255. !hasOwnProp(childConfig, prop) &&
  1256. isObject(parentConfig[prop])) {
  1257. // make sure changes to properties don't modify parent config
  1258. res[prop] = extend({}, res[prop]);
  1259. }
  1260. }
  1261. return res;
  1262. }
  1263. function Locale(config) {
  1264. if (config != null) {
  1265. this.set(config);
  1266. }
  1267. }
  1268. var keys;
  1269. if (Object.keys) {
  1270. keys = Object.keys;
  1271. } else {
  1272. keys = function (obj) {
  1273. var i, res = [];
  1274. for (i in obj) {
  1275. if (hasOwnProp(obj, i)) {
  1276. res.push(i);
  1277. }
  1278. }
  1279. return res;
  1280. };
  1281. }
  1282. var defaultCalendar = {
  1283. sameDay : '[Today at] LT',
  1284. nextDay : '[Tomorrow at] LT',
  1285. nextWeek : 'dddd [at] LT',
  1286. lastDay : '[Yesterday at] LT',
  1287. lastWeek : '[Last] dddd [at] LT',
  1288. sameElse : 'L'
  1289. };
  1290. function calendar (key, mom, now) {
  1291. var output = this._calendar[key] || this._calendar['sameElse'];
  1292. return isFunction(output) ? output.call(mom, now) : output;
  1293. }
  1294. var defaultLongDateFormat = {
  1295. LTS : 'h:mm:ss A',
  1296. LT : 'h:mm A',
  1297. L : 'MM/DD/YYYY',
  1298. LL : 'MMMM D, YYYY',
  1299. LLL : 'MMMM D, YYYY h:mm A',
  1300. LLLL : 'dddd, MMMM D, YYYY h:mm A'
  1301. };
  1302. function longDateFormat (key) {
  1303. var format = this._longDateFormat[key],
  1304. formatUpper = this._longDateFormat[key.toUpperCase()];
  1305. if (format || !formatUpper) {
  1306. return format;
  1307. }
  1308. this._longDateFormat[key] = formatUpper.replace(/MMMM|MM|DD|dddd/g, function (val) {
  1309. return val.slice(1);
  1310. });
  1311. return this._longDateFormat[key];
  1312. }
  1313. var defaultInvalidDate = 'Invalid date';
  1314. function invalidDate () {
  1315. return this._invalidDate;
  1316. }
  1317. var defaultOrdinal = '%d';
  1318. var defaultDayOfMonthOrdinalParse = /\d{1,2}/;
  1319. function ordinal (number) {
  1320. return this._ordinal.replace('%d', number);
  1321. }
  1322. var defaultRelativeTime = {
  1323. future : 'in %s',
  1324. past : '%s ago',
  1325. s : 'a few seconds',
  1326. ss : '%d seconds',
  1327. m : 'a minute',
  1328. mm : '%d minutes',
  1329. h : 'an hour',
  1330. hh : '%d hours',
  1331. d : 'a day',
  1332. dd : '%d days',
  1333. M : 'a month',
  1334. MM : '%d months',
  1335. y : 'a year',
  1336. yy : '%d years'
  1337. };
  1338. function relativeTime (number, withoutSuffix, string, isFuture) {
  1339. var output = this._relativeTime[string];
  1340. return (isFunction(output)) ?
  1341. output(number, withoutSuffix, string, isFuture) :
  1342. output.replace(/%d/i, number);
  1343. }
  1344. function pastFuture (diff, output) {
  1345. var format = this._relativeTime[diff > 0 ? 'future' : 'past'];
  1346. return isFunction(format) ? format(output) : format.replace(/%s/i, output);
  1347. }
  1348. var aliases = {};
  1349. function addUnitAlias (unit, shorthand) {
  1350. var lowerCase = unit.toLowerCase();
  1351. aliases[lowerCase] = aliases[lowerCase + 's'] = aliases[shorthand] = unit;
  1352. }
  1353. function normalizeUnits(units) {
  1354. return typeof units === 'string' ? aliases[units] || aliases[units.toLowerCase()] : undefined;
  1355. }
  1356. function normalizeObjectUnits(inputObject) {
  1357. var normalizedInput = {},
  1358. normalizedProp,
  1359. prop;
  1360. for (prop in inputObject) {
  1361. if (hasOwnProp(inputObject, prop)) {
  1362. normalizedProp = normalizeUnits(prop);
  1363. if (normalizedProp) {
  1364. normalizedInput[normalizedProp] = inputObject[prop];
  1365. }
  1366. }
  1367. }
  1368. return normalizedInput;
  1369. }
  1370. var priorities = {};
  1371. function addUnitPriority(unit, priority) {
  1372. priorities[unit] = priority;
  1373. }
  1374. function getPrioritizedUnits(unitsObj) {
  1375. var units = [];
  1376. for (var u in unitsObj) {
  1377. units.push({unit: u, priority: priorities[u]});
  1378. }
  1379. units.sort(function (a, b) {
  1380. return a.priority - b.priority;
  1381. });
  1382. return units;
  1383. }
  1384. function zeroFill(number, targetLength, forceSign) {
  1385. var absNumber = '' + Math.abs(number),
  1386. zerosToFill = targetLength - absNumber.length,
  1387. sign = number >= 0;
  1388. return (sign ? (forceSign ? '+' : '') : '-') +
  1389. Math.pow(10, Math.max(0, zerosToFill)).toString().substr(1) + absNumber;
  1390. }
  1391. var formattingTokens = /(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g;
  1392. var localFormattingTokens = /(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g;
  1393. var formatFunctions = {};
  1394. var formatTokenFunctions = {};
  1395. // token: 'M'
  1396. // padded: ['MM', 2]
  1397. // ordinal: 'Mo'
  1398. // callback: function () { this.month() + 1 }
  1399. function addFormatToken (token, padded, ordinal, callback) {
  1400. var func = callback;
  1401. if (typeof callback === 'string') {
  1402. func = function () {
  1403. return this[callback]();
  1404. };
  1405. }
  1406. if (token) {
  1407. formatTokenFunctions[token] = func;
  1408. }
  1409. if (padded) {
  1410. formatTokenFunctions[padded[0]] = function () {
  1411. return zeroFill(func.apply(this, arguments), padded[1], padded[2]);
  1412. };
  1413. }
  1414. if (ordinal) {
  1415. formatTokenFunctions[ordinal] = function () {
  1416. return this.localeData().ordinal(func.apply(this, arguments), token);
  1417. };
  1418. }
  1419. }
  1420. function removeFormattingTokens(input) {
  1421. if (input.match(/\[[\s\S]/)) {
  1422. return input.replace(/^\[|\]$/g, '');
  1423. }
  1424. return input.replace(/\\/g, '');
  1425. }
  1426. function makeFormatFunction(format) {
  1427. var array = format.match(formattingTokens), i, length;
  1428. for (i = 0, length = array.length; i < length; i++) {
  1429. if (formatTokenFunctions[array[i]]) {
  1430. array[i] = formatTokenFunctions[array[i]];
  1431. } else {
  1432. array[i] = removeFormattingTokens(array[i]);
  1433. }
  1434. }
  1435. return function (mom) {
  1436. var output = '', i;
  1437. for (i = 0; i < length; i++) {
  1438. output += isFunction(array[i]) ? array[i].call(mom, format) : array[i];
  1439. }
  1440. return output;
  1441. };
  1442. }
  1443. // format date using native date object
  1444. function formatMoment(m, format) {
  1445. if (!m.isValid()) {
  1446. return m.localeData().invalidDate();
  1447. }
  1448. format = expandFormat(format, m.localeData());
  1449. formatFunctions[format] = formatFunctions[format] || makeFormatFunction(format);
  1450. return formatFunctions[format](m);
  1451. }
  1452. function expandFormat(format, locale) {
  1453. var i = 5;
  1454. function replaceLongDateFormatTokens(input) {
  1455. return locale.longDateFormat(input) || input;
  1456. }
  1457. localFormattingTokens.lastIndex = 0;
  1458. while (i >= 0 && localFormattingTokens.test(format)) {
  1459. format = format.replace(localFormattingTokens, replaceLongDateFormatTokens);
  1460. localFormattingTokens.lastIndex = 0;
  1461. i -= 1;
  1462. }
  1463. return format;
  1464. }
  1465. var match1 = /\d/; // 0 - 9
  1466. var match2 = /\d\d/; // 00 - 99
  1467. var match3 = /\d{3}/; // 000 - 999
  1468. var match4 = /\d{4}/; // 0000 - 9999
  1469. var match6 = /[+-]?\d{6}/; // -999999 - 999999
  1470. var match1to2 = /\d\d?/; // 0 - 99
  1471. var match3to4 = /\d\d\d\d?/; // 999 - 9999
  1472. var match5to6 = /\d\d\d\d\d\d?/; // 99999 - 999999
  1473. var match1to3 = /\d{1,3}/; // 0 - 999
  1474. var match1to4 = /\d{1,4}/; // 0 - 9999
  1475. var match1to6 = /[+-]?\d{1,6}/; // -999999 - 999999
  1476. var matchUnsigned = /\d+/; // 0 - inf
  1477. var matchSigned = /[+-]?\d+/; // -inf - inf
  1478. var matchOffset = /Z|[+-]\d\d:?\d\d/gi; // +00:00 -00:00 +0000 -0000 or Z
  1479. var matchShortOffset = /Z|[+-]\d\d(?::?\d\d)?/gi; // +00 -00 +00:00 -00:00 +0000 -0000 or Z
  1480. var matchTimestamp = /[+-]?\d+(\.\d{1,3})?/; // 123456789 123456789.123
  1481. // any word (or two) characters or numbers including two/three word month in arabic.
  1482. // includes scottish gaelic two word and hyphenated months
  1483. var matchWord = /[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i;
  1484. var regexes = {};
  1485. function addRegexToken (token, regex, strictRegex) {
  1486. regexes[token] = isFunction(regex) ? regex : function (isStrict, localeData) {
  1487. return (isStrict && strictRegex) ? strictRegex : regex;
  1488. };
  1489. }
  1490. function getParseRegexForToken (token, config) {
  1491. if (!hasOwnProp(regexes, token)) {
  1492. return new RegExp(unescapeFormat(token));
  1493. }
  1494. return regexes[token](config._strict, config._locale);
  1495. }
  1496. // Code from http://stackoverflow.com/questions/3561493/is-there-a-regexp-escape-function-in-javascript
  1497. function unescapeFormat(s) {
  1498. return regexEscape(s.replace('\\', '').replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g, function (matched, p1, p2, p3, p4) {
  1499. return p1 || p2 || p3 || p4;
  1500. }));
  1501. }
  1502. function regexEscape(s) {
  1503. return s.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&');
  1504. }
  1505. var tokens = {};
  1506. function addParseToken (token, callback) {
  1507. var i, func = callback;
  1508. if (typeof token === 'string') {
  1509. token = [token];
  1510. }
  1511. if (isNumber(callback)) {
  1512. func = function (input, array) {
  1513. array[callback] = toInt(input);
  1514. };
  1515. }
  1516. for (i = 0; i < token.length; i++) {
  1517. tokens[token[i]] = func;
  1518. }
  1519. }
  1520. function addWeekParseToken (token, callback) {
  1521. addParseToken(token, function (input, array, config, token) {
  1522. config._w = config._w || {};
  1523. callback(input, config._w, config, token);
  1524. });
  1525. }
  1526. function addTimeToArrayFromToken(token, input, config) {
  1527. if (input != null && hasOwnProp(tokens, token)) {
  1528. tokens[token](input, config._a, config, token);
  1529. }
  1530. }
  1531. var YEAR = 0;
  1532. var MONTH = 1;
  1533. var DATE = 2;
  1534. var HOUR = 3;
  1535. var MINUTE = 4;
  1536. var SECOND = 5;
  1537. var MILLISECOND = 6;
  1538. var WEEK = 7;
  1539. var WEEKDAY = 8;
  1540. // FORMATTING
  1541. addFormatToken('Y', 0, 0, function () {
  1542. var y = this.year();
  1543. return y <= 9999 ? '' + y : '+' + y;
  1544. });
  1545. addFormatToken(0, ['YY', 2], 0, function () {
  1546. return this.year() % 100;
  1547. });
  1548. addFormatToken(0, ['YYYY', 4], 0, 'year');
  1549. addFormatToken(0, ['YYYYY', 5], 0, 'year');
  1550. addFormatToken(0, ['YYYYYY', 6, true], 0, 'year');
  1551. // ALIASES
  1552. addUnitAlias('year', 'y');
  1553. // PRIORITIES
  1554. addUnitPriority('year', 1);
  1555. // PARSING
  1556. addRegexToken('Y', matchSigned);
  1557. addRegexToken('YY', match1to2, match2);
  1558. addRegexToken('YYYY', match1to4, match4);
  1559. addRegexToken('YYYYY', match1to6, match6);
  1560. addRegexToken('YYYYYY', match1to6, match6);
  1561. addParseToken(['YYYYY', 'YYYYYY'], YEAR);
  1562. addParseToken('YYYY', function (input, array) {
  1563. array[YEAR] = input.length === 2 ? hooks.parseTwoDigitYear(input) : toInt(input);
  1564. });
  1565. addParseToken('YY', function (input, array) {
  1566. array[YEAR] = hooks.parseTwoDigitYear(input);
  1567. });
  1568. addParseToken('Y', function (input, array) {
  1569. array[YEAR] = parseInt(input, 10);
  1570. });
  1571. // HELPERS
  1572. function daysInYear(year) {
  1573. return isLeapYear(year) ? 366 : 365;
  1574. }
  1575. function isLeapYear(year) {
  1576. return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0;
  1577. }
  1578. // HOOKS
  1579. hooks.parseTwoDigitYear = function (input) {
  1580. return toInt(input) + (toInt(input) > 68 ? 1900 : 2000);
  1581. };
  1582. // MOMENTS
  1583. var getSetYear = makeGetSet('FullYear', true);
  1584. function getIsLeapYear () {
  1585. return isLeapYear(this.year());
  1586. }
  1587. function makeGetSet (unit, keepTime) {
  1588. return function (value) {
  1589. if (value != null) {
  1590. set$1(this, unit, value);
  1591. hooks.updateOffset(this, keepTime);
  1592. return this;
  1593. } else {
  1594. return get(this, unit);
  1595. }
  1596. };
  1597. }
  1598. function get (mom, unit) {
  1599. return mom.isValid() ?
  1600. mom._d['get' + (mom._isUTC ? 'UTC' : '') + unit]() : NaN;
  1601. }
  1602. function set$1 (mom, unit, value) {
  1603. if (mom.isValid() && !isNaN(value)) {
  1604. if (unit === 'FullYear' && isLeapYear(mom.year()) && mom.month() === 1 && mom.date() === 29) {
  1605. mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value, mom.month(), daysInMonth(value, mom.month()));
  1606. }
  1607. else {
  1608. mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value);
  1609. }
  1610. }
  1611. }
  1612. // MOMENTS
  1613. function stringGet (units) {
  1614. units = normalizeUnits(units);
  1615. if (isFunction(this[units])) {
  1616. return this[units]();
  1617. }
  1618. return this;
  1619. }
  1620. function stringSet (units, value) {
  1621. if (typeof units === 'object') {
  1622. units = normalizeObjectUnits(units);
  1623. var prioritized = getPrioritizedUnits(units);
  1624. for (var i = 0; i < prioritized.length; i++) {
  1625. this[prioritized[i].unit](units[prioritized[i].unit]);
  1626. }
  1627. } else {
  1628. units = normalizeUnits(units);
  1629. if (isFunction(this[units])) {
  1630. return this[units](value);
  1631. }
  1632. }
  1633. return this;
  1634. }
  1635. function mod(n, x) {
  1636. return ((n % x) + x) % x;
  1637. }
  1638. var indexOf;
  1639. if (Array.prototype.indexOf) {
  1640. indexOf = Array.prototype.indexOf;
  1641. } else {
  1642. indexOf = function (o) {
  1643. // I know
  1644. var i;
  1645. for (i = 0; i < this.length; ++i) {
  1646. if (this[i] === o) {
  1647. return i;
  1648. }
  1649. }
  1650. return -1;
  1651. };
  1652. }
  1653. function daysInMonth(year, month) {
  1654. if (isNaN(year) || isNaN(month)) {
  1655. return NaN;
  1656. }
  1657. var modMonth = mod(month, 12);
  1658. year += (month - modMonth) / 12;
  1659. return modMonth === 1 ? (isLeapYear(year) ? 29 : 28) : (31 - modMonth % 7 % 2);
  1660. }
  1661. // FORMATTING
  1662. addFormatToken('M', ['MM', 2], 'Mo', function () {
  1663. return this.month() + 1;
  1664. });
  1665. addFormatToken('MMM', 0, 0, function (format) {
  1666. return this.localeData().monthsShort(this, format);
  1667. });
  1668. addFormatToken('MMMM', 0, 0, function (format) {
  1669. return this.localeData().months(this, format);
  1670. });
  1671. // ALIASES
  1672. addUnitAlias('month', 'M');
  1673. // PRIORITY
  1674. addUnitPriority('month', 8);
  1675. // PARSING
  1676. addRegexToken('M', match1to2);
  1677. addRegexToken('MM', match1to2, match2);
  1678. addRegexToken('MMM', function (isStrict, locale) {
  1679. return locale.monthsShortRegex(isStrict);
  1680. });
  1681. addRegexToken('MMMM', function (isStrict, locale) {
  1682. return locale.monthsRegex(isStrict);
  1683. });
  1684. addParseToken(['M', 'MM'], function (input, array) {
  1685. array[MONTH] = toInt(input) - 1;
  1686. });
  1687. addParseToken(['MMM', 'MMMM'], function (input, array, config, token) {
  1688. var month = config._locale.monthsParse(input, token, config._strict);
  1689. // if we didn't find a month name, mark the date as invalid.
  1690. if (month != null) {
  1691. array[MONTH] = month;
  1692. } else {
  1693. getParsingFlags(config).invalidMonth = input;
  1694. }
  1695. });
  1696. // LOCALES
  1697. var MONTHS_IN_FORMAT = /D[oD]?(\[[^\[\]]*\]|\s)+MMMM?/;
  1698. var defaultLocaleMonths = 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_');
  1699. function localeMonths (m, format) {
  1700. if (!m) {
  1701. return isArray(this._months) ? this._months :
  1702. this._months['standalone'];
  1703. }
  1704. return isArray(this._months) ? this._months[m.month()] :
  1705. this._months[(this._months.isFormat || MONTHS_IN_FORMAT).test(format) ? 'format' : 'standalone'][m.month()];
  1706. }
  1707. var defaultLocaleMonthsShort = 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_');
  1708. function localeMonthsShort (m, format) {
  1709. if (!m) {
  1710. return isArray(this._monthsShort) ? this._monthsShort :
  1711. this._monthsShort['standalone'];
  1712. }
  1713. return isArray(this._monthsShort) ? this._monthsShort[m.month()] :
  1714. this._monthsShort[MONTHS_IN_FORMAT.test(format) ? 'format' : 'standalone'][m.month()];
  1715. }
  1716. function handleStrictParse(monthName, format, strict) {
  1717. var i, ii, mom, llc = monthName.toLocaleLowerCase();
  1718. if (!this._monthsParse) {
  1719. // this is not used
  1720. this._monthsParse = [];
  1721. this._longMonthsParse = [];
  1722. this._shortMonthsParse = [];
  1723. for (i = 0; i < 12; ++i) {
  1724. mom = createUTC([2000, i]);
  1725. this._shortMonthsParse[i] = this.monthsShort(mom, '').toLocaleLowerCase();
  1726. this._longMonthsParse[i] = this.months(mom, '').toLocaleLowerCase();
  1727. }
  1728. }
  1729. if (strict) {
  1730. if (format === 'MMM') {
  1731. ii = indexOf.call(this._shortMonthsParse, llc);
  1732. return ii !== -1 ? ii : null;
  1733. } else {
  1734. ii = indexOf.call(this._longMonthsParse, llc);
  1735. return ii !== -1 ? ii : null;
  1736. }
  1737. } else {
  1738. if (format === 'MMM') {
  1739. ii = indexOf.call(this._shortMonthsParse, llc);
  1740. if (ii !== -1) {
  1741. return ii;
  1742. }
  1743. ii = indexOf.call(this._longMonthsParse, llc);
  1744. return ii !== -1 ? ii : null;
  1745. } else {
  1746. ii = indexOf.call(this._longMonthsParse, llc);
  1747. if (ii !== -1) {
  1748. return ii;
  1749. }
  1750. ii = indexOf.call(this._shortMonthsParse, llc);
  1751. return ii !== -1 ? ii : null;
  1752. }
  1753. }
  1754. }
  1755. function localeMonthsParse (monthName, format, strict) {
  1756. var i, mom, regex;
  1757. if (this._monthsParseExact) {
  1758. return handleStrictParse.call(this, monthName, format, strict);
  1759. }
  1760. if (!this._monthsParse) {
  1761. this._monthsParse = [];
  1762. this._longMonthsParse = [];
  1763. this._shortMonthsParse = [];
  1764. }
  1765. // TODO: add sorting
  1766. // Sorting makes sure if one month (or abbr) is a prefix of another
  1767. // see sorting in computeMonthsParse
  1768. for (i = 0; i < 12; i++) {
  1769. // make the regex if we don't have it already
  1770. mom = createUTC([2000, i]);
  1771. if (strict && !this._longMonthsParse[i]) {
  1772. this._longMonthsParse[i] = new RegExp('^' + this.months(mom, '').replace('.', '') + '$', 'i');
  1773. this._shortMonthsParse[i] = new RegExp('^' + this.monthsShort(mom, '').replace('.', '') + '$', 'i');
  1774. }
  1775. if (!strict && !this._monthsParse[i]) {
  1776. regex = '^' + this.months(mom, '') + '|^' + this.monthsShort(mom, '');
  1777. this._monthsParse[i] = new RegExp(regex.replace('.', ''), 'i');
  1778. }
  1779. // test the regex
  1780. if (strict && format === 'MMMM' && this._longMonthsParse[i].test(monthName)) {
  1781. return i;
  1782. } else if (strict && format === 'MMM' && this._shortMonthsParse[i].test(monthName)) {
  1783. return i;
  1784. } else if (!strict && this._monthsParse[i].test(monthName)) {
  1785. return i;
  1786. }
  1787. }
  1788. }
  1789. // MOMENTS
  1790. function setMonth (mom, value) {
  1791. var dayOfMonth;
  1792. if (!mom.isValid()) {
  1793. // No op
  1794. return mom;
  1795. }
  1796. if (typeof value === 'string') {
  1797. if (/^\d+$/.test(value)) {
  1798. value = toInt(value);
  1799. } else {
  1800. value = mom.localeData().monthsParse(value);
  1801. // TODO: Another silent failure?
  1802. if (!isNumber(value)) {
  1803. return mom;
  1804. }
  1805. }
  1806. }
  1807. dayOfMonth = Math.min(mom.date(), daysInMonth(mom.year(), value));
  1808. mom._d['set' + (mom._isUTC ? 'UTC' : '') + 'Month'](value, dayOfMonth);
  1809. return mom;
  1810. }
  1811. function getSetMonth (value) {
  1812. if (value != null) {
  1813. setMonth(this, value);
  1814. hooks.updateOffset(this, true);
  1815. return this;
  1816. } else {
  1817. return get(this, 'Month');
  1818. }
  1819. }
  1820. function getDaysInMonth () {
  1821. return daysInMonth(this.year(), this.month());
  1822. }
  1823. var defaultMonthsShortRegex = matchWord;
  1824. function monthsShortRegex (isStrict) {
  1825. if (this._monthsParseExact) {
  1826. if (!hasOwnProp(this, '_monthsRegex')) {
  1827. computeMonthsParse.call(this);
  1828. }
  1829. if (isStrict) {
  1830. return this._monthsShortStrictRegex;
  1831. } else {
  1832. return this._monthsShortRegex;
  1833. }
  1834. } else {
  1835. if (!hasOwnProp(this, '_monthsShortRegex')) {
  1836. this._monthsShortRegex = defaultMonthsShortRegex;
  1837. }
  1838. return this._monthsShortStrictRegex && isStrict ?
  1839. this._monthsShortStrictRegex : this._monthsShortRegex;
  1840. }
  1841. }
  1842. var defaultMonthsRegex = matchWord;
  1843. function monthsRegex (isStrict) {
  1844. if (this._monthsParseExact) {
  1845. if (!hasOwnProp(this, '_monthsRegex')) {
  1846. computeMonthsParse.call(this);
  1847. }
  1848. if (isStrict) {
  1849. return this._monthsStrictRegex;
  1850. } else {
  1851. return this._monthsRegex;
  1852. }
  1853. } else {
  1854. if (!hasOwnProp(this, '_monthsRegex')) {
  1855. this._monthsRegex = defaultMonthsRegex;
  1856. }
  1857. return this._monthsStrictRegex && isStrict ?
  1858. this._monthsStrictRegex : this._monthsRegex;
  1859. }
  1860. }
  1861. function computeMonthsParse () {
  1862. function cmpLenRev(a, b) {
  1863. return b.length - a.length;
  1864. }
  1865. var shortPieces = [], longPieces = [], mixedPieces = [],
  1866. i, mom;
  1867. for (i = 0; i < 12; i++) {
  1868. // make the regex if we don't have it already
  1869. mom = createUTC([2000, i]);
  1870. shortPieces.push(this.monthsShort(mom, ''));
  1871. longPieces.push(this.months(mom, ''));
  1872. mixedPieces.push(this.months(mom, ''));
  1873. mixedPieces.push(this.monthsShort(mom, ''));
  1874. }
  1875. // Sorting makes sure if one month (or abbr) is a prefix of another it
  1876. // will match the longer piece.
  1877. shortPieces.sort(cmpLenRev);
  1878. longPieces.sort(cmpLenRev);
  1879. mixedPieces.sort(cmpLenRev);
  1880. for (i = 0; i < 12; i++) {
  1881. shortPieces[i] = regexEscape(shortPieces[i]);
  1882. longPieces[i] = regexEscape(longPieces[i]);
  1883. }
  1884. for (i = 0; i < 24; i++) {
  1885. mixedPieces[i] = regexEscape(mixedPieces[i]);
  1886. }
  1887. this._monthsRegex = new RegExp('^(' + mixedPieces.join('|') + ')', 'i');
  1888. this._monthsShortRegex = this._monthsRegex;
  1889. this._monthsStrictRegex = new RegExp('^(' + longPieces.join('|') + ')', 'i');
  1890. this._monthsShortStrictRegex = new RegExp('^(' + shortPieces.join('|') + ')', 'i');
  1891. }
  1892. function createDate (y, m, d, h, M, s, ms) {
  1893. // can't just apply() to create a date:
  1894. // https://stackoverflow.com/q/181348
  1895. var date;
  1896. // the date constructor remaps years 0-99 to 1900-1999
  1897. if (y < 100 && y >= 0) {
  1898. // preserve leap years using a full 400 year cycle, then reset
  1899. date = new Date(y + 400, m, d, h, M, s, ms);
  1900. if (isFinite(date.getFullYear())) {
  1901. date.setFullYear(y);
  1902. }
  1903. } else {
  1904. date = new Date(y, m, d, h, M, s, ms);
  1905. }
  1906. return date;
  1907. }
  1908. function createUTCDate (y) {
  1909. var date;
  1910. // the Date.UTC function remaps years 0-99 to 1900-1999
  1911. if (y < 100 && y >= 0) {
  1912. var args = Array.prototype.slice.call(arguments);
  1913. // preserve leap years using a full 400 year cycle, then reset
  1914. args[0] = y + 400;
  1915. date = new Date(Date.UTC.apply(null, args));
  1916. if (isFinite(date.getUTCFullYear())) {
  1917. date.setUTCFullYear(y);
  1918. }
  1919. } else {
  1920. date = new Date(Date.UTC.apply(null, arguments));
  1921. }
  1922. return date;
  1923. }
  1924. // start-of-first-week - start-of-year
  1925. function firstWeekOffset(year, dow, doy) {
  1926. var // first-week day -- which january is always in the first week (4 for iso, 1 for other)
  1927. fwd = 7 + dow - doy,
  1928. // first-week day local weekday -- which local weekday is fwd
  1929. fwdlw = (7 + createUTCDate(year, 0, fwd).getUTCDay() - dow) % 7;
  1930. return -fwdlw + fwd - 1;
  1931. }
  1932. // https://en.wikipedia.org/wiki/ISO_week_date#Calculating_a_date_given_the_year.2C_week_number_and_weekday
  1933. function dayOfYearFromWeeks(year, week, weekday, dow, doy) {
  1934. var localWeekday = (7 + weekday - dow) % 7,
  1935. weekOffset = firstWeekOffset(year, dow, doy),
  1936. dayOfYear = 1 + 7 * (week - 1) + localWeekday + weekOffset,
  1937. resYear, resDayOfYear;
  1938. if (dayOfYear <= 0) {
  1939. resYear = year - 1;
  1940. resDayOfYear = daysInYear(resYear) + dayOfYear;
  1941. } else if (dayOfYear > daysInYear(year)) {
  1942. resYear = year + 1;
  1943. resDayOfYear = dayOfYear - daysInYear(year);
  1944. } else {
  1945. resYear = year;
  1946. resDayOfYear = dayOfYear;
  1947. }
  1948. return {
  1949. year: resYear,
  1950. dayOfYear: resDayOfYear
  1951. };
  1952. }
  1953. function weekOfYear(mom, dow, doy) {
  1954. var weekOffset = firstWeekOffset(mom.year(), dow, doy),
  1955. week = Math.floor((mom.dayOfYear() - weekOffset - 1) / 7) + 1,
  1956. resWeek, resYear;
  1957. if (week < 1) {
  1958. resYear = mom.year() - 1;
  1959. resWeek = week + weeksInYear(resYear, dow, doy);
  1960. } else if (week > weeksInYear(mom.year(), dow, doy)) {
  1961. resWeek = week - weeksInYear(mom.year(), dow, doy);
  1962. resYear = mom.year() + 1;
  1963. } else {
  1964. resYear = mom.year();
  1965. resWeek = week;
  1966. }
  1967. return {
  1968. week: resWeek,
  1969. year: resYear
  1970. };
  1971. }
  1972. function weeksInYear(year, dow, doy) {
  1973. var weekOffset = firstWeekOffset(year, dow, doy),
  1974. weekOffsetNext = firstWeekOffset(year + 1, dow, doy);
  1975. return (daysInYear(year) - weekOffset + weekOffsetNext) / 7;
  1976. }
  1977. // FORMATTING
  1978. addFormatToken('w', ['ww', 2], 'wo', 'week');
  1979. addFormatToken('W', ['WW', 2], 'Wo', 'isoWeek');
  1980. // ALIASES
  1981. addUnitAlias('week', 'w');
  1982. addUnitAlias('isoWeek', 'W');
  1983. // PRIORITIES
  1984. addUnitPriority('week', 5);
  1985. addUnitPriority('isoWeek', 5);
  1986. // PARSING
  1987. addRegexToken('w', match1to2);
  1988. addRegexToken('ww', match1to2, match2);
  1989. addRegexToken('W', match1to2);
  1990. addRegexToken('WW', match1to2, match2);
  1991. addWeekParseToken(['w', 'ww', 'W', 'WW'], function (input, week, config, token) {
  1992. week[token.substr(0, 1)] = toInt(input);
  1993. });
  1994. // HELPERS
  1995. // LOCALES
  1996. function localeWeek (mom) {
  1997. return weekOfYear(mom, this._week.dow, this._week.doy).week;
  1998. }
  1999. var defaultLocaleWeek = {
  2000. dow : 0, // Sunday is the first day of the week.
  2001. doy : 6 // The week that contains Jan 6th is the first week of the year.
  2002. };
  2003. function localeFirstDayOfWeek () {
  2004. return this._week.dow;
  2005. }
  2006. function localeFirstDayOfYear () {
  2007. return this._week.doy;
  2008. }
  2009. // MOMENTS
  2010. function getSetWeek (input) {
  2011. var week = this.localeData().week(this);
  2012. return input == null ? week : this.add((input - week) * 7, 'd');
  2013. }
  2014. function getSetISOWeek (input) {
  2015. var week = weekOfYear(this, 1, 4).week;
  2016. return input == null ? week : this.add((input - week) * 7, 'd');
  2017. }
  2018. // FORMATTING
  2019. addFormatToken('d', 0, 'do', 'day');
  2020. addFormatToken('dd', 0, 0, function (format) {
  2021. return this.localeData().weekdaysMin(this, format);
  2022. });
  2023. addFormatToken('ddd', 0, 0, function (format) {
  2024. return this.localeData().weekdaysShort(this, format);
  2025. });
  2026. addFormatToken('dddd', 0, 0, function (format) {
  2027. return this.localeData().weekdays(this, format);
  2028. });
  2029. addFormatToken('e', 0, 0, 'weekday');
  2030. addFormatToken('E', 0, 0, 'isoWeekday');
  2031. // ALIASES
  2032. addUnitAlias('day', 'd');
  2033. addUnitAlias('weekday', 'e');
  2034. addUnitAlias('isoWeekday', 'E');
  2035. // PRIORITY
  2036. addUnitPriority('day', 11);
  2037. addUnitPriority('weekday', 11);
  2038. addUnitPriority('isoWeekday', 11);
  2039. // PARSING
  2040. addRegexToken('d', match1to2);
  2041. addRegexToken('e', match1to2);
  2042. addRegexToken('E', match1to2);
  2043. addRegexToken('dd', function (isStrict, locale) {
  2044. return locale.weekdaysMinRegex(isStrict);
  2045. });
  2046. addRegexToken('ddd', function (isStrict, locale) {
  2047. return locale.weekdaysShortRegex(isStrict);
  2048. });
  2049. addRegexToken('dddd', function (isStrict, locale) {
  2050. return locale.weekdaysRegex(isStrict);
  2051. });
  2052. addWeekParseToken(['dd', 'ddd', 'dddd'], function (input, week, config, token) {
  2053. var weekday = config._locale.weekdaysParse(input, token, config._strict);
  2054. // if we didn't get a weekday name, mark the date as invalid
  2055. if (weekday != null) {
  2056. week.d = weekday;
  2057. } else {
  2058. getParsingFlags(config).invalidWeekday = input;
  2059. }
  2060. });
  2061. addWeekParseToken(['d', 'e', 'E'], function (input, week, config, token) {
  2062. week[token] = toInt(input);
  2063. });
  2064. // HELPERS
  2065. function parseWeekday(input, locale) {
  2066. if (typeof input !== 'string') {
  2067. return input;
  2068. }
  2069. if (!isNaN(input)) {
  2070. return parseInt(input, 10);
  2071. }
  2072. input = locale.weekdaysParse(input);
  2073. if (typeof input === 'number') {
  2074. return input;
  2075. }
  2076. return null;
  2077. }
  2078. function parseIsoWeekday(input, locale) {
  2079. if (typeof input === 'string') {
  2080. return locale.weekdaysParse(input) % 7 || 7;
  2081. }
  2082. return isNaN(input) ? null : input;
  2083. }
  2084. // LOCALES
  2085. function shiftWeekdays (ws, n) {
  2086. return ws.slice(n, 7).concat(ws.slice(0, n));
  2087. }
  2088. var defaultLocaleWeekdays = 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_');
  2089. function localeWeekdays (m, format) {
  2090. var weekdays = isArray(this._weekdays) ? this._weekdays :
  2091. this._weekdays[(m && m !== true && this._weekdays.isFormat.test(format)) ? 'format' : 'standalone'];
  2092. return (m === true) ? shiftWeekdays(weekdays, this._week.dow)
  2093. : (m) ? weekdays[m.day()] : weekdays;
  2094. }
  2095. var defaultLocaleWeekdaysShort = 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_');
  2096. function localeWeekdaysShort (m) {
  2097. return (m === true) ? shiftWeekdays(this._weekdaysShort, this._week.dow)
  2098. : (m) ? this._weekdaysShort[m.day()] : this._weekdaysShort;
  2099. }
  2100. var defaultLocaleWeekdaysMin = 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_');
  2101. function localeWeekdaysMin (m) {
  2102. return (m === true) ? shiftWeekdays(this._weekdaysMin, this._week.dow)
  2103. : (m) ? this._weekdaysMin[m.day()] : this._weekdaysMin;
  2104. }
  2105. function handleStrictParse$1(weekdayName, format, strict) {
  2106. var i, ii, mom, llc = weekdayName.toLocaleLowerCase();
  2107. if (!this._weekdaysParse) {
  2108. this._weekdaysParse = [];
  2109. this._shortWeekdaysParse = [];
  2110. this._minWeekdaysParse = [];
  2111. for (i = 0; i < 7; ++i) {
  2112. mom = createUTC([2000, 1]).day(i);
  2113. this._minWeekdaysParse[i] = this.weekdaysMin(mom, '').toLocaleLowerCase();
  2114. this._shortWeekdaysParse[i] = this.weekdaysShort(mom, '').toLocaleLowerCase();
  2115. this._weekdaysParse[i] = this.weekdays(mom, '').toLocaleLowerCase();
  2116. }
  2117. }
  2118. if (strict) {
  2119. if (format === 'dddd') {
  2120. ii = indexOf.call(this._weekdaysParse, llc);
  2121. return ii !== -1 ? ii : null;
  2122. } else if (format === 'ddd') {
  2123. ii = indexOf.call(this._shortWeekdaysParse, llc);
  2124. return ii !== -1 ? ii : null;
  2125. } else {
  2126. ii = indexOf.call(this._minWeekdaysParse, llc);
  2127. return ii !== -1 ? ii : null;
  2128. }
  2129. } else {
  2130. if (format === 'dddd') {
  2131. ii = indexOf.call(this._weekdaysParse, llc);
  2132. if (ii !== -1) {
  2133. return ii;
  2134. }
  2135. ii = indexOf.call(this._shortWeekdaysParse, llc);
  2136. if (ii !== -1) {
  2137. return ii;
  2138. }
  2139. ii = indexOf.call(this._minWeekdaysParse, llc);
  2140. return ii !== -1 ? ii : null;
  2141. } else if (format === 'ddd') {
  2142. ii = indexOf.call(this._shortWeekdaysParse, llc);
  2143. if (ii !== -1) {
  2144. return ii;
  2145. }
  2146. ii = indexOf.call(this._weekdaysParse, llc);
  2147. if (ii !== -1) {
  2148. return ii;
  2149. }
  2150. ii = indexOf.call(this._minWeekdaysParse, llc);
  2151. return ii !== -1 ? ii : null;
  2152. } else {
  2153. ii = indexOf.call(this._minWeekdaysParse, llc);
  2154. if (ii !== -1) {
  2155. return ii;
  2156. }
  2157. ii = indexOf.call(this._weekdaysParse, llc);
  2158. if (ii !== -1) {
  2159. return ii;
  2160. }
  2161. ii = indexOf.call(this._shortWeekdaysParse, llc);
  2162. return ii !== -1 ? ii : null;
  2163. }
  2164. }
  2165. }
  2166. function localeWeekdaysParse (weekdayName, format, strict) {
  2167. var i, mom, regex;
  2168. if (this._weekdaysParseExact) {
  2169. return handleStrictParse$1.call(this, weekdayName, format, strict);
  2170. }
  2171. if (!this._weekdaysParse) {
  2172. this._weekdaysParse = [];
  2173. this._minWeekdaysParse = [];
  2174. this._shortWeekdaysParse = [];
  2175. this._fullWeekdaysParse = [];
  2176. }
  2177. for (i = 0; i < 7; i++) {
  2178. // make the regex if we don't have it already
  2179. mom = createUTC([2000, 1]).day(i);
  2180. if (strict && !this._fullWeekdaysParse[i]) {
  2181. this._fullWeekdaysParse[i] = new RegExp('^' + this.weekdays(mom, '').replace('.', '\\.?') + '$', 'i');
  2182. this._shortWeekdaysParse[i] = new RegExp('^' + this.weekdaysShort(mom, '').replace('.', '\\.?') + '$', 'i');
  2183. this._minWeekdaysParse[i] = new RegExp('^' + this.weekdaysMin(mom, '').replace('.', '\\.?') + '$', 'i');
  2184. }
  2185. if (!this._weekdaysParse[i]) {
  2186. regex = '^' + this.weekdays(mom, '') + '|^' + this.weekdaysShort(mom, '') + '|^' + this.weekdaysMin(mom, '');
  2187. this._weekdaysParse[i] = new RegExp(regex.replace('.', ''), 'i');
  2188. }
  2189. // test the regex
  2190. if (strict && format === 'dddd' && this._fullWeekdaysParse[i].test(weekdayName)) {
  2191. return i;
  2192. } else if (strict && format === 'ddd' && this._shortWeekdaysParse[i].test(weekdayName)) {
  2193. return i;
  2194. } else if (strict && format === 'dd' && this._minWeekdaysParse[i].test(weekdayName)) {
  2195. return i;
  2196. } else if (!strict && this._weekdaysParse[i].test(weekdayName)) {
  2197. return i;
  2198. }
  2199. }
  2200. }
  2201. // MOMENTS
  2202. function getSetDayOfWeek (input) {
  2203. if (!this.isValid()) {
  2204. return input != null ? this : NaN;
  2205. }
  2206. var day = this._isUTC ? this._d.getUTCDay() : this._d.getDay();
  2207. if (input != null) {
  2208. input = parseWeekday(input, this.localeData());
  2209. return this.add(input - day, 'd');
  2210. } else {
  2211. return day;
  2212. }
  2213. }
  2214. function getSetLocaleDayOfWeek (input) {
  2215. if (!this.isValid()) {
  2216. return input != null ? this : NaN;
  2217. }
  2218. var weekday = (this.day() + 7 - this.localeData()._week.dow) % 7;
  2219. return input == null ? weekday : this.add(input - weekday, 'd');
  2220. }
  2221. function getSetISODayOfWeek (input) {
  2222. if (!this.isValid()) {
  2223. return input != null ? this : NaN;
  2224. }
  2225. // behaves the same as moment#day except
  2226. // as a getter, returns 7 instead of 0 (1-7 range instead of 0-6)
  2227. // as a setter, sunday should belong to the previous week.
  2228. if (input != null) {
  2229. var weekday = parseIsoWeekday(input, this.localeData());
  2230. return this.day(this.day() % 7 ? weekday : weekday - 7);
  2231. } else {
  2232. return this.day() || 7;
  2233. }
  2234. }
  2235. var defaultWeekdaysRegex = matchWord;
  2236. function weekdaysRegex (isStrict) {
  2237. if (this._weekdaysParseExact) {
  2238. if (!hasOwnProp(this, '_weekdaysRegex')) {
  2239. computeWeekdaysParse.call(this);
  2240. }
  2241. if (isStrict) {
  2242. return this._weekdaysStrictRegex;
  2243. } else {
  2244. return this._weekdaysRegex;
  2245. }
  2246. } else {
  2247. if (!hasOwnProp(this, '_weekdaysRegex')) {
  2248. this._weekdaysRegex = defaultWeekdaysRegex;
  2249. }
  2250. return this._weekdaysStrictRegex && isStrict ?
  2251. this._weekdaysStrictRegex : this._weekdaysRegex;
  2252. }
  2253. }
  2254. var defaultWeekdaysShortRegex = matchWord;
  2255. function weekdaysShortRegex (isStrict) {
  2256. if (this._weekdaysParseExact) {
  2257. if (!hasOwnProp(this, '_weekdaysRegex')) {
  2258. computeWeekdaysParse.call(this);
  2259. }
  2260. if (isStrict) {
  2261. return this._weekdaysShortStrictRegex;
  2262. } else {
  2263. return this._weekdaysShortRegex;
  2264. }
  2265. } else {
  2266. if (!hasOwnProp(this, '_weekdaysShortRegex')) {
  2267. this._weekdaysShortRegex = defaultWeekdaysShortRegex;
  2268. }
  2269. return this._weekdaysShortStrictRegex && isStrict ?
  2270. this._weekdaysShortStrictRegex : this._weekdaysShortRegex;
  2271. }
  2272. }
  2273. var defaultWeekdaysMinRegex = matchWord;
  2274. function weekdaysMinRegex (isStrict) {
  2275. if (this._weekdaysParseExact) {
  2276. if (!hasOwnProp(this, '_weekdaysRegex')) {
  2277. computeWeekdaysParse.call(this);
  2278. }
  2279. if (isStrict) {
  2280. return this._weekdaysMinStrictRegex;
  2281. } else {
  2282. return this._weekdaysMinRegex;
  2283. }
  2284. } else {
  2285. if (!hasOwnProp(this, '_weekdaysMinRegex')) {
  2286. this._weekdaysMinRegex = defaultWeekdaysMinRegex;
  2287. }
  2288. return this._weekdaysMinStrictRegex && isStrict ?
  2289. this._weekdaysMinStrictRegex : this._weekdaysMinRegex;
  2290. }
  2291. }
  2292. function computeWeekdaysParse () {
  2293. function cmpLenRev(a, b) {
  2294. return b.length - a.length;
  2295. }
  2296. var minPieces = [], shortPieces = [], longPieces = [], mixedPieces = [],
  2297. i, mom, minp, shortp, longp;
  2298. for (i = 0; i < 7; i++) {
  2299. // make the regex if we don't have it already
  2300. mom = createUTC([2000, 1]).day(i);
  2301. minp = this.weekdaysMin(mom, '');
  2302. shortp = this.weekdaysShort(mom, '');
  2303. longp = this.weekdays(mom, '');
  2304. minPieces.push(minp);
  2305. shortPieces.push(shortp);
  2306. longPieces.push(longp);
  2307. mixedPieces.push(minp);
  2308. mixedPieces.push(shortp);
  2309. mixedPieces.push(longp);
  2310. }
  2311. // Sorting makes sure if one weekday (or abbr) is a prefix of another it
  2312. // will match the longer piece.
  2313. minPieces.sort(cmpLenRev);
  2314. shortPieces.sort(cmpLenRev);
  2315. longPieces.sort(cmpLenRev);
  2316. mixedPieces.sort(cmpLenRev);
  2317. for (i = 0; i < 7; i++) {
  2318. shortPieces[i] = regexEscape(shortPieces[i]);
  2319. longPieces[i] = regexEscape(longPieces[i]);
  2320. mixedPieces[i] = regexEscape(mixedPieces[i]);
  2321. }
  2322. this._weekdaysRegex = new RegExp('^(' + mixedPieces.join('|') + ')', 'i');
  2323. this._weekdaysShortRegex = this._weekdaysRegex;
  2324. this._weekdaysMinRegex = this._weekdaysRegex;
  2325. this._weekdaysStrictRegex = new RegExp('^(' + longPieces.join('|') + ')', 'i');
  2326. this._weekdaysShortStrictRegex = new RegExp('^(' + shortPieces.join('|') + ')', 'i');
  2327. this._weekdaysMinStrictRegex = new RegExp('^(' + minPieces.join('|') + ')', 'i');
  2328. }
  2329. // FORMATTING
  2330. function hFormat() {
  2331. return this.hours() % 12 || 12;
  2332. }
  2333. function kFormat() {
  2334. return this.hours() || 24;
  2335. }
  2336. addFormatToken('H', ['HH', 2], 0, 'hour');
  2337. addFormatToken('h', ['hh', 2], 0, hFormat);
  2338. addFormatToken('k', ['kk', 2], 0, kFormat);
  2339. addFormatToken('hmm', 0, 0, function () {
  2340. return '' + hFormat.apply(this) + zeroFill(this.minutes(), 2);
  2341. });
  2342. addFormatToken('hmmss', 0, 0, function () {
  2343. return '' + hFormat.apply(this) + zeroFill(this.minutes(), 2) +
  2344. zeroFill(this.seconds(), 2);
  2345. });
  2346. addFormatToken('Hmm', 0, 0, function () {
  2347. return '' + this.hours() + zeroFill(this.minutes(), 2);
  2348. });
  2349. addFormatToken('Hmmss', 0, 0, function () {
  2350. return '' + this.hours() + zeroFill(this.minutes(), 2) +
  2351. zeroFill(this.seconds(), 2);
  2352. });
  2353. function meridiem (token, lowercase) {
  2354. addFormatToken(token, 0, 0, function () {
  2355. return this.localeData().meridiem(this.hours(), this.minutes(), lowercase);
  2356. });
  2357. }
  2358. meridiem('a', true);
  2359. meridiem('A', false);
  2360. // ALIASES
  2361. addUnitAlias('hour', 'h');
  2362. // PRIORITY
  2363. addUnitPriority('hour', 13);
  2364. // PARSING
  2365. function matchMeridiem (isStrict, locale) {
  2366. return locale._meridiemParse;
  2367. }
  2368. addRegexToken('a', matchMeridiem);
  2369. addRegexToken('A', matchMeridiem);
  2370. addRegexToken('H', match1to2);
  2371. addRegexToken('h', match1to2);
  2372. addRegexToken('k', match1to2);
  2373. addRegexToken('HH', match1to2, match2);
  2374. addRegexToken('hh', match1to2, match2);
  2375. addRegexToken('kk', match1to2, match2);
  2376. addRegexToken('hmm', match3to4);
  2377. addRegexToken('hmmss', match5to6);
  2378. addRegexToken('Hmm', match3to4);
  2379. addRegexToken('Hmmss', match5to6);
  2380. addParseToken(['H', 'HH'], HOUR);
  2381. addParseToken(['k', 'kk'], function (input, array, config) {
  2382. var kInput = toInt(input);
  2383. array[HOUR] = kInput === 24 ? 0 : kInput;
  2384. });
  2385. addParseToken(['a', 'A'], function (input, array, config) {
  2386. config._isPm = config._locale.isPM(input);
  2387. config._meridiem = input;
  2388. });
  2389. addParseToken(['h', 'hh'], function (input, array, config) {
  2390. array[HOUR] = toInt(input);
  2391. getParsingFlags(config).bigHour = true;
  2392. });
  2393. addParseToken('hmm', function (input, array, config) {
  2394. var pos = input.length - 2;
  2395. array[HOUR] = toInt(input.substr(0, pos));
  2396. array[MINUTE] = toInt(input.substr(pos));
  2397. getParsingFlags(config).bigHour = true;
  2398. });
  2399. addParseToken('hmmss', function (input, array, config) {
  2400. var pos1 = input.length - 4;
  2401. var pos2 = input.length - 2;
  2402. array[HOUR] = toInt(input.substr(0, pos1));
  2403. array[MINUTE] = toInt(input.substr(pos1, 2));
  2404. array[SECOND] = toInt(input.substr(pos2));
  2405. getParsingFlags(config).bigHour = true;
  2406. });
  2407. addParseToken('Hmm', function (input, array, config) {
  2408. var pos = input.length - 2;
  2409. array[HOUR] = toInt(input.substr(0, pos));
  2410. array[MINUTE] = toInt(input.substr(pos));
  2411. });
  2412. addParseToken('Hmmss', function (input, array, config) {
  2413. var pos1 = input.length - 4;
  2414. var pos2 = input.length - 2;
  2415. array[HOUR] = toInt(input.substr(0, pos1));
  2416. array[MINUTE] = toInt(input.substr(pos1, 2));
  2417. array[SECOND] = toInt(input.substr(pos2));
  2418. });
  2419. // LOCALES
  2420. function localeIsPM (input) {
  2421. // IE8 Quirks Mode & IE7 Standards Mode do not allow accessing strings like arrays
  2422. // Using charAt should be more compatible.
  2423. return ((input + '').toLowerCase().charAt(0) === 'p');
  2424. }
  2425. var defaultLocaleMeridiemParse = /[ap]\.?m?\.?/i;
  2426. function localeMeridiem (hours, minutes, isLower) {
  2427. if (hours > 11) {
  2428. return isLower ? 'pm' : 'PM';
  2429. } else {
  2430. return isLower ? 'am' : 'AM';
  2431. }
  2432. }
  2433. // MOMENTS
  2434. // Setting the hour should keep the time, because the user explicitly
  2435. // specified which hour they want. So trying to maintain the same hour (in
  2436. // a new timezone) makes sense. Adding/subtracting hours does not follow
  2437. // this rule.
  2438. var getSetHour = makeGetSet('Hours', true);
  2439. var baseConfig = {
  2440. calendar: defaultCalendar,
  2441. longDateFormat: defaultLongDateFormat,
  2442. invalidDate: defaultInvalidDate,
  2443. ordinal: defaultOrdinal,
  2444. dayOfMonthOrdinalParse: defaultDayOfMonthOrdinalParse,
  2445. relativeTime: defaultRelativeTime,
  2446. months: defaultLocaleMonths,
  2447. monthsShort: defaultLocaleMonthsShort,
  2448. week: defaultLocaleWeek,
  2449. weekdays: defaultLocaleWeekdays,
  2450. weekdaysMin: defaultLocaleWeekdaysMin,
  2451. weekdaysShort: defaultLocaleWeekdaysShort,
  2452. meridiemParse: defaultLocaleMeridiemParse
  2453. };
  2454. // internal storage for locale config files
  2455. var locales = {};
  2456. var localeFamilies = {};
  2457. var globalLocale;
  2458. function normalizeLocale(key) {
  2459. return key ? key.toLowerCase().replace('_', '-') : key;
  2460. }
  2461. // pick the locale from the array
  2462. // try ['en-au', 'en-gb'] as 'en-au', 'en-gb', 'en', as in move through the list trying each
  2463. // substring from most specific to least, but move to the next array item if it's a more specific variant than the current root
  2464. function chooseLocale(names) {
  2465. var i = 0, j, next, locale, split;
  2466. while (i < names.length) {
  2467. split = normalizeLocale(names[i]).split('-');
  2468. j = split.length;
  2469. next = normalizeLocale(names[i + 1]);
  2470. next = next ? next.split('-') : null;
  2471. while (j > 0) {
  2472. locale = loadLocale(split.slice(0, j).join('-'));
  2473. if (locale) {
  2474. return locale;
  2475. }
  2476. if (next && next.length >= j && compareArrays(split, next, true) >= j - 1) {
  2477. //the next array item is better than a shallower substring of this one
  2478. break;
  2479. }
  2480. j--;
  2481. }
  2482. i++;
  2483. }
  2484. return globalLocale;
  2485. }
  2486. function loadLocale(name) {
  2487. var oldLocale = null;
  2488. // TODO: Find a better way to register and load all the locales in Node
  2489. if (!locales[name] && (typeof module !== 'undefined') &&
  2490. module && module.exports) {
  2491. try {
  2492. oldLocale = globalLocale._abbr;
  2493. var aliasedRequire = require;
  2494. aliasedRequire('./locale/' + name);
  2495. getSetGlobalLocale(oldLocale);
  2496. } catch (e) {}
  2497. }
  2498. return locales[name];
  2499. }
  2500. // This function will load locale and then set the global locale. If
  2501. // no arguments are passed in, it will simply return the current global
  2502. // locale key.
  2503. function getSetGlobalLocale (key, values) {
  2504. var data;
  2505. if (key) {
  2506. if (isUndefined(values)) {
  2507. data = getLocale(key);
  2508. }
  2509. else {
  2510. data = defineLocale(key, values);
  2511. }
  2512. if (data) {
  2513. // moment.duration._locale = moment._locale = data;
  2514. globalLocale = data;
  2515. }
  2516. else {
  2517. if ((typeof console !== 'undefined') && console.warn) {
  2518. //warn user if arguments are passed but the locale could not be set
  2519. console.warn('Locale ' + key + ' not found. Did you forget to load it?');
  2520. }
  2521. }
  2522. }
  2523. return globalLocale._abbr;
  2524. }
  2525. function defineLocale (name, config) {
  2526. if (config !== null) {
  2527. var locale, parentConfig = baseConfig;
  2528. config.abbr = name;
  2529. if (locales[name] != null) {
  2530. deprecateSimple('defineLocaleOverride',
  2531. 'use moment.updateLocale(localeName, config) to change ' +
  2532. 'an existing locale. moment.defineLocale(localeName, ' +
  2533. 'config) should only be used for creating a new locale ' +
  2534. 'See http://momentjs.com/guides/#/warnings/define-locale/ for more info.');
  2535. parentConfig = locales[name]._config;
  2536. } else if (config.parentLocale != null) {
  2537. if (locales[config.parentLocale] != null) {
  2538. parentConfig = locales[config.parentLocale]._config;
  2539. } else {
  2540. locale = loadLocale(config.parentLocale);
  2541. if (locale != null) {
  2542. parentConfig = locale._config;
  2543. } else {
  2544. if (!localeFamilies[config.parentLocale]) {
  2545. localeFamilies[config.parentLocale] = [];
  2546. }
  2547. localeFamilies[config.parentLocale].push({
  2548. name: name,
  2549. config: config
  2550. });
  2551. return null;
  2552. }
  2553. }
  2554. }
  2555. locales[name] = new Locale(mergeConfigs(parentConfig, config));
  2556. if (localeFamilies[name]) {
  2557. localeFamilies[name].forEach(function (x) {
  2558. defineLocale(x.name, x.config);
  2559. });
  2560. }
  2561. // backwards compat for now: also set the locale
  2562. // make sure we set the locale AFTER all child locales have been
  2563. // created, so we won't end up with the child locale set.
  2564. getSetGlobalLocale(name);
  2565. return locales[name];
  2566. } else {
  2567. // useful for testing
  2568. delete locales[name];
  2569. return null;
  2570. }
  2571. }
  2572. function updateLocale(name, config) {
  2573. if (config != null) {
  2574. var locale, tmpLocale, parentConfig = baseConfig;
  2575. // MERGE
  2576. tmpLocale = loadLocale(name);
  2577. if (tmpLocale != null) {
  2578. parentConfig = tmpLocale._config;
  2579. }
  2580. config = mergeConfigs(parentConfig, config);
  2581. locale = new Locale(config);
  2582. locale.parentLocale = locales[name];
  2583. locales[name] = locale;
  2584. // backwards compat for now: also set the locale
  2585. getSetGlobalLocale(name);
  2586. } else {
  2587. // pass null for config to unupdate, useful for tests
  2588. if (locales[name] != null) {
  2589. if (locales[name].parentLocale != null) {
  2590. locales[name] = locales[name].parentLocale;
  2591. } else if (locales[name] != null) {
  2592. delete locales[name];
  2593. }
  2594. }
  2595. }
  2596. return locales[name];
  2597. }
  2598. // returns locale data
  2599. function getLocale (key) {
  2600. var locale;
  2601. if (key && key._locale && key._locale._abbr) {
  2602. key = key._locale._abbr;
  2603. }
  2604. if (!key) {
  2605. return globalLocale;
  2606. }
  2607. if (!isArray(key)) {
  2608. //short-circuit everything else
  2609. locale = loadLocale(key);
  2610. if (locale) {
  2611. return locale;
  2612. }
  2613. key = [key];
  2614. }
  2615. return chooseLocale(key);
  2616. }
  2617. function listLocales() {
  2618. return keys(locales);
  2619. }
  2620. function checkOverflow (m) {
  2621. var overflow;
  2622. var a = m._a;
  2623. if (a && getParsingFlags(m).overflow === -2) {
  2624. overflow =
  2625. a[MONTH] < 0 || a[MONTH] > 11 ? MONTH :
  2626. a[DATE] < 1 || a[DATE] > daysInMonth(a[YEAR], a[MONTH]) ? DATE :
  2627. a[HOUR] < 0 || a[HOUR] > 24 || (a[HOUR] === 24 && (a[MINUTE] !== 0 || a[SECOND] !== 0 || a[MILLISECOND] !== 0)) ? HOUR :
  2628. a[MINUTE] < 0 || a[MINUTE] > 59 ? MINUTE :
  2629. a[SECOND] < 0 || a[SECOND] > 59 ? SECOND :
  2630. a[MILLISECOND] < 0 || a[MILLISECOND] > 999 ? MILLISECOND :
  2631. -1;
  2632. if (getParsingFlags(m)._overflowDayOfYear && (overflow < YEAR || overflow > DATE)) {
  2633. overflow = DATE;
  2634. }
  2635. if (getParsingFlags(m)._overflowWeeks && overflow === -1) {
  2636. overflow = WEEK;
  2637. }
  2638. if (getParsingFlags(m)._overflowWeekday && overflow === -1) {
  2639. overflow = WEEKDAY;
  2640. }
  2641. getParsingFlags(m).overflow = overflow;
  2642. }
  2643. return m;
  2644. }
  2645. // Pick the first defined of two or three arguments.
  2646. function defaults(a, b, c) {
  2647. if (a != null) {
  2648. return a;
  2649. }
  2650. if (b != null) {
  2651. return b;
  2652. }
  2653. return c;
  2654. }
  2655. function currentDateArray(config) {
  2656. // hooks is actually the exported moment object
  2657. var nowValue = new Date(hooks.now());
  2658. if (config._useUTC) {
  2659. return [nowValue.getUTCFullYear(), nowValue.getUTCMonth(), nowValue.getUTCDate()];
  2660. }
  2661. return [nowValue.getFullYear(), nowValue.getMonth(), nowValue.getDate()];
  2662. }
  2663. // convert an array to a date.
  2664. // the array should mirror the parameters below
  2665. // note: all values past the year are optional and will default to the lowest possible value.
  2666. // [year, month, day , hour, minute, second, millisecond]
  2667. function configFromArray (config) {
  2668. var i, date, input = [], currentDate, expectedWeekday, yearToUse;
  2669. if (config._d) {
  2670. return;
  2671. }
  2672. currentDate = currentDateArray(config);
  2673. //compute day of the year from weeks and weekdays
  2674. if (config._w && config._a[DATE] == null && config._a[MONTH] == null) {
  2675. dayOfYearFromWeekInfo(config);
  2676. }
  2677. //if the day of the year is set, figure out what it is
  2678. if (config._dayOfYear != null) {
  2679. yearToUse = defaults(config._a[YEAR], currentDate[YEAR]);
  2680. if (config._dayOfYear > daysInYear(yearToUse) || config._dayOfYear === 0) {
  2681. getParsingFlags(config)._overflowDayOfYear = true;
  2682. }
  2683. date = createUTCDate(yearToUse, 0, config._dayOfYear);
  2684. config._a[MONTH] = date.getUTCMonth();
  2685. config._a[DATE] = date.getUTCDate();
  2686. }
  2687. // Default to current date.
  2688. // * if no year, month, day of month are given, default to today
  2689. // * if day of month is given, default month and year
  2690. // * if month is given, default only year
  2691. // * if year is given, don't default anything
  2692. for (i = 0; i < 3 && config._a[i] == null; ++i) {
  2693. config._a[i] = input[i] = currentDate[i];
  2694. }
  2695. // Zero out whatever was not defaulted, including time
  2696. for (; i < 7; i++) {
  2697. config._a[i] = input[i] = (config._a[i] == null) ? (i === 2 ? 1 : 0) : config._a[i];
  2698. }
  2699. // Check for 24:00:00.000
  2700. if (config._a[HOUR] === 24 &&
  2701. config._a[MINUTE] === 0 &&
  2702. config._a[SECOND] === 0 &&
  2703. config._a[MILLISECOND] === 0) {
  2704. config._nextDay = true;
  2705. config._a[HOUR] = 0;
  2706. }
  2707. config._d = (config._useUTC ? createUTCDate : createDate).apply(null, input);
  2708. expectedWeekday = config._useUTC ? config._d.getUTCDay() : config._d.getDay();
  2709. // Apply timezone offset from input. The actual utcOffset can be changed
  2710. // with parseZone.
  2711. if (config._tzm != null) {
  2712. config._d.setUTCMinutes(config._d.getUTCMinutes() - config._tzm);
  2713. }
  2714. if (config._nextDay) {
  2715. config._a[HOUR] = 24;
  2716. }
  2717. // check for mismatching day of week
  2718. if (config._w && typeof config._w.d !== 'undefined' && config._w.d !== expectedWeekday) {
  2719. getParsingFlags(config).weekdayMismatch = true;
  2720. }
  2721. }
  2722. function dayOfYearFromWeekInfo(config) {
  2723. var w, weekYear, week, weekday, dow, doy, temp, weekdayOverflow;
  2724. w = config._w;
  2725. if (w.GG != null || w.W != null || w.E != null) {
  2726. dow = 1;
  2727. doy = 4;
  2728. // TODO: We need to take the current isoWeekYear, but that depends on
  2729. // how we interpret now (local, utc, fixed offset). So create
  2730. // a now version of current config (take local/utc/offset flags, and
  2731. // create now).
  2732. weekYear = defaults(w.GG, config._a[YEAR], weekOfYear(createLocal(), 1, 4).year);
  2733. week = defaults(w.W, 1);
  2734. weekday = defaults(w.E, 1);
  2735. if (weekday < 1 || weekday > 7) {
  2736. weekdayOverflow = true;
  2737. }
  2738. } else {
  2739. dow = config._locale._week.dow;
  2740. doy = config._locale._week.doy;
  2741. var curWeek = weekOfYear(createLocal(), dow, doy);
  2742. weekYear = defaults(w.gg, config._a[YEAR], curWeek.year);
  2743. // Default to current week.
  2744. week = defaults(w.w, curWeek.week);
  2745. if (w.d != null) {
  2746. // weekday -- low day numbers are considered next week
  2747. weekday = w.d;
  2748. if (weekday < 0 || weekday > 6) {
  2749. weekdayOverflow = true;
  2750. }
  2751. } else if (w.e != null) {
  2752. // local weekday -- counting starts from beginning of week
  2753. weekday = w.e + dow;
  2754. if (w.e < 0 || w.e > 6) {
  2755. weekdayOverflow = true;
  2756. }
  2757. } else {
  2758. // default to beginning of week
  2759. weekday = dow;
  2760. }
  2761. }
  2762. if (week < 1 || week > weeksInYear(weekYear, dow, doy)) {
  2763. getParsingFlags(config)._overflowWeeks = true;
  2764. } else if (weekdayOverflow != null) {
  2765. getParsingFlags(config)._overflowWeekday = true;
  2766. } else {
  2767. temp = dayOfYearFromWeeks(weekYear, week, weekday, dow, doy);
  2768. config._a[YEAR] = temp.year;
  2769. config._dayOfYear = temp.dayOfYear;
  2770. }
  2771. }
  2772. // iso 8601 regex
  2773. // 0000-00-00 0000-W00 or 0000-W00-0 + T + 00 or 00:00 or 00:00:00 or 00:00:00.000 + +00:00 or +0000 or +00)
  2774. var extendedIsoRegex = /^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/;
  2775. var basicIsoRegex = /^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/;
  2776. var tzRegex = /Z|[+-]\d\d(?::?\d\d)?/;
  2777. var isoDates = [
  2778. ['YYYYYY-MM-DD', /[+-]\d{6}-\d\d-\d\d/],
  2779. ['YYYY-MM-DD', /\d{4}-\d\d-\d\d/],
  2780. ['GGGG-[W]WW-E', /\d{4}-W\d\d-\d/],
  2781. ['GGGG-[W]WW', /\d{4}-W\d\d/, false],
  2782. ['YYYY-DDD', /\d{4}-\d{3}/],
  2783. ['YYYY-MM', /\d{4}-\d\d/, false],
  2784. ['YYYYYYMMDD', /[+-]\d{10}/],
  2785. ['YYYYMMDD', /\d{8}/],
  2786. // YYYYMM is NOT allowed by the standard
  2787. ['GGGG[W]WWE', /\d{4}W\d{3}/],
  2788. ['GGGG[W]WW', /\d{4}W\d{2}/, false],
  2789. ['YYYYDDD', /\d{7}/]
  2790. ];
  2791. // iso time formats and regexes
  2792. var isoTimes = [
  2793. ['HH:mm:ss.SSSS', /\d\d:\d\d:\d\d\.\d+/],
  2794. ['HH:mm:ss,SSSS', /\d\d:\d\d:\d\d,\d+/],
  2795. ['HH:mm:ss', /\d\d:\d\d:\d\d/],
  2796. ['HH:mm', /\d\d:\d\d/],
  2797. ['HHmmss.SSSS', /\d\d\d\d\d\d\.\d+/],
  2798. ['HHmmss,SSSS', /\d\d\d\d\d\d,\d+/],
  2799. ['HHmmss', /\d\d\d\d\d\d/],
  2800. ['HHmm', /\d\d\d\d/],
  2801. ['HH', /\d\d/]
  2802. ];
  2803. var aspNetJsonRegex = /^\/?Date\((\-?\d+)/i;
  2804. // date from iso format
  2805. function configFromISO(config) {
  2806. var i, l,
  2807. string = config._i,
  2808. match = extendedIsoRegex.exec(string) || basicIsoRegex.exec(string),
  2809. allowTime, dateFormat, timeFormat, tzFormat;
  2810. if (match) {
  2811. getParsingFlags(config).iso = true;
  2812. for (i = 0, l = isoDates.length; i < l; i++) {
  2813. if (isoDates[i][1].exec(match[1])) {
  2814. dateFormat = isoDates[i][0];
  2815. allowTime = isoDates[i][2] !== false;
  2816. break;
  2817. }
  2818. }
  2819. if (dateFormat == null) {
  2820. config._isValid = false;
  2821. return;
  2822. }
  2823. if (match[3]) {
  2824. for (i = 0, l = isoTimes.length; i < l; i++) {
  2825. if (isoTimes[i][1].exec(match[3])) {
  2826. // match[2] should be 'T' or space
  2827. timeFormat = (match[2] || ' ') + isoTimes[i][0];
  2828. break;
  2829. }
  2830. }
  2831. if (timeFormat == null) {
  2832. config._isValid = false;
  2833. return;
  2834. }
  2835. }
  2836. if (!allowTime && timeFormat != null) {
  2837. config._isValid = false;
  2838. return;
  2839. }
  2840. if (match[4]) {
  2841. if (tzRegex.exec(match[4])) {
  2842. tzFormat = 'Z';
  2843. } else {
  2844. config._isValid = false;
  2845. return;
  2846. }
  2847. }
  2848. config._f = dateFormat + (timeFormat || '') + (tzFormat || '');
  2849. configFromStringAndFormat(config);
  2850. } else {
  2851. config._isValid = false;
  2852. }
  2853. }
  2854. // RFC 2822 regex: For details see https://tools.ietf.org/html/rfc2822#section-3.3
  2855. var rfc2822 = /^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/;
  2856. function extractFromRFC2822Strings(yearStr, monthStr, dayStr, hourStr, minuteStr, secondStr) {
  2857. var result = [
  2858. untruncateYear(yearStr),
  2859. defaultLocaleMonthsShort.indexOf(monthStr),
  2860. parseInt(dayStr, 10),
  2861. parseInt(hourStr, 10),
  2862. parseInt(minuteStr, 10)
  2863. ];
  2864. if (secondStr) {
  2865. result.push(parseInt(secondStr, 10));
  2866. }
  2867. return result;
  2868. }
  2869. function untruncateYear(yearStr) {
  2870. var year = parseInt(yearStr, 10);
  2871. if (year <= 49) {
  2872. return 2000 + year;
  2873. } else if (year <= 999) {
  2874. return 1900 + year;
  2875. }
  2876. return year;
  2877. }
  2878. function preprocessRFC2822(s) {
  2879. // Remove comments and folding whitespace and replace multiple-spaces with a single space
  2880. return s.replace(/\([^)]*\)|[\n\t]/g, ' ').replace(/(\s\s+)/g, ' ').replace(/^\s\s*/, '').replace(/\s\s*$/, '');
  2881. }
  2882. function checkWeekday(weekdayStr, parsedInput, config) {
  2883. if (weekdayStr) {
  2884. // TODO: Replace the vanilla JS Date object with an indepentent day-of-week check.
  2885. var weekdayProvided = defaultLocaleWeekdaysShort.indexOf(weekdayStr),
  2886. weekdayActual = new Date(parsedInput[0], parsedInput[1], parsedInput[2]).getDay();
  2887. if (weekdayProvided !== weekdayActual) {
  2888. getParsingFlags(config).weekdayMismatch = true;
  2889. config._isValid = false;
  2890. return false;
  2891. }
  2892. }
  2893. return true;
  2894. }
  2895. var obsOffsets = {
  2896. UT: 0,
  2897. GMT: 0,
  2898. EDT: -4 * 60,
  2899. EST: -5 * 60,
  2900. CDT: -5 * 60,
  2901. CST: -6 * 60,
  2902. MDT: -6 * 60,
  2903. MST: -7 * 60,
  2904. PDT: -7 * 60,
  2905. PST: -8 * 60
  2906. };
  2907. function calculateOffset(obsOffset, militaryOffset, numOffset) {
  2908. if (obsOffset) {
  2909. return obsOffsets[obsOffset];
  2910. } else if (militaryOffset) {
  2911. // the only allowed military tz is Z
  2912. return 0;
  2913. } else {
  2914. var hm = parseInt(numOffset, 10);
  2915. var m = hm % 100, h = (hm - m) / 100;
  2916. return h * 60 + m;
  2917. }
  2918. }
  2919. // date and time from ref 2822 format
  2920. function configFromRFC2822(config) {
  2921. var match = rfc2822.exec(preprocessRFC2822(config._i));
  2922. if (match) {
  2923. var parsedArray = extractFromRFC2822Strings(match[4], match[3], match[2], match[5], match[6], match[7]);
  2924. if (!checkWeekday(match[1], parsedArray, config)) {
  2925. return;
  2926. }
  2927. config._a = parsedArray;
  2928. config._tzm = calculateOffset(match[8], match[9], match[10]);
  2929. config._d = createUTCDate.apply(null, config._a);
  2930. config._d.setUTCMinutes(config._d.getUTCMinutes() - config._tzm);
  2931. getParsingFlags(config).rfc2822 = true;
  2932. } else {
  2933. config._isValid = false;
  2934. }
  2935. }
  2936. // date from iso format or fallback
  2937. function configFromString(config) {
  2938. var matched = aspNetJsonRegex.exec(config._i);
  2939. if (matched !== null) {
  2940. config._d = new Date(+matched[1]);
  2941. return;
  2942. }
  2943. configFromISO(config);
  2944. if (config._isValid === false) {
  2945. delete config._isValid;
  2946. } else {
  2947. return;
  2948. }
  2949. configFromRFC2822(config);
  2950. if (config._isValid === false) {
  2951. delete config._isValid;
  2952. } else {
  2953. return;
  2954. }
  2955. // Final attempt, use Input Fallback
  2956. hooks.createFromInputFallback(config);
  2957. }
  2958. hooks.createFromInputFallback = deprecate(
  2959. 'value provided is not in a recognized RFC2822 or ISO format. moment construction falls back to js Date(), ' +
  2960. 'which is not reliable across all browsers and versions. Non RFC2822/ISO date formats are ' +
  2961. 'discouraged and will be removed in an upcoming major release. Please refer to ' +
  2962. 'http://momentjs.com/guides/#/warnings/js-date/ for more info.',
  2963. function (config) {
  2964. config._d = new Date(config._i + (config._useUTC ? ' UTC' : ''));
  2965. }
  2966. );
  2967. // constant that refers to the ISO standard
  2968. hooks.ISO_8601 = function () {};
  2969. // constant that refers to the RFC 2822 form
  2970. hooks.RFC_2822 = function () {};
  2971. // date from string and format string
  2972. function configFromStringAndFormat(config) {
  2973. // TODO: Move this to another part of the creation flow to prevent circular deps
  2974. if (config._f === hooks.ISO_8601) {
  2975. configFromISO(config);
  2976. return;
  2977. }
  2978. if (config._f === hooks.RFC_2822) {
  2979. configFromRFC2822(config);
  2980. return;
  2981. }
  2982. config._a = [];
  2983. getParsingFlags(config).empty = true;
  2984. // This array is used to make a Date, either with `new Date` or `Date.UTC`
  2985. var string = '' + config._i,
  2986. i, parsedInput, tokens, token, skipped,
  2987. stringLength = string.length,
  2988. totalParsedInputLength = 0;
  2989. tokens = expandFormat(config._f, config._locale).match(formattingTokens) || [];
  2990. for (i = 0; i < tokens.length; i++) {
  2991. token = tokens[i];
  2992. parsedInput = (string.match(getParseRegexForToken(token, config)) || [])[0];
  2993. // console.log('token', token, 'parsedInput', parsedInput,
  2994. // 'regex', getParseRegexForToken(token, config));
  2995. if (parsedInput) {
  2996. skipped = string.substr(0, string.indexOf(parsedInput));
  2997. if (skipped.length > 0) {
  2998. getParsingFlags(config).unusedInput.push(skipped);
  2999. }
  3000. string = string.slice(string.indexOf(parsedInput) + parsedInput.length);
  3001. totalParsedInputLength += parsedInput.length;
  3002. }
  3003. // don't parse if it's not a known token
  3004. if (formatTokenFunctions[token]) {
  3005. if (parsedInput) {
  3006. getParsingFlags(config).empty = false;
  3007. }
  3008. else {
  3009. getParsingFlags(config).unusedTokens.push(token);
  3010. }
  3011. addTimeToArrayFromToken(token, parsedInput, config);
  3012. }
  3013. else if (config._strict && !parsedInput) {
  3014. getParsingFlags(config).unusedTokens.push(token);
  3015. }
  3016. }
  3017. // add remaining unparsed input length to the string
  3018. getParsingFlags(config).charsLeftOver = stringLength - totalParsedInputLength;
  3019. if (string.length > 0) {
  3020. getParsingFlags(config).unusedInput.push(string);
  3021. }
  3022. // clear _12h flag if hour is <= 12
  3023. if (config._a[HOUR] <= 12 &&
  3024. getParsingFlags(config).bigHour === true &&
  3025. config._a[HOUR] > 0) {
  3026. getParsingFlags(config).bigHour = undefined;
  3027. }
  3028. getParsingFlags(config).parsedDateParts = config._a.slice(0);
  3029. getParsingFlags(config).meridiem = config._meridiem;
  3030. // handle meridiem
  3031. config._a[HOUR] = meridiemFixWrap(config._locale, config._a[HOUR], config._meridiem);
  3032. configFromArray(config);
  3033. checkOverflow(config);
  3034. }
  3035. function meridiemFixWrap (locale, hour, meridiem) {
  3036. var isPm;
  3037. if (meridiem == null) {
  3038. // nothing to do
  3039. return hour;
  3040. }
  3041. if (locale.meridiemHour != null) {
  3042. return locale.meridiemHour(hour, meridiem);
  3043. } else if (locale.isPM != null) {
  3044. // Fallback
  3045. isPm = locale.isPM(meridiem);
  3046. if (isPm && hour < 12) {
  3047. hour += 12;
  3048. }
  3049. if (!isPm && hour === 12) {
  3050. hour = 0;
  3051. }
  3052. return hour;
  3053. } else {
  3054. // this is not supposed to happen
  3055. return hour;
  3056. }
  3057. }
  3058. // date from string and array of format strings
  3059. function configFromStringAndArray(config) {
  3060. var tempConfig,
  3061. bestMoment,
  3062. scoreToBeat,
  3063. i,
  3064. currentScore;
  3065. if (config._f.length === 0) {
  3066. getParsingFlags(config).invalidFormat = true;
  3067. config._d = new Date(NaN);
  3068. return;
  3069. }
  3070. for (i = 0; i < config._f.length; i++) {
  3071. currentScore = 0;
  3072. tempConfig = copyConfig({}, config);
  3073. if (config._useUTC != null) {
  3074. tempConfig._useUTC = config._useUTC;
  3075. }
  3076. tempConfig._f = config._f[i];
  3077. configFromStringAndFormat(tempConfig);
  3078. if (!isValid(tempConfig)) {
  3079. continue;
  3080. }
  3081. // if there is any input that was not parsed add a penalty for that format
  3082. currentScore += getParsingFlags(tempConfig).charsLeftOver;
  3083. //or tokens
  3084. currentScore += getParsingFlags(tempConfig).unusedTokens.length * 10;
  3085. getParsingFlags(tempConfig).score = currentScore;
  3086. if (scoreToBeat == null || currentScore < scoreToBeat) {
  3087. scoreToBeat = currentScore;
  3088. bestMoment = tempConfig;
  3089. }
  3090. }
  3091. extend(config, bestMoment || tempConfig);
  3092. }
  3093. function configFromObject(config) {
  3094. if (config._d) {
  3095. return;
  3096. }
  3097. var i = normalizeObjectUnits(config._i);
  3098. config._a = map([i.year, i.month, i.day || i.date, i.hour, i.minute, i.second, i.millisecond], function (obj) {
  3099. return obj && parseInt(obj, 10);
  3100. });
  3101. configFromArray(config);
  3102. }
  3103. function createFromConfig (config) {
  3104. var res = new Moment(checkOverflow(prepareConfig(config)));
  3105. if (res._nextDay) {
  3106. // Adding is smart enough around DST
  3107. res.add(1, 'd');
  3108. res._nextDay = undefined;
  3109. }
  3110. return res;
  3111. }
  3112. function prepareConfig (config) {
  3113. var input = config._i,
  3114. format = config._f;
  3115. config._locale = config._locale || getLocale(config._l);
  3116. if (input === null || (format === undefined && input === '')) {
  3117. return createInvalid({nullInput: true});
  3118. }
  3119. if (typeof input === 'string') {
  3120. config._i = input = config._locale.preparse(input);
  3121. }
  3122. if (isMoment(input)) {
  3123. return new Moment(checkOverflow(input));
  3124. } else if (isDate(input)) {
  3125. config._d = input;
  3126. } else if (isArray(format)) {
  3127. configFromStringAndArray(config);
  3128. } else if (format) {
  3129. configFromStringAndFormat(config);
  3130. } else {
  3131. configFromInput(config);
  3132. }
  3133. if (!isValid(config)) {
  3134. config._d = null;
  3135. }
  3136. return config;
  3137. }
  3138. function configFromInput(config) {
  3139. var input = config._i;
  3140. if (isUndefined(input)) {
  3141. config._d = new Date(hooks.now());
  3142. } else if (isDate(input)) {
  3143. config._d = new Date(input.valueOf());
  3144. } else if (typeof input === 'string') {
  3145. configFromString(config);
  3146. } else if (isArray(input)) {
  3147. config._a = map(input.slice(0), function (obj) {
  3148. return parseInt(obj, 10);
  3149. });
  3150. configFromArray(config);
  3151. } else if (isObject(input)) {
  3152. configFromObject(config);
  3153. } else if (isNumber(input)) {
  3154. // from milliseconds
  3155. config._d = new Date(input);
  3156. } else {
  3157. hooks.createFromInputFallback(config);
  3158. }
  3159. }
  3160. function createLocalOrUTC (input, format, locale, strict, isUTC) {
  3161. var c = {};
  3162. if (locale === true || locale === false) {
  3163. strict = locale;
  3164. locale = undefined;
  3165. }
  3166. if ((isObject(input) && isObjectEmpty(input)) ||
  3167. (isArray(input) && input.length === 0)) {
  3168. input = undefined;
  3169. }
  3170. // object construction must be done this way.
  3171. // https://github.com/moment/moment/issues/1423
  3172. c._isAMomentObject = true;
  3173. c._useUTC = c._isUTC = isUTC;
  3174. c._l = locale;
  3175. c._i = input;
  3176. c._f = format;
  3177. c._strict = strict;
  3178. return createFromConfig(c);
  3179. }
  3180. function createLocal (input, format, locale, strict) {
  3181. return createLocalOrUTC(input, format, locale, strict, false);
  3182. }
  3183. var prototypeMin = deprecate(
  3184. 'moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/',
  3185. function () {
  3186. var other = createLocal.apply(null, arguments);
  3187. if (this.isValid() && other.isValid()) {
  3188. return other < this ? this : other;
  3189. } else {
  3190. return createInvalid();
  3191. }
  3192. }
  3193. );
  3194. var prototypeMax = deprecate(
  3195. 'moment().max is deprecated, use moment.min instead. http://momentjs.com/guides/#/warnings/min-max/',
  3196. function () {
  3197. var other = createLocal.apply(null, arguments);
  3198. if (this.isValid() && other.isValid()) {
  3199. return other > this ? this : other;
  3200. } else {
  3201. return createInvalid();
  3202. }
  3203. }
  3204. );
  3205. // Pick a moment m from moments so that m[fn](other) is true for all
  3206. // other. This relies on the function fn to be transitive.
  3207. //
  3208. // moments should either be an array of moment objects or an array, whose
  3209. // first element is an array of moment objects.
  3210. function pickBy(fn, moments) {
  3211. var res, i;
  3212. if (moments.length === 1 && isArray(moments[0])) {
  3213. moments = moments[0];
  3214. }
  3215. if (!moments.length) {
  3216. return createLocal();
  3217. }
  3218. res = moments[0];
  3219. for (i = 1; i < moments.length; ++i) {
  3220. if (!moments[i].isValid() || moments[i][fn](res)) {
  3221. res = moments[i];
  3222. }
  3223. }
  3224. return res;
  3225. }
  3226. // TODO: Use [].sort instead?
  3227. function min () {
  3228. var args = [].slice.call(arguments, 0);
  3229. return pickBy('isBefore', args);
  3230. }
  3231. function max () {
  3232. var args = [].slice.call(arguments, 0);
  3233. return pickBy('isAfter', args);
  3234. }
  3235. var now = function () {
  3236. return Date.now ? Date.now() : +(new Date());
  3237. };
  3238. var ordering = ['year', 'quarter', 'month', 'week', 'day', 'hour', 'minute', 'second', 'millisecond'];
  3239. function isDurationValid(m) {
  3240. for (var key in m) {
  3241. if (!(indexOf.call(ordering, key) !== -1 && (m[key] == null || !isNaN(m[key])))) {
  3242. return false;
  3243. }
  3244. }
  3245. var unitHasDecimal = false;
  3246. for (var i = 0; i < ordering.length; ++i) {
  3247. if (m[ordering[i]]) {
  3248. if (unitHasDecimal) {
  3249. return false; // only allow non-integers for smallest unit
  3250. }
  3251. if (parseFloat(m[ordering[i]]) !== toInt(m[ordering[i]])) {
  3252. unitHasDecimal = true;
  3253. }
  3254. }
  3255. }
  3256. return true;
  3257. }
  3258. function isValid$1() {
  3259. return this._isValid;
  3260. }
  3261. function createInvalid$1() {
  3262. return createDuration(NaN);
  3263. }
  3264. function Duration (duration) {
  3265. var normalizedInput = normalizeObjectUnits(duration),
  3266. years = normalizedInput.year || 0,
  3267. quarters = normalizedInput.quarter || 0,
  3268. months = normalizedInput.month || 0,
  3269. weeks = normalizedInput.week || normalizedInput.isoWeek || 0,
  3270. days = normalizedInput.day || 0,
  3271. hours = normalizedInput.hour || 0,
  3272. minutes = normalizedInput.minute || 0,
  3273. seconds = normalizedInput.second || 0,
  3274. milliseconds = normalizedInput.millisecond || 0;
  3275. this._isValid = isDurationValid(normalizedInput);
  3276. // representation for dateAddRemove
  3277. this._milliseconds = +milliseconds +
  3278. seconds * 1e3 + // 1000
  3279. minutes * 6e4 + // 1000 * 60
  3280. hours * 1000 * 60 * 60; //using 1000 * 60 * 60 instead of 36e5 to avoid floating point rounding errors https://github.com/moment/moment/issues/2978
  3281. // Because of dateAddRemove treats 24 hours as different from a
  3282. // day when working around DST, we need to store them separately
  3283. this._days = +days +
  3284. weeks * 7;
  3285. // It is impossible to translate months into days without knowing
  3286. // which months you are are talking about, so we have to store
  3287. // it separately.
  3288. this._months = +months +
  3289. quarters * 3 +
  3290. years * 12;
  3291. this._data = {};
  3292. this._locale = getLocale();
  3293. this._bubble();
  3294. }
  3295. function isDuration (obj) {
  3296. return obj instanceof Duration;
  3297. }
  3298. function absRound (number) {
  3299. if (number < 0) {
  3300. return Math.round(-1 * number) * -1;
  3301. } else {
  3302. return Math.round(number);
  3303. }
  3304. }
  3305. // FORMATTING
  3306. function offset (token, separator) {
  3307. addFormatToken(token, 0, 0, function () {
  3308. var offset = this.utcOffset();
  3309. var sign = '+';
  3310. if (offset < 0) {
  3311. offset = -offset;
  3312. sign = '-';
  3313. }
  3314. return sign + zeroFill(~~(offset / 60), 2) + separator + zeroFill(~~(offset) % 60, 2);
  3315. });
  3316. }
  3317. offset('Z', ':');
  3318. offset('ZZ', '');
  3319. // PARSING
  3320. addRegexToken('Z', matchShortOffset);
  3321. addRegexToken('ZZ', matchShortOffset);
  3322. addParseToken(['Z', 'ZZ'], function (input, array, config) {
  3323. config._useUTC = true;
  3324. config._tzm = offsetFromString(matchShortOffset, input);
  3325. });
  3326. // HELPERS
  3327. // timezone chunker
  3328. // '+10:00' > ['10', '00']
  3329. // '-1530' > ['-15', '30']
  3330. var chunkOffset = /([\+\-]|\d\d)/gi;
  3331. function offsetFromString(matcher, string) {
  3332. var matches = (string || '').match(matcher);
  3333. if (matches === null) {
  3334. return null;
  3335. }
  3336. var chunk = matches[matches.length - 1] || [];
  3337. var parts = (chunk + '').match(chunkOffset) || ['-', 0, 0];
  3338. var minutes = +(parts[1] * 60) + toInt(parts[2]);
  3339. return minutes === 0 ?
  3340. 0 :
  3341. parts[0] === '+' ? minutes : -minutes;
  3342. }
  3343. // Return a moment from input, that is local/utc/zone equivalent to model.
  3344. function cloneWithOffset(input, model) {
  3345. var res, diff;
  3346. if (model._isUTC) {
  3347. res = model.clone();
  3348. diff = (isMoment(input) || isDate(input) ? input.valueOf() : createLocal(input).valueOf()) - res.valueOf();
  3349. // Use low-level api, because this fn is low-level api.
  3350. res._d.setTime(res._d.valueOf() + diff);
  3351. hooks.updateOffset(res, false);
  3352. return res;
  3353. } else {
  3354. return createLocal(input).local();
  3355. }
  3356. }
  3357. function getDateOffset (m) {
  3358. // On Firefox.24 Date#getTimezoneOffset returns a floating point.
  3359. // https://github.com/moment/moment/pull/1871
  3360. return -Math.round(m._d.getTimezoneOffset() / 15) * 15;
  3361. }
  3362. // HOOKS
  3363. // This function will be called whenever a moment is mutated.
  3364. // It is intended to keep the offset in sync with the timezone.
  3365. hooks.updateOffset = function () {};
  3366. // MOMENTS
  3367. // keepLocalTime = true means only change the timezone, without
  3368. // affecting the local hour. So 5:31:26 +0300 --[utcOffset(2, true)]-->
  3369. // 5:31:26 +0200 It is possible that 5:31:26 doesn't exist with offset
  3370. // +0200, so we adjust the time as needed, to be valid.
  3371. //
  3372. // Keeping the time actually adds/subtracts (one hour)
  3373. // from the actual represented time. That is why we call updateOffset
  3374. // a second time. In case it wants us to change the offset again
  3375. // _changeInProgress == true case, then we have to adjust, because
  3376. // there is no such time in the given timezone.
  3377. function getSetOffset (input, keepLocalTime, keepMinutes) {
  3378. var offset = this._offset || 0,
  3379. localAdjust;
  3380. if (!this.isValid()) {
  3381. return input != null ? this : NaN;
  3382. }
  3383. if (input != null) {
  3384. if (typeof input === 'string') {
  3385. input = offsetFromString(matchShortOffset, input);
  3386. if (input === null) {
  3387. return this;
  3388. }
  3389. } else if (Math.abs(input) < 16 && !keepMinutes) {
  3390. input = input * 60;
  3391. }
  3392. if (!this._isUTC && keepLocalTime) {
  3393. localAdjust = getDateOffset(this);
  3394. }
  3395. this._offset = input;
  3396. this._isUTC = true;
  3397. if (localAdjust != null) {
  3398. this.add(localAdjust, 'm');
  3399. }
  3400. if (offset !== input) {
  3401. if (!keepLocalTime || this._changeInProgress) {
  3402. addSubtract(this, createDuration(input - offset, 'm'), 1, false);
  3403. } else if (!this._changeInProgress) {
  3404. this._changeInProgress = true;
  3405. hooks.updateOffset(this, true);
  3406. this._changeInProgress = null;
  3407. }
  3408. }
  3409. return this;
  3410. } else {
  3411. return this._isUTC ? offset : getDateOffset(this);
  3412. }
  3413. }
  3414. function getSetZone (input, keepLocalTime) {
  3415. if (input != null) {
  3416. if (typeof input !== 'string') {
  3417. input = -input;
  3418. }
  3419. this.utcOffset(input, keepLocalTime);
  3420. return this;
  3421. } else {
  3422. return -this.utcOffset();
  3423. }
  3424. }
  3425. function setOffsetToUTC (keepLocalTime) {
  3426. return this.utcOffset(0, keepLocalTime);
  3427. }
  3428. function setOffsetToLocal (keepLocalTime) {
  3429. if (this._isUTC) {
  3430. this.utcOffset(0, keepLocalTime);
  3431. this._isUTC = false;
  3432. if (keepLocalTime) {
  3433. this.subtract(getDateOffset(this), 'm');
  3434. }
  3435. }
  3436. return this;
  3437. }
  3438. function setOffsetToParsedOffset () {
  3439. if (this._tzm != null) {
  3440. this.utcOffset(this._tzm, false, true);
  3441. } else if (typeof this._i === 'string') {
  3442. var tZone = offsetFromString(matchOffset, this._i);
  3443. if (tZone != null) {
  3444. this.utcOffset(tZone);
  3445. }
  3446. else {
  3447. this.utcOffset(0, true);
  3448. }
  3449. }
  3450. return this;
  3451. }
  3452. function hasAlignedHourOffset (input) {
  3453. if (!this.isValid()) {
  3454. return false;
  3455. }
  3456. input = input ? createLocal(input).utcOffset() : 0;
  3457. return (this.utcOffset() - input) % 60 === 0;
  3458. }
  3459. function isDaylightSavingTime () {
  3460. return (
  3461. this.utcOffset() > this.clone().month(0).utcOffset() ||
  3462. this.utcOffset() > this.clone().month(5).utcOffset()
  3463. );
  3464. }
  3465. function isDaylightSavingTimeShifted () {
  3466. if (!isUndefined(this._isDSTShifted)) {
  3467. return this._isDSTShifted;
  3468. }
  3469. var c = {};
  3470. copyConfig(c, this);
  3471. c = prepareConfig(c);
  3472. if (c._a) {
  3473. var other = c._isUTC ? createUTC(c._a) : createLocal(c._a);
  3474. this._isDSTShifted = this.isValid() &&
  3475. compareArrays(c._a, other.toArray()) > 0;
  3476. } else {
  3477. this._isDSTShifted = false;
  3478. }
  3479. return this._isDSTShifted;
  3480. }
  3481. function isLocal () {
  3482. return this.isValid() ? !this._isUTC : false;
  3483. }
  3484. function isUtcOffset () {
  3485. return this.isValid() ? this._isUTC : false;
  3486. }
  3487. function isUtc () {
  3488. return this.isValid() ? this._isUTC && this._offset === 0 : false;
  3489. }
  3490. // ASP.NET json date format regex
  3491. var aspNetRegex = /^(\-|\+)?(?:(\d*)[. ])?(\d+)\:(\d+)(?:\:(\d+)(\.\d*)?)?$/;
  3492. // from http://docs.closure-library.googlecode.com/git/closure_goog_date_date.js.source.html
  3493. // somewhat more in line with 4.4.3.2 2004 spec, but allows decimal anywhere
  3494. // and further modified to allow for strings containing both week and day
  3495. var isoRegex = /^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;
  3496. function createDuration (input, key) {
  3497. var duration = input,
  3498. // matching against regexp is expensive, do it on demand
  3499. match = null,
  3500. sign,
  3501. ret,
  3502. diffRes;
  3503. if (isDuration(input)) {
  3504. duration = {
  3505. ms : input._milliseconds,
  3506. d : input._days,
  3507. M : input._months
  3508. };
  3509. } else if (isNumber(input)) {
  3510. duration = {};
  3511. if (key) {
  3512. duration[key] = input;
  3513. } else {
  3514. duration.milliseconds = input;
  3515. }
  3516. } else if (!!(match = aspNetRegex.exec(input))) {
  3517. sign = (match[1] === '-') ? -1 : 1;
  3518. duration = {
  3519. y : 0,
  3520. d : toInt(match[DATE]) * sign,
  3521. h : toInt(match[HOUR]) * sign,
  3522. m : toInt(match[MINUTE]) * sign,
  3523. s : toInt(match[SECOND]) * sign,
  3524. ms : toInt(absRound(match[MILLISECOND] * 1000)) * sign // the millisecond decimal point is included in the match
  3525. };
  3526. } else if (!!(match = isoRegex.exec(input))) {
  3527. sign = (match[1] === '-') ? -1 : 1;
  3528. duration = {
  3529. y : parseIso(match[2], sign),
  3530. M : parseIso(match[3], sign),
  3531. w : parseIso(match[4], sign),
  3532. d : parseIso(match[5], sign),
  3533. h : parseIso(match[6], sign),
  3534. m : parseIso(match[7], sign),
  3535. s : parseIso(match[8], sign)
  3536. };
  3537. } else if (duration == null) {// checks for null or undefined
  3538. duration = {};
  3539. } else if (typeof duration === 'object' && ('from' in duration || 'to' in duration)) {
  3540. diffRes = momentsDifference(createLocal(duration.from), createLocal(duration.to));
  3541. duration = {};
  3542. duration.ms = diffRes.milliseconds;
  3543. duration.M = diffRes.months;
  3544. }
  3545. ret = new Duration(duration);
  3546. if (isDuration(input) && hasOwnProp(input, '_locale')) {
  3547. ret._locale = input._locale;
  3548. }
  3549. return ret;
  3550. }
  3551. createDuration.fn = Duration.prototype;
  3552. createDuration.invalid = createInvalid$1;
  3553. function parseIso (inp, sign) {
  3554. // We'd normally use ~~inp for this, but unfortunately it also
  3555. // converts floats to ints.
  3556. // inp may be undefined, so careful calling replace on it.
  3557. var res = inp && parseFloat(inp.replace(',', '.'));
  3558. // apply sign while we're at it
  3559. return (isNaN(res) ? 0 : res) * sign;
  3560. }
  3561. function positiveMomentsDifference(base, other) {
  3562. var res = {};
  3563. res.months = other.month() - base.month() +
  3564. (other.year() - base.year()) * 12;
  3565. if (base.clone().add(res.months, 'M').isAfter(other)) {
  3566. --res.months;
  3567. }
  3568. res.milliseconds = +other - +(base.clone().add(res.months, 'M'));
  3569. return res;
  3570. }
  3571. function momentsDifference(base, other) {
  3572. var res;
  3573. if (!(base.isValid() && other.isValid())) {
  3574. return {milliseconds: 0, months: 0};
  3575. }
  3576. other = cloneWithOffset(other, base);
  3577. if (base.isBefore(other)) {
  3578. res = positiveMomentsDifference(base, other);
  3579. } else {
  3580. res = positiveMomentsDifference(other, base);
  3581. res.milliseconds = -res.milliseconds;
  3582. res.months = -res.months;
  3583. }
  3584. return res;
  3585. }
  3586. // TODO: remove 'name' arg after deprecation is removed
  3587. function createAdder(direction, name) {
  3588. return function (val, period) {
  3589. var dur, tmp;
  3590. //invert the arguments, but complain about it
  3591. if (period !== null && !isNaN(+period)) {
  3592. deprecateSimple(name, 'moment().' + name + '(period, number) is deprecated. Please use moment().' + name + '(number, period). ' +
  3593. 'See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info.');
  3594. tmp = val; val = period; period = tmp;
  3595. }
  3596. val = typeof val === 'string' ? +val : val;
  3597. dur = createDuration(val, period);
  3598. addSubtract(this, dur, direction);
  3599. return this;
  3600. };
  3601. }
  3602. function addSubtract (mom, duration, isAdding, updateOffset) {
  3603. var milliseconds = duration._milliseconds,
  3604. days = absRound(duration._days),
  3605. months = absRound(duration._months);
  3606. if (!mom.isValid()) {
  3607. // No op
  3608. return;
  3609. }
  3610. updateOffset = updateOffset == null ? true : updateOffset;
  3611. if (months) {
  3612. setMonth(mom, get(mom, 'Month') + months * isAdding);
  3613. }
  3614. if (days) {
  3615. set$1(mom, 'Date', get(mom, 'Date') + days * isAdding);
  3616. }
  3617. if (milliseconds) {
  3618. mom._d.setTime(mom._d.valueOf() + milliseconds * isAdding);
  3619. }
  3620. if (updateOffset) {
  3621. hooks.updateOffset(mom, days || months);
  3622. }
  3623. }
  3624. var add = createAdder(1, 'add');
  3625. var subtract = createAdder(-1, 'subtract');
  3626. function getCalendarFormat(myMoment, now) {
  3627. var diff = myMoment.diff(now, 'days', true);
  3628. return diff < -6 ? 'sameElse' :
  3629. diff < -1 ? 'lastWeek' :
  3630. diff < 0 ? 'lastDay' :
  3631. diff < 1 ? 'sameDay' :
  3632. diff < 2 ? 'nextDay' :
  3633. diff < 7 ? 'nextWeek' : 'sameElse';
  3634. }
  3635. function calendar$1 (time, formats) {
  3636. // We want to compare the start of today, vs this.
  3637. // Getting start-of-today depends on whether we're local/utc/offset or not.
  3638. var now = time || createLocal(),
  3639. sod = cloneWithOffset(now, this).startOf('day'),
  3640. format = hooks.calendarFormat(this, sod) || 'sameElse';
  3641. var output = formats && (isFunction(formats[format]) ? formats[format].call(this, now) : formats[format]);
  3642. return this.format(output || this.localeData().calendar(format, this, createLocal(now)));
  3643. }
  3644. function clone () {
  3645. return new Moment(this);
  3646. }
  3647. function isAfter (input, units) {
  3648. var localInput = isMoment(input) ? input : createLocal(input);
  3649. if (!(this.isValid() && localInput.isValid())) {
  3650. return false;
  3651. }
  3652. units = normalizeUnits(units) || 'millisecond';
  3653. if (units === 'millisecond') {
  3654. return this.valueOf() > localInput.valueOf();
  3655. } else {
  3656. return localInput.valueOf() < this.clone().startOf(units).valueOf();
  3657. }
  3658. }
  3659. function isBefore (input, units) {
  3660. var localInput = isMoment(input) ? input : createLocal(input);
  3661. if (!(this.isValid() && localInput.isValid())) {
  3662. return false;
  3663. }
  3664. units = normalizeUnits(units) || 'millisecond';
  3665. if (units === 'millisecond') {
  3666. return this.valueOf() < localInput.valueOf();
  3667. } else {
  3668. return this.clone().endOf(units).valueOf() < localInput.valueOf();
  3669. }
  3670. }
  3671. function isBetween (from, to, units, inclusivity) {
  3672. var localFrom = isMoment(from) ? from : createLocal(from),
  3673. localTo = isMoment(to) ? to : createLocal(to);
  3674. if (!(this.isValid() && localFrom.isValid() && localTo.isValid())) {
  3675. return false;
  3676. }
  3677. inclusivity = inclusivity || '()';
  3678. return (inclusivity[0] === '(' ? this.isAfter(localFrom, units) : !this.isBefore(localFrom, units)) &&
  3679. (inclusivity[1] === ')' ? this.isBefore(localTo, units) : !this.isAfter(localTo, units));
  3680. }
  3681. function isSame (input, units) {
  3682. var localInput = isMoment(input) ? input : createLocal(input),
  3683. inputMs;
  3684. if (!(this.isValid() && localInput.isValid())) {
  3685. return false;
  3686. }
  3687. units = normalizeUnits(units) || 'millisecond';
  3688. if (units === 'millisecond') {
  3689. return this.valueOf() === localInput.valueOf();
  3690. } else {
  3691. inputMs = localInput.valueOf();
  3692. return this.clone().startOf(units).valueOf() <= inputMs && inputMs <= this.clone().endOf(units).valueOf();
  3693. }
  3694. }
  3695. function isSameOrAfter (input, units) {
  3696. return this.isSame(input, units) || this.isAfter(input, units);
  3697. }
  3698. function isSameOrBefore (input, units) {
  3699. return this.isSame(input, units) || this.isBefore(input, units);
  3700. }
  3701. function diff (input, units, asFloat) {
  3702. var that,
  3703. zoneDelta,
  3704. output;
  3705. if (!this.isValid()) {
  3706. return NaN;
  3707. }
  3708. that = cloneWithOffset(input, this);
  3709. if (!that.isValid()) {
  3710. return NaN;
  3711. }
  3712. zoneDelta = (that.utcOffset() - this.utcOffset()) * 6e4;
  3713. units = normalizeUnits(units);
  3714. switch (units) {
  3715. case 'year': output = monthDiff(this, that) / 12; break;
  3716. case 'month': output = monthDiff(this, that); break;
  3717. case 'quarter': output = monthDiff(this, that) / 3; break;
  3718. case 'second': output = (this - that) / 1e3; break; // 1000
  3719. case 'minute': output = (this - that) / 6e4; break; // 1000 * 60
  3720. case 'hour': output = (this - that) / 36e5; break; // 1000 * 60 * 60
  3721. case 'day': output = (this - that - zoneDelta) / 864e5; break; // 1000 * 60 * 60 * 24, negate dst
  3722. case 'week': output = (this - that - zoneDelta) / 6048e5; break; // 1000 * 60 * 60 * 24 * 7, negate dst
  3723. default: output = this - that;
  3724. }
  3725. return asFloat ? output : absFloor(output);
  3726. }
  3727. function monthDiff (a, b) {
  3728. // difference in months
  3729. var wholeMonthDiff = ((b.year() - a.year()) * 12) + (b.month() - a.month()),
  3730. // b is in (anchor - 1 month, anchor + 1 month)
  3731. anchor = a.clone().add(wholeMonthDiff, 'months'),
  3732. anchor2, adjust;
  3733. if (b - anchor < 0) {
  3734. anchor2 = a.clone().add(wholeMonthDiff - 1, 'months');
  3735. // linear across the month
  3736. adjust = (b - anchor) / (anchor - anchor2);
  3737. } else {
  3738. anchor2 = a.clone().add(wholeMonthDiff + 1, 'months');
  3739. // linear across the month
  3740. adjust = (b - anchor) / (anchor2 - anchor);
  3741. }
  3742. //check for negative zero, return zero if negative zero
  3743. return -(wholeMonthDiff + adjust) || 0;
  3744. }
  3745. hooks.defaultFormat = 'YYYY-MM-DDTHH:mm:ssZ';
  3746. hooks.defaultFormatUtc = 'YYYY-MM-DDTHH:mm:ss[Z]';
  3747. function toString () {
  3748. return this.clone().locale('en').format('ddd MMM DD YYYY HH:mm:ss [GMT]ZZ');
  3749. }
  3750. function toISOString(keepOffset) {
  3751. if (!this.isValid()) {
  3752. return null;
  3753. }
  3754. var utc = keepOffset !== true;
  3755. var m = utc ? this.clone().utc() : this;
  3756. if (m.year() < 0 || m.year() > 9999) {
  3757. return formatMoment(m, utc ? 'YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]' : 'YYYYYY-MM-DD[T]HH:mm:ss.SSSZ');
  3758. }
  3759. if (isFunction(Date.prototype.toISOString)) {
  3760. // native implementation is ~50x faster, use it when we can
  3761. if (utc) {
  3762. return this.toDate().toISOString();
  3763. } else {
  3764. return new Date(this.valueOf() + this.utcOffset() * 60 * 1000).toISOString().replace('Z', formatMoment(m, 'Z'));
  3765. }
  3766. }
  3767. return formatMoment(m, utc ? 'YYYY-MM-DD[T]HH:mm:ss.SSS[Z]' : 'YYYY-MM-DD[T]HH:mm:ss.SSSZ');
  3768. }
  3769. /**
  3770. * Return a human readable representation of a moment that can
  3771. * also be evaluated to get a new moment which is the same
  3772. *
  3773. * @link https://nodejs.org/dist/latest/docs/api/util.html#util_custom_inspect_function_on_objects
  3774. */
  3775. function inspect () {
  3776. if (!this.isValid()) {
  3777. return 'moment.invalid(/* ' + this._i + ' */)';
  3778. }
  3779. var func = 'moment';
  3780. var zone = '';
  3781. if (!this.isLocal()) {
  3782. func = this.utcOffset() === 0 ? 'moment.utc' : 'moment.parseZone';
  3783. zone = 'Z';
  3784. }
  3785. var prefix = '[' + func + '("]';
  3786. var year = (0 <= this.year() && this.year() <= 9999) ? 'YYYY' : 'YYYYYY';
  3787. var datetime = '-MM-DD[T]HH:mm:ss.SSS';
  3788. var suffix = zone + '[")]';
  3789. return this.format(prefix + year + datetime + suffix);
  3790. }
  3791. function format (inputString) {
  3792. if (!inputString) {
  3793. inputString = this.isUtc() ? hooks.defaultFormatUtc : hooks.defaultFormat;
  3794. }
  3795. var output = formatMoment(this, inputString);
  3796. return this.localeData().postformat(output);
  3797. }
  3798. function from (time, withoutSuffix) {
  3799. if (this.isValid() &&
  3800. ((isMoment(time) && time.isValid()) ||
  3801. createLocal(time).isValid())) {
  3802. return createDuration({to: this, from: time}).locale(this.locale()).humanize(!withoutSuffix);
  3803. } else {
  3804. return this.localeData().invalidDate();
  3805. }
  3806. }
  3807. function fromNow (withoutSuffix) {
  3808. return this.from(createLocal(), withoutSuffix);
  3809. }
  3810. function to (time, withoutSuffix) {
  3811. if (this.isValid() &&
  3812. ((isMoment(time) && time.isValid()) ||
  3813. createLocal(time).isValid())) {
  3814. return createDuration({from: this, to: time}).locale(this.locale()).humanize(!withoutSuffix);
  3815. } else {
  3816. return this.localeData().invalidDate();
  3817. }
  3818. }
  3819. function toNow (withoutSuffix) {
  3820. return this.to(createLocal(), withoutSuffix);
  3821. }
  3822. // If passed a locale key, it will set the locale for this
  3823. // instance. Otherwise, it will return the locale configuration
  3824. // variables for this instance.
  3825. function locale (key) {
  3826. var newLocaleData;
  3827. if (key === undefined) {
  3828. return this._locale._abbr;
  3829. } else {
  3830. newLocaleData = getLocale(key);
  3831. if (newLocaleData != null) {
  3832. this._locale = newLocaleData;
  3833. }
  3834. return this;
  3835. }
  3836. }
  3837. var lang = deprecate(
  3838. 'moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.',
  3839. function (key) {
  3840. if (key === undefined) {
  3841. return this.localeData();
  3842. } else {
  3843. return this.locale(key);
  3844. }
  3845. }
  3846. );
  3847. function localeData () {
  3848. return this._locale;
  3849. }
  3850. var MS_PER_SECOND = 1000;
  3851. var MS_PER_MINUTE = 60 * MS_PER_SECOND;
  3852. var MS_PER_HOUR = 60 * MS_PER_MINUTE;
  3853. var MS_PER_400_YEARS = (365 * 400 + 97) * 24 * MS_PER_HOUR;
  3854. // actual modulo - handles negative numbers (for dates before 1970):
  3855. function mod$1(dividend, divisor) {
  3856. return (dividend % divisor + divisor) % divisor;
  3857. }
  3858. function localStartOfDate(y, m, d) {
  3859. // the date constructor remaps years 0-99 to 1900-1999
  3860. if (y < 100 && y >= 0) {
  3861. // preserve leap years using a full 400 year cycle, then reset
  3862. return new Date(y + 400, m, d) - MS_PER_400_YEARS;
  3863. } else {
  3864. return new Date(y, m, d).valueOf();
  3865. }
  3866. }
  3867. function utcStartOfDate(y, m, d) {
  3868. // Date.UTC remaps years 0-99 to 1900-1999
  3869. if (y < 100 && y >= 0) {
  3870. // preserve leap years using a full 400 year cycle, then reset
  3871. return Date.UTC(y + 400, m, d) - MS_PER_400_YEARS;
  3872. } else {
  3873. return Date.UTC(y, m, d);
  3874. }
  3875. }
  3876. function startOf (units) {
  3877. var time;
  3878. units = normalizeUnits(units);
  3879. if (units === undefined || units === 'millisecond' || !this.isValid()) {
  3880. return this;
  3881. }
  3882. var startOfDate = this._isUTC ? utcStartOfDate : localStartOfDate;
  3883. switch (units) {
  3884. case 'year':
  3885. time = startOfDate(this.year(), 0, 1);
  3886. break;
  3887. case 'quarter':
  3888. time = startOfDate(this.year(), this.month() - this.month() % 3, 1);
  3889. break;
  3890. case 'month':
  3891. time = startOfDate(this.year(), this.month(), 1);
  3892. break;
  3893. case 'week':
  3894. time = startOfDate(this.year(), this.month(), this.date() - this.weekday());
  3895. break;
  3896. case 'isoWeek':
  3897. time = startOfDate(this.year(), this.month(), this.date() - (this.isoWeekday() - 1));
  3898. break;
  3899. case 'day':
  3900. case 'date':
  3901. time = startOfDate(this.year(), this.month(), this.date());
  3902. break;
  3903. case 'hour':
  3904. time = this._d.valueOf();
  3905. time -= mod$1(time + (this._isUTC ? 0 : this.utcOffset() * MS_PER_MINUTE), MS_PER_HOUR);
  3906. break;
  3907. case 'minute':
  3908. time = this._d.valueOf();
  3909. time -= mod$1(time, MS_PER_MINUTE);
  3910. break;
  3911. case 'second':
  3912. time = this._d.valueOf();
  3913. time -= mod$1(time, MS_PER_SECOND);
  3914. break;
  3915. }
  3916. this._d.setTime(time);
  3917. hooks.updateOffset(this, true);
  3918. return this;
  3919. }
  3920. function endOf (units) {
  3921. var time;
  3922. units = normalizeUnits(units);
  3923. if (units === undefined || units === 'millisecond' || !this.isValid()) {
  3924. return this;
  3925. }
  3926. var startOfDate = this._isUTC ? utcStartOfDate : localStartOfDate;
  3927. switch (units) {
  3928. case 'year':
  3929. time = startOfDate(this.year() + 1, 0, 1) - 1;
  3930. break;
  3931. case 'quarter':
  3932. time = startOfDate(this.year(), this.month() - this.month() % 3 + 3, 1) - 1;
  3933. break;
  3934. case 'month':
  3935. time = startOfDate(this.year(), this.month() + 1, 1) - 1;
  3936. break;
  3937. case 'week':
  3938. time = startOfDate(this.year(), this.month(), this.date() - this.weekday() + 7) - 1;
  3939. break;
  3940. case 'isoWeek':
  3941. time = startOfDate(this.year(), this.month(), this.date() - (this.isoWeekday() - 1) + 7) - 1;
  3942. break;
  3943. case 'day':
  3944. case 'date':
  3945. time = startOfDate(this.year(), this.month(), this.date() + 1) - 1;
  3946. break;
  3947. case 'hour':
  3948. time = this._d.valueOf();
  3949. time += MS_PER_HOUR - mod$1(time + (this._isUTC ? 0 : this.utcOffset() * MS_PER_MINUTE), MS_PER_HOUR) - 1;
  3950. break;
  3951. case 'minute':
  3952. time = this._d.valueOf();
  3953. time += MS_PER_MINUTE - mod$1(time, MS_PER_MINUTE) - 1;
  3954. break;
  3955. case 'second':
  3956. time = this._d.valueOf();
  3957. time += MS_PER_SECOND - mod$1(time, MS_PER_SECOND) - 1;
  3958. break;
  3959. }
  3960. this._d.setTime(time);
  3961. hooks.updateOffset(this, true);
  3962. return this;
  3963. }
  3964. function valueOf () {
  3965. return this._d.valueOf() - ((this._offset || 0) * 60000);
  3966. }
  3967. function unix () {
  3968. return Math.floor(this.valueOf() / 1000);
  3969. }
  3970. function toDate () {
  3971. return new Date(this.valueOf());
  3972. }
  3973. function toArray () {
  3974. var m = this;
  3975. return [m.year(), m.month(), m.date(), m.hour(), m.minute(), m.second(), m.millisecond()];
  3976. }
  3977. function toObject () {
  3978. var m = this;
  3979. return {
  3980. years: m.year(),
  3981. months: m.month(),
  3982. date: m.date(),
  3983. hours: m.hours(),
  3984. minutes: m.minutes(),
  3985. seconds: m.seconds(),
  3986. milliseconds: m.milliseconds()
  3987. };
  3988. }
  3989. function toJSON () {
  3990. // new Date(NaN).toJSON() === null
  3991. return this.isValid() ? this.toISOString() : null;
  3992. }
  3993. function isValid$2 () {
  3994. return isValid(this);
  3995. }
  3996. function parsingFlags () {
  3997. return extend({}, getParsingFlags(this));
  3998. }
  3999. function invalidAt () {
  4000. return getParsingFlags(this).overflow;
  4001. }
  4002. function creationData() {
  4003. return {
  4004. input: this._i,
  4005. format: this._f,
  4006. locale: this._locale,
  4007. isUTC: this._isUTC,
  4008. strict: this._strict
  4009. };
  4010. }
  4011. // FORMATTING
  4012. addFormatToken(0, ['gg', 2], 0, function () {
  4013. return this.weekYear() % 100;
  4014. });
  4015. addFormatToken(0, ['GG', 2], 0, function () {
  4016. return this.isoWeekYear() % 100;
  4017. });
  4018. function addWeekYearFormatToken (token, getter) {
  4019. addFormatToken(0, [token, token.length], 0, getter);
  4020. }
  4021. addWeekYearFormatToken('gggg', 'weekYear');
  4022. addWeekYearFormatToken('ggggg', 'weekYear');
  4023. addWeekYearFormatToken('GGGG', 'isoWeekYear');
  4024. addWeekYearFormatToken('GGGGG', 'isoWeekYear');
  4025. // ALIASES
  4026. addUnitAlias('weekYear', 'gg');
  4027. addUnitAlias('isoWeekYear', 'GG');
  4028. // PRIORITY
  4029. addUnitPriority('weekYear', 1);
  4030. addUnitPriority('isoWeekYear', 1);
  4031. // PARSING
  4032. addRegexToken('G', matchSigned);
  4033. addRegexToken('g', matchSigned);
  4034. addRegexToken('GG', match1to2, match2);
  4035. addRegexToken('gg', match1to2, match2);
  4036. addRegexToken('GGGG', match1to4, match4);
  4037. addRegexToken('gggg', match1to4, match4);
  4038. addRegexToken('GGGGG', match1to6, match6);
  4039. addRegexToken('ggggg', match1to6, match6);
  4040. addWeekParseToken(['gggg', 'ggggg', 'GGGG', 'GGGGG'], function (input, week, config, token) {
  4041. week[token.substr(0, 2)] = toInt(input);
  4042. });
  4043. addWeekParseToken(['gg', 'GG'], function (input, week, config, token) {
  4044. week[token] = hooks.parseTwoDigitYear(input);
  4045. });
  4046. // MOMENTS
  4047. function getSetWeekYear (input) {
  4048. return getSetWeekYearHelper.call(this,
  4049. input,
  4050. this.week(),
  4051. this.weekday(),
  4052. this.localeData()._week.dow,
  4053. this.localeData()._week.doy);
  4054. }
  4055. function getSetISOWeekYear (input) {
  4056. return getSetWeekYearHelper.call(this,
  4057. input, this.isoWeek(), this.isoWeekday(), 1, 4);
  4058. }
  4059. function getISOWeeksInYear () {
  4060. return weeksInYear(this.year(), 1, 4);
  4061. }
  4062. function getWeeksInYear () {
  4063. var weekInfo = this.localeData()._week;
  4064. return weeksInYear(this.year(), weekInfo.dow, weekInfo.doy);
  4065. }
  4066. function getSetWeekYearHelper(input, week, weekday, dow, doy) {
  4067. var weeksTarget;
  4068. if (input == null) {
  4069. return weekOfYear(this, dow, doy).year;
  4070. } else {
  4071. weeksTarget = weeksInYear(input, dow, doy);
  4072. if (week > weeksTarget) {
  4073. week = weeksTarget;
  4074. }
  4075. return setWeekAll.call(this, input, week, weekday, dow, doy);
  4076. }
  4077. }
  4078. function setWeekAll(weekYear, week, weekday, dow, doy) {
  4079. var dayOfYearData = dayOfYearFromWeeks(weekYear, week, weekday, dow, doy),
  4080. date = createUTCDate(dayOfYearData.year, 0, dayOfYearData.dayOfYear);
  4081. this.year(date.getUTCFullYear());
  4082. this.month(date.getUTCMonth());
  4083. this.date(date.getUTCDate());
  4084. return this;
  4085. }
  4086. // FORMATTING
  4087. addFormatToken('Q', 0, 'Qo', 'quarter');
  4088. // ALIASES
  4089. addUnitAlias('quarter', 'Q');
  4090. // PRIORITY
  4091. addUnitPriority('quarter', 7);
  4092. // PARSING
  4093. addRegexToken('Q', match1);
  4094. addParseToken('Q', function (input, array) {
  4095. array[MONTH] = (toInt(input) - 1) * 3;
  4096. });
  4097. // MOMENTS
  4098. function getSetQuarter (input) {
  4099. return input == null ? Math.ceil((this.month() + 1) / 3) : this.month((input - 1) * 3 + this.month() % 3);
  4100. }
  4101. // FORMATTING
  4102. addFormatToken('D', ['DD', 2], 'Do', 'date');
  4103. // ALIASES
  4104. addUnitAlias('date', 'D');
  4105. // PRIORITY
  4106. addUnitPriority('date', 9);
  4107. // PARSING
  4108. addRegexToken('D', match1to2);
  4109. addRegexToken('DD', match1to2, match2);
  4110. addRegexToken('Do', function (isStrict, locale) {
  4111. // TODO: Remove "ordinalParse" fallback in next major release.
  4112. return isStrict ?
  4113. (locale._dayOfMonthOrdinalParse || locale._ordinalParse) :
  4114. locale._dayOfMonthOrdinalParseLenient;
  4115. });
  4116. addParseToken(['D', 'DD'], DATE);
  4117. addParseToken('Do', function (input, array) {
  4118. array[DATE] = toInt(input.match(match1to2)[0]);
  4119. });
  4120. // MOMENTS
  4121. var getSetDayOfMonth = makeGetSet('Date', true);
  4122. // FORMATTING
  4123. addFormatToken('DDD', ['DDDD', 3], 'DDDo', 'dayOfYear');
  4124. // ALIASES
  4125. addUnitAlias('dayOfYear', 'DDD');
  4126. // PRIORITY
  4127. addUnitPriority('dayOfYear', 4);
  4128. // PARSING
  4129. addRegexToken('DDD', match1to3);
  4130. addRegexToken('DDDD', match3);
  4131. addParseToken(['DDD', 'DDDD'], function (input, array, config) {
  4132. config._dayOfYear = toInt(input);
  4133. });
  4134. // HELPERS
  4135. // MOMENTS
  4136. function getSetDayOfYear (input) {
  4137. var dayOfYear = Math.round((this.clone().startOf('day') - this.clone().startOf('year')) / 864e5) + 1;
  4138. return input == null ? dayOfYear : this.add((input - dayOfYear), 'd');
  4139. }
  4140. // FORMATTING
  4141. addFormatToken('m', ['mm', 2], 0, 'minute');
  4142. // ALIASES
  4143. addUnitAlias('minute', 'm');
  4144. // PRIORITY
  4145. addUnitPriority('minute', 14);
  4146. // PARSING
  4147. addRegexToken('m', match1to2);
  4148. addRegexToken('mm', match1to2, match2);
  4149. addParseToken(['m', 'mm'], MINUTE);
  4150. // MOMENTS
  4151. var getSetMinute = makeGetSet('Minutes', false);
  4152. // FORMATTING
  4153. addFormatToken('s', ['ss', 2], 0, 'second');
  4154. // ALIASES
  4155. addUnitAlias('second', 's');
  4156. // PRIORITY
  4157. addUnitPriority('second', 15);
  4158. // PARSING
  4159. addRegexToken('s', match1to2);
  4160. addRegexToken('ss', match1to2, match2);
  4161. addParseToken(['s', 'ss'], SECOND);
  4162. // MOMENTS
  4163. var getSetSecond = makeGetSet('Seconds', false);
  4164. // FORMATTING
  4165. addFormatToken('S', 0, 0, function () {
  4166. return ~~(this.millisecond() / 100);
  4167. });
  4168. addFormatToken(0, ['SS', 2], 0, function () {
  4169. return ~~(this.millisecond() / 10);
  4170. });
  4171. addFormatToken(0, ['SSS', 3], 0, 'millisecond');
  4172. addFormatToken(0, ['SSSS', 4], 0, function () {
  4173. return this.millisecond() * 10;
  4174. });
  4175. addFormatToken(0, ['SSSSS', 5], 0, function () {
  4176. return this.millisecond() * 100;
  4177. });
  4178. addFormatToken(0, ['SSSSSS', 6], 0, function () {
  4179. return this.millisecond() * 1000;
  4180. });
  4181. addFormatToken(0, ['SSSSSSS', 7], 0, function () {
  4182. return this.millisecond() * 10000;
  4183. });
  4184. addFormatToken(0, ['SSSSSSSS', 8], 0, function () {
  4185. return this.millisecond() * 100000;
  4186. });
  4187. addFormatToken(0, ['SSSSSSSSS', 9], 0, function () {
  4188. return this.millisecond() * 1000000;
  4189. });
  4190. // ALIASES
  4191. addUnitAlias('millisecond', 'ms');
  4192. // PRIORITY
  4193. addUnitPriority('millisecond', 16);
  4194. // PARSING
  4195. addRegexToken('S', match1to3, match1);
  4196. addRegexToken('SS', match1to3, match2);
  4197. addRegexToken('SSS', match1to3, match3);
  4198. var token;
  4199. for (token = 'SSSS'; token.length <= 9; token += 'S') {
  4200. addRegexToken(token, matchUnsigned);
  4201. }
  4202. function parseMs(input, array) {
  4203. array[MILLISECOND] = toInt(('0.' + input) * 1000);
  4204. }
  4205. for (token = 'S'; token.length <= 9; token += 'S') {
  4206. addParseToken(token, parseMs);
  4207. }
  4208. // MOMENTS
  4209. var getSetMillisecond = makeGetSet('Milliseconds', false);
  4210. // FORMATTING
  4211. addFormatToken('z', 0, 0, 'zoneAbbr');
  4212. addFormatToken('zz', 0, 0, 'zoneName');
  4213. // MOMENTS
  4214. function getZoneAbbr () {
  4215. return this._isUTC ? 'UTC' : '';
  4216. }
  4217. function getZoneName () {
  4218. return this._isUTC ? 'Coordinated Universal Time' : '';
  4219. }
  4220. var proto = Moment.prototype;
  4221. proto.add = add;
  4222. proto.calendar = calendar$1;
  4223. proto.clone = clone;
  4224. proto.diff = diff;
  4225. proto.endOf = endOf;
  4226. proto.format = format;
  4227. proto.from = from;
  4228. proto.fromNow = fromNow;
  4229. proto.to = to;
  4230. proto.toNow = toNow;
  4231. proto.get = stringGet;
  4232. proto.invalidAt = invalidAt;
  4233. proto.isAfter = isAfter;
  4234. proto.isBefore = isBefore;
  4235. proto.isBetween = isBetween;
  4236. proto.isSame = isSame;
  4237. proto.isSameOrAfter = isSameOrAfter;
  4238. proto.isSameOrBefore = isSameOrBefore;
  4239. proto.isValid = isValid$2;
  4240. proto.lang = lang;
  4241. proto.locale = locale;
  4242. proto.localeData = localeData;
  4243. proto.max = prototypeMax;
  4244. proto.min = prototypeMin;
  4245. proto.parsingFlags = parsingFlags;
  4246. proto.set = stringSet;
  4247. proto.startOf = startOf;
  4248. proto.subtract = subtract;
  4249. proto.toArray = toArray;
  4250. proto.toObject = toObject;
  4251. proto.toDate = toDate;
  4252. proto.toISOString = toISOString;
  4253. proto.inspect = inspect;
  4254. proto.toJSON = toJSON;
  4255. proto.toString = toString;
  4256. proto.unix = unix;
  4257. proto.valueOf = valueOf;
  4258. proto.creationData = creationData;
  4259. proto.year = getSetYear;
  4260. proto.isLeapYear = getIsLeapYear;
  4261. proto.weekYear = getSetWeekYear;
  4262. proto.isoWeekYear = getSetISOWeekYear;
  4263. proto.quarter = proto.quarters = getSetQuarter;
  4264. proto.month = getSetMonth;
  4265. proto.daysInMonth = getDaysInMonth;
  4266. proto.week = proto.weeks = getSetWeek;
  4267. proto.isoWeek = proto.isoWeeks = getSetISOWeek;
  4268. proto.weeksInYear = getWeeksInYear;
  4269. proto.isoWeeksInYear = getISOWeeksInYear;
  4270. proto.date = getSetDayOfMonth;
  4271. proto.day = proto.days = getSetDayOfWeek;
  4272. proto.weekday = getSetLocaleDayOfWeek;
  4273. proto.isoWeekday = getSetISODayOfWeek;
  4274. proto.dayOfYear = getSetDayOfYear;
  4275. proto.hour = proto.hours = getSetHour;
  4276. proto.minute = proto.minutes = getSetMinute;
  4277. proto.second = proto.seconds = getSetSecond;
  4278. proto.millisecond = proto.milliseconds = getSetMillisecond;
  4279. proto.utcOffset = getSetOffset;
  4280. proto.utc = setOffsetToUTC;
  4281. proto.local = setOffsetToLocal;
  4282. proto.parseZone = setOffsetToParsedOffset;
  4283. proto.hasAlignedHourOffset = hasAlignedHourOffset;
  4284. proto.isDST = isDaylightSavingTime;
  4285. proto.isLocal = isLocal;
  4286. proto.isUtcOffset = isUtcOffset;
  4287. proto.isUtc = isUtc;
  4288. proto.isUTC = isUtc;
  4289. proto.zoneAbbr = getZoneAbbr;
  4290. proto.zoneName = getZoneName;
  4291. proto.dates = deprecate('dates accessor is deprecated. Use date instead.', getSetDayOfMonth);
  4292. proto.months = deprecate('months accessor is deprecated. Use month instead', getSetMonth);
  4293. proto.years = deprecate('years accessor is deprecated. Use year instead', getSetYear);
  4294. proto.zone = deprecate('moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/', getSetZone);
  4295. proto.isDSTShifted = deprecate('isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information', isDaylightSavingTimeShifted);
  4296. function createUnix (input) {
  4297. return createLocal(input * 1000);
  4298. }
  4299. function createInZone () {
  4300. return createLocal.apply(null, arguments).parseZone();
  4301. }
  4302. function preParsePostFormat (string) {
  4303. return string;
  4304. }
  4305. var proto$1 = Locale.prototype;
  4306. proto$1.calendar = calendar;
  4307. proto$1.longDateFormat = longDateFormat;
  4308. proto$1.invalidDate = invalidDate;
  4309. proto$1.ordinal = ordinal;
  4310. proto$1.preparse = preParsePostFormat;
  4311. proto$1.postformat = preParsePostFormat;
  4312. proto$1.relativeTime = relativeTime;
  4313. proto$1.pastFuture = pastFuture;
  4314. proto$1.set = set;
  4315. proto$1.months = localeMonths;
  4316. proto$1.monthsShort = localeMonthsShort;
  4317. proto$1.monthsParse = localeMonthsParse;
  4318. proto$1.monthsRegex = monthsRegex;
  4319. proto$1.monthsShortRegex = monthsShortRegex;
  4320. proto$1.week = localeWeek;
  4321. proto$1.firstDayOfYear = localeFirstDayOfYear;
  4322. proto$1.firstDayOfWeek = localeFirstDayOfWeek;
  4323. proto$1.weekdays = localeWeekdays;
  4324. proto$1.weekdaysMin = localeWeekdaysMin;
  4325. proto$1.weekdaysShort = localeWeekdaysShort;
  4326. proto$1.weekdaysParse = localeWeekdaysParse;
  4327. proto$1.weekdaysRegex = weekdaysRegex;
  4328. proto$1.weekdaysShortRegex = weekdaysShortRegex;
  4329. proto$1.weekdaysMinRegex = weekdaysMinRegex;
  4330. proto$1.isPM = localeIsPM;
  4331. proto$1.meridiem = localeMeridiem;
  4332. function get$1 (format, index, field, setter) {
  4333. var locale = getLocale();
  4334. var utc = createUTC().set(setter, index);
  4335. return locale[field](utc, format);
  4336. }
  4337. function listMonthsImpl (format, index, field) {
  4338. if (isNumber(format)) {
  4339. index = format;
  4340. format = undefined;
  4341. }
  4342. format = format || '';
  4343. if (index != null) {
  4344. return get$1(format, index, field, 'month');
  4345. }
  4346. var i;
  4347. var out = [];
  4348. for (i = 0; i < 12; i++) {
  4349. out[i] = get$1(format, i, field, 'month');
  4350. }
  4351. return out;
  4352. }
  4353. // ()
  4354. // (5)
  4355. // (fmt, 5)
  4356. // (fmt)
  4357. // (true)
  4358. // (true, 5)
  4359. // (true, fmt, 5)
  4360. // (true, fmt)
  4361. function listWeekdaysImpl (localeSorted, format, index, field) {
  4362. if (typeof localeSorted === 'boolean') {
  4363. if (isNumber(format)) {
  4364. index = format;
  4365. format = undefined;
  4366. }
  4367. format = format || '';
  4368. } else {
  4369. format = localeSorted;
  4370. index = format;
  4371. localeSorted = false;
  4372. if (isNumber(format)) {
  4373. index = format;
  4374. format = undefined;
  4375. }
  4376. format = format || '';
  4377. }
  4378. var locale = getLocale(),
  4379. shift = localeSorted ? locale._week.dow : 0;
  4380. if (index != null) {
  4381. return get$1(format, (index + shift) % 7, field, 'day');
  4382. }
  4383. var i;
  4384. var out = [];
  4385. for (i = 0; i < 7; i++) {
  4386. out[i] = get$1(format, (i + shift) % 7, field, 'day');
  4387. }
  4388. return out;
  4389. }
  4390. function listMonths (format, index) {
  4391. return listMonthsImpl(format, index, 'months');
  4392. }
  4393. function listMonthsShort (format, index) {
  4394. return listMonthsImpl(format, index, 'monthsShort');
  4395. }
  4396. function listWeekdays (localeSorted, format, index) {
  4397. return listWeekdaysImpl(localeSorted, format, index, 'weekdays');
  4398. }
  4399. function listWeekdaysShort (localeSorted, format, index) {
  4400. return listWeekdaysImpl(localeSorted, format, index, 'weekdaysShort');
  4401. }
  4402. function listWeekdaysMin (localeSorted, format, index) {
  4403. return listWeekdaysImpl(localeSorted, format, index, 'weekdaysMin');
  4404. }
  4405. getSetGlobalLocale('en', {
  4406. dayOfMonthOrdinalParse: /\d{1,2}(th|st|nd|rd)/,
  4407. ordinal : function (number) {
  4408. var b = number % 10,
  4409. output = (toInt(number % 100 / 10) === 1) ? 'th' :
  4410. (b === 1) ? 'st' :
  4411. (b === 2) ? 'nd' :
  4412. (b === 3) ? 'rd' : 'th';
  4413. return number + output;
  4414. }
  4415. });
  4416. // Side effect imports
  4417. hooks.lang = deprecate('moment.lang is deprecated. Use moment.locale instead.', getSetGlobalLocale);
  4418. hooks.langData = deprecate('moment.langData is deprecated. Use moment.localeData instead.', getLocale);
  4419. var mathAbs = Math.abs;
  4420. function abs () {
  4421. var data = this._data;
  4422. this._milliseconds = mathAbs(this._milliseconds);
  4423. this._days = mathAbs(this._days);
  4424. this._months = mathAbs(this._months);
  4425. data.milliseconds = mathAbs(data.milliseconds);
  4426. data.seconds = mathAbs(data.seconds);
  4427. data.minutes = mathAbs(data.minutes);
  4428. data.hours = mathAbs(data.hours);
  4429. data.months = mathAbs(data.months);
  4430. data.years = mathAbs(data.years);
  4431. return this;
  4432. }
  4433. function addSubtract$1 (duration, input, value, direction) {
  4434. var other = createDuration(input, value);
  4435. duration._milliseconds += direction * other._milliseconds;
  4436. duration._days += direction * other._days;
  4437. duration._months += direction * other._months;
  4438. return duration._bubble();
  4439. }
  4440. // supports only 2.0-style add(1, 's') or add(duration)
  4441. function add$1 (input, value) {
  4442. return addSubtract$1(this, input, value, 1);
  4443. }
  4444. // supports only 2.0-style subtract(1, 's') or subtract(duration)
  4445. function subtract$1 (input, value) {
  4446. return addSubtract$1(this, input, value, -1);
  4447. }
  4448. function absCeil (number) {
  4449. if (number < 0) {
  4450. return Math.floor(number);
  4451. } else {
  4452. return Math.ceil(number);
  4453. }
  4454. }
  4455. function bubble () {
  4456. var milliseconds = this._milliseconds;
  4457. var days = this._days;
  4458. var months = this._months;
  4459. var data = this._data;
  4460. var seconds, minutes, hours, years, monthsFromDays;
  4461. // if we have a mix of positive and negative values, bubble down first
  4462. // check: https://github.com/moment/moment/issues/2166
  4463. if (!((milliseconds >= 0 && days >= 0 && months >= 0) ||
  4464. (milliseconds <= 0 && days <= 0 && months <= 0))) {
  4465. milliseconds += absCeil(monthsToDays(months) + days) * 864e5;
  4466. days = 0;
  4467. months = 0;
  4468. }
  4469. // The following code bubbles up values, see the tests for
  4470. // examples of what that means.
  4471. data.milliseconds = milliseconds % 1000;
  4472. seconds = absFloor(milliseconds / 1000);
  4473. data.seconds = seconds % 60;
  4474. minutes = absFloor(seconds / 60);
  4475. data.minutes = minutes % 60;
  4476. hours = absFloor(minutes / 60);
  4477. data.hours = hours % 24;
  4478. days += absFloor(hours / 24);
  4479. // convert days to months
  4480. monthsFromDays = absFloor(daysToMonths(days));
  4481. months += monthsFromDays;
  4482. days -= absCeil(monthsToDays(monthsFromDays));
  4483. // 12 months -> 1 year
  4484. years = absFloor(months / 12);
  4485. months %= 12;
  4486. data.days = days;
  4487. data.months = months;
  4488. data.years = years;
  4489. return this;
  4490. }
  4491. function daysToMonths (days) {
  4492. // 400 years have 146097 days (taking into account leap year rules)
  4493. // 400 years have 12 months === 4800
  4494. return days * 4800 / 146097;
  4495. }
  4496. function monthsToDays (months) {
  4497. // the reverse of daysToMonths
  4498. return months * 146097 / 4800;
  4499. }
  4500. function as (units) {
  4501. if (!this.isValid()) {
  4502. return NaN;
  4503. }
  4504. var days;
  4505. var months;
  4506. var milliseconds = this._milliseconds;
  4507. units = normalizeUnits(units);
  4508. if (units === 'month' || units === 'quarter' || units === 'year') {
  4509. days = this._days + milliseconds / 864e5;
  4510. months = this._months + daysToMonths(days);
  4511. switch (units) {
  4512. case 'month': return months;
  4513. case 'quarter': return months / 3;
  4514. case 'year': return months / 12;
  4515. }
  4516. } else {
  4517. // handle milliseconds separately because of floating point math errors (issue #1867)
  4518. days = this._days + Math.round(monthsToDays(this._months));
  4519. switch (units) {
  4520. case 'week' : return days / 7 + milliseconds / 6048e5;
  4521. case 'day' : return days + milliseconds / 864e5;
  4522. case 'hour' : return days * 24 + milliseconds / 36e5;
  4523. case 'minute' : return days * 1440 + milliseconds / 6e4;
  4524. case 'second' : return days * 86400 + milliseconds / 1000;
  4525. // Math.floor prevents floating point math errors here
  4526. case 'millisecond': return Math.floor(days * 864e5) + milliseconds;
  4527. default: throw new Error('Unknown unit ' + units);
  4528. }
  4529. }
  4530. }
  4531. // TODO: Use this.as('ms')?
  4532. function valueOf$1 () {
  4533. if (!this.isValid()) {
  4534. return NaN;
  4535. }
  4536. return (
  4537. this._milliseconds +
  4538. this._days * 864e5 +
  4539. (this._months % 12) * 2592e6 +
  4540. toInt(this._months / 12) * 31536e6
  4541. );
  4542. }
  4543. function makeAs (alias) {
  4544. return function () {
  4545. return this.as(alias);
  4546. };
  4547. }
  4548. var asMilliseconds = makeAs('ms');
  4549. var asSeconds = makeAs('s');
  4550. var asMinutes = makeAs('m');
  4551. var asHours = makeAs('h');
  4552. var asDays = makeAs('d');
  4553. var asWeeks = makeAs('w');
  4554. var asMonths = makeAs('M');
  4555. var asQuarters = makeAs('Q');
  4556. var asYears = makeAs('y');
  4557. function clone$1 () {
  4558. return createDuration(this);
  4559. }
  4560. function get$2 (units) {
  4561. units = normalizeUnits(units);
  4562. return this.isValid() ? this[units + 's']() : NaN;
  4563. }
  4564. function makeGetter(name) {
  4565. return function () {
  4566. return this.isValid() ? this._data[name] : NaN;
  4567. };
  4568. }
  4569. var milliseconds = makeGetter('milliseconds');
  4570. var seconds = makeGetter('seconds');
  4571. var minutes = makeGetter('minutes');
  4572. var hours = makeGetter('hours');
  4573. var days = makeGetter('days');
  4574. var months = makeGetter('months');
  4575. var years = makeGetter('years');
  4576. function weeks () {
  4577. return absFloor(this.days() / 7);
  4578. }
  4579. var round = Math.round;
  4580. var thresholds = {
  4581. ss: 44, // a few seconds to seconds
  4582. s : 45, // seconds to minute
  4583. m : 45, // minutes to hour
  4584. h : 22, // hours to day
  4585. d : 26, // days to month
  4586. M : 11 // months to year
  4587. };
  4588. // helper function for moment.fn.from, moment.fn.fromNow, and moment.duration.fn.humanize
  4589. function substituteTimeAgo(string, number, withoutSuffix, isFuture, locale) {
  4590. return locale.relativeTime(number || 1, !!withoutSuffix, string, isFuture);
  4591. }
  4592. function relativeTime$1 (posNegDuration, withoutSuffix, locale) {
  4593. var duration = createDuration(posNegDuration).abs();
  4594. var seconds = round(duration.as('s'));
  4595. var minutes = round(duration.as('m'));
  4596. var hours = round(duration.as('h'));
  4597. var days = round(duration.as('d'));
  4598. var months = round(duration.as('M'));
  4599. var years = round(duration.as('y'));
  4600. var a = seconds <= thresholds.ss && ['s', seconds] ||
  4601. seconds < thresholds.s && ['ss', seconds] ||
  4602. minutes <= 1 && ['m'] ||
  4603. minutes < thresholds.m && ['mm', minutes] ||
  4604. hours <= 1 && ['h'] ||
  4605. hours < thresholds.h && ['hh', hours] ||
  4606. days <= 1 && ['d'] ||
  4607. days < thresholds.d && ['dd', days] ||
  4608. months <= 1 && ['M'] ||
  4609. months < thresholds.M && ['MM', months] ||
  4610. years <= 1 && ['y'] || ['yy', years];
  4611. a[2] = withoutSuffix;
  4612. a[3] = +posNegDuration > 0;
  4613. a[4] = locale;
  4614. return substituteTimeAgo.apply(null, a);
  4615. }
  4616. // This function allows you to set the rounding function for relative time strings
  4617. function getSetRelativeTimeRounding (roundingFunction) {
  4618. if (roundingFunction === undefined) {
  4619. return round;
  4620. }
  4621. if (typeof(roundingFunction) === 'function') {
  4622. round = roundingFunction;
  4623. return true;
  4624. }
  4625. return false;
  4626. }
  4627. // This function allows you to set a threshold for relative time strings
  4628. function getSetRelativeTimeThreshold (threshold, limit) {
  4629. if (thresholds[threshold] === undefined) {
  4630. return false;
  4631. }
  4632. if (limit === undefined) {
  4633. return thresholds[threshold];
  4634. }
  4635. thresholds[threshold] = limit;
  4636. if (threshold === 's') {
  4637. thresholds.ss = limit - 1;
  4638. }
  4639. return true;
  4640. }
  4641. function humanize (withSuffix) {
  4642. if (!this.isValid()) {
  4643. return this.localeData().invalidDate();
  4644. }
  4645. var locale = this.localeData();
  4646. var output = relativeTime$1(this, !withSuffix, locale);
  4647. if (withSuffix) {
  4648. output = locale.pastFuture(+this, output);
  4649. }
  4650. return locale.postformat(output);
  4651. }
  4652. var abs$1 = Math.abs;
  4653. function sign(x) {
  4654. return ((x > 0) - (x < 0)) || +x;
  4655. }
  4656. function toISOString$1() {
  4657. // for ISO strings we do not use the normal bubbling rules:
  4658. // * milliseconds bubble up until they become hours
  4659. // * days do not bubble at all
  4660. // * months bubble up until they become years
  4661. // This is because there is no context-free conversion between hours and days
  4662. // (think of clock changes)
  4663. // and also not between days and months (28-31 days per month)
  4664. if (!this.isValid()) {
  4665. return this.localeData().invalidDate();
  4666. }
  4667. var seconds = abs$1(this._milliseconds) / 1000;
  4668. var days = abs$1(this._days);
  4669. var months = abs$1(this._months);
  4670. var minutes, hours, years;
  4671. // 3600 seconds -> 60 minutes -> 1 hour
  4672. minutes = absFloor(seconds / 60);
  4673. hours = absFloor(minutes / 60);
  4674. seconds %= 60;
  4675. minutes %= 60;
  4676. // 12 months -> 1 year
  4677. years = absFloor(months / 12);
  4678. months %= 12;
  4679. // inspired by https://github.com/dordille/moment-isoduration/blob/master/moment.isoduration.js
  4680. var Y = years;
  4681. var M = months;
  4682. var D = days;
  4683. var h = hours;
  4684. var m = minutes;
  4685. var s = seconds ? seconds.toFixed(3).replace(/\.?0+$/, '') : '';
  4686. var total = this.asSeconds();
  4687. if (!total) {
  4688. // this is the same as C#'s (Noda) and python (isodate)...
  4689. // but not other JS (goog.date)
  4690. return 'P0D';
  4691. }
  4692. var totalSign = total < 0 ? '-' : '';
  4693. var ymSign = sign(this._months) !== sign(total) ? '-' : '';
  4694. var daysSign = sign(this._days) !== sign(total) ? '-' : '';
  4695. var hmsSign = sign(this._milliseconds) !== sign(total) ? '-' : '';
  4696. return totalSign + 'P' +
  4697. (Y ? ymSign + Y + 'Y' : '') +
  4698. (M ? ymSign + M + 'M' : '') +
  4699. (D ? daysSign + D + 'D' : '') +
  4700. ((h || m || s) ? 'T' : '') +
  4701. (h ? hmsSign + h + 'H' : '') +
  4702. (m ? hmsSign + m + 'M' : '') +
  4703. (s ? hmsSign + s + 'S' : '');
  4704. }
  4705. var proto$2 = Duration.prototype;
  4706. proto$2.isValid = isValid$1;
  4707. proto$2.abs = abs;
  4708. proto$2.add = add$1;
  4709. proto$2.subtract = subtract$1;
  4710. proto$2.as = as;
  4711. proto$2.asMilliseconds = asMilliseconds;
  4712. proto$2.asSeconds = asSeconds;
  4713. proto$2.asMinutes = asMinutes;
  4714. proto$2.asHours = asHours;
  4715. proto$2.asDays = asDays;
  4716. proto$2.asWeeks = asWeeks;
  4717. proto$2.asMonths = asMonths;
  4718. proto$2.asQuarters = asQuarters;
  4719. proto$2.asYears = asYears;
  4720. proto$2.valueOf = valueOf$1;
  4721. proto$2._bubble = bubble;
  4722. proto$2.clone = clone$1;
  4723. proto$2.get = get$2;
  4724. proto$2.milliseconds = milliseconds;
  4725. proto$2.seconds = seconds;
  4726. proto$2.minutes = minutes;
  4727. proto$2.hours = hours;
  4728. proto$2.days = days;
  4729. proto$2.weeks = weeks;
  4730. proto$2.months = months;
  4731. proto$2.years = years;
  4732. proto$2.humanize = humanize;
  4733. proto$2.toISOString = toISOString$1;
  4734. proto$2.toString = toISOString$1;
  4735. proto$2.toJSON = toISOString$1;
  4736. proto$2.locale = locale;
  4737. proto$2.localeData = localeData;
  4738. proto$2.toIsoString = deprecate('toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)', toISOString$1);
  4739. proto$2.lang = lang;
  4740. // Side effect imports
  4741. // FORMATTING
  4742. addFormatToken('X', 0, 0, 'unix');
  4743. addFormatToken('x', 0, 0, 'valueOf');
  4744. // PARSING
  4745. addRegexToken('x', matchSigned);
  4746. addRegexToken('X', matchTimestamp);
  4747. addParseToken('X', function (input, array, config) {
  4748. config._d = new Date(parseFloat(input, 10) * 1000);
  4749. });
  4750. addParseToken('x', function (input, array, config) {
  4751. config._d = new Date(toInt(input));
  4752. });
  4753. // Side effect imports
  4754. hooks.version = '2.24.0';
  4755. setHookCallback(createLocal);
  4756. hooks.fn = proto;
  4757. hooks.min = min;
  4758. hooks.max = max;
  4759. hooks.now = now;
  4760. hooks.utc = createUTC;
  4761. hooks.unix = createUnix;
  4762. hooks.months = listMonths;
  4763. hooks.isDate = isDate;
  4764. hooks.locale = getSetGlobalLocale;
  4765. hooks.invalid = createInvalid;
  4766. hooks.duration = createDuration;
  4767. hooks.isMoment = isMoment;
  4768. hooks.weekdays = listWeekdays;
  4769. hooks.parseZone = createInZone;
  4770. hooks.localeData = getLocale;
  4771. hooks.isDuration = isDuration;
  4772. hooks.monthsShort = listMonthsShort;
  4773. hooks.weekdaysMin = listWeekdaysMin;
  4774. hooks.defineLocale = defineLocale;
  4775. hooks.updateLocale = updateLocale;
  4776. hooks.locales = listLocales;
  4777. hooks.weekdaysShort = listWeekdaysShort;
  4778. hooks.normalizeUnits = normalizeUnits;
  4779. hooks.relativeTimeRounding = getSetRelativeTimeRounding;
  4780. hooks.relativeTimeThreshold = getSetRelativeTimeThreshold;
  4781. hooks.calendarFormat = getCalendarFormat;
  4782. hooks.prototype = proto;
  4783. // currently HTML5 input type only supports 24-hour formats
  4784. hooks.HTML5_FMT = {
  4785. DATETIME_LOCAL: 'YYYY-MM-DDTHH:mm', // <input type="datetime-local" />
  4786. DATETIME_LOCAL_SECONDS: 'YYYY-MM-DDTHH:mm:ss', // <input type="datetime-local" step="1" />
  4787. DATETIME_LOCAL_MS: 'YYYY-MM-DDTHH:mm:ss.SSS', // <input type="datetime-local" step="0.001" />
  4788. DATE: 'YYYY-MM-DD', // <input type="date" />
  4789. TIME: 'HH:mm', // <input type="time" />
  4790. TIME_SECONDS: 'HH:mm:ss', // <input type="time" step="1" />
  4791. TIME_MS: 'HH:mm:ss.SSS', // <input type="time" step="0.001" />
  4792. WEEK: 'GGGG-[W]WW', // <input type="week" />
  4793. MONTH: 'YYYY-MM' // <input type="month" />
  4794. };
  4795. return hooks;
  4796. })));
  4797. define('moment', ['moment/moment'], function (main) { return main; });
  4798. define('backend',['fast', 'template', 'moment'], function (Fast, Template, Moment) {
  4799. var Backend = {
  4800. api: {
  4801. sidebar: function (params) {
  4802. colorArr = ['red', 'green', 'yellow', 'blue', 'teal', 'orange', 'purple'];
  4803. $colorNums = colorArr.length;
  4804. badgeList = {};
  4805. $.each(params, function (k, v) {
  4806. $url = Fast.api.fixurl(k);
  4807. if ($.isArray(v)) {
  4808. $nums = typeof v[0] !== 'undefined' ? v[0] : 0;
  4809. $color = typeof v[1] !== 'undefined' ? v[1] : colorArr[(!isNaN($nums) ? $nums : $nums.length) % $colorNums];
  4810. $class = typeof v[2] !== 'undefined' ? v[2] : 'label';
  4811. } else {
  4812. $nums = v;
  4813. $color = colorArr[(!isNaN($nums) ? $nums : $nums.length) % $colorNums];
  4814. $class = 'label';
  4815. }
  4816. //必须nums大于0才显示
  4817. badgeList[$url] = $nums > 0 ? '<small class="' + $class + ' pull-right bg-' + $color + '">' + $nums + '</small>' : '';
  4818. });
  4819. $.each(badgeList, function (k, v) {
  4820. var anchor = top.window.$("li a[addtabs][url='" + k + "']");
  4821. if (anchor) {
  4822. top.window.$(".pull-right-container", anchor).html(v);
  4823. top.window.$(".nav-addtabs li a[node-id='" + anchor.attr("addtabs") + "'] .pull-right-container").html(v);
  4824. }
  4825. });
  4826. },
  4827. addtabs: function (url, title, icon) {
  4828. var dom = "a[url='{url}']"
  4829. var leftlink = top.window.$(dom.replace(/\{url\}/, url));
  4830. if (leftlink.size() > 0) {
  4831. leftlink.trigger("click");
  4832. } else {
  4833. url = Fast.api.fixurl(url);
  4834. leftlink = top.window.$(dom.replace(/\{url\}/, url));
  4835. if (leftlink.size() > 0) {
  4836. var event = leftlink.parent().hasClass("active") ? "dblclick" : "click";
  4837. leftlink.trigger(event);
  4838. } else {
  4839. var baseurl = url.substr(0, url.indexOf("?") > -1 ? url.indexOf("?") : url.length);
  4840. leftlink = top.window.$(dom.replace(/\{url\}/, baseurl));
  4841. //能找到相对地址
  4842. if (leftlink.size() > 0) {
  4843. icon = typeof icon !== 'undefined' ? icon : leftlink.find("i").attr("class");
  4844. title = typeof title !== 'undefined' ? title : leftlink.find("span:first").text();
  4845. leftlink.trigger("fa.event.toggleitem");
  4846. }
  4847. var navnode = top.window.$(".nav-tabs ul li a[node-url='" + url + "']");
  4848. if (navnode.size() > 0) {
  4849. navnode.trigger("click");
  4850. } else {
  4851. //追加新的tab
  4852. var id = Math.floor(new Date().valueOf() * Math.random());
  4853. icon = typeof icon !== 'undefined' ? icon : 'fa fa-circle-o';
  4854. title = typeof title !== 'undefined' ? title : '';
  4855. top.window.$("<a />").append('<i class="' + icon + '"></i> <span>' + title + '</span>').prop("href", url).attr({
  4856. url: url,
  4857. addtabs: id
  4858. }).addClass("hide").appendTo(top.window.document.body).trigger("click");
  4859. }
  4860. }
  4861. }
  4862. },
  4863. closetabs: function (url) {
  4864. if (typeof url === 'undefined') {
  4865. top.window.$("ul.nav-addtabs li.active .close-tab").trigger("click");
  4866. } else {
  4867. var dom = "a[url='{url}']"
  4868. var navlink = top.window.$(dom.replace(/\{url\}/, url));
  4869. if (navlink.size() === 0) {
  4870. url = Fast.api.fixurl(url);
  4871. navlink = top.window.$(dom.replace(/\{url\}/, url));
  4872. if (navlink.size() === 0) {
  4873. } else {
  4874. var baseurl = url.substr(0, url.indexOf("?") > -1 ? url.indexOf("?") : url.length);
  4875. navlink = top.window.$(dom.replace(/\{url\}/, baseurl));
  4876. //能找到相对地址
  4877. if (navlink.size() === 0) {
  4878. navlink = top.window.$(".nav-tabs ul li a[node-url='" + url + "']");
  4879. }
  4880. }
  4881. }
  4882. if (navlink.size() > 0 && navlink.attr('addtabs')) {
  4883. top.window.$("ul.nav-addtabs li#tab_" + navlink.attr('addtabs') + " .close-tab").trigger("click");
  4884. }
  4885. }
  4886. },
  4887. replaceids: function (elem, url) {
  4888. //如果有需要替换ids的
  4889. if (url.indexOf("{ids}") > -1) {
  4890. var ids = 0;
  4891. var tableId = $(elem).data("table-id");
  4892. if (tableId && $(tableId).size() > 0 && $(tableId).data("bootstrap.table")) {
  4893. var Table = require("table");
  4894. ids = Table.api.selectedids($(tableId)).join(",");
  4895. }
  4896. url = url.replace(/\{ids\}/g, ids);
  4897. }
  4898. return url;
  4899. },
  4900. refreshmenu: function () {
  4901. top.window.$(".sidebar-menu").trigger("refresh");
  4902. },
  4903. gettablecolumnbutton: function (options) {
  4904. if (typeof options.tableId !== 'undefined' && typeof options.fieldIndex !== 'undefined' && typeof options.buttonIndex !== 'undefined') {
  4905. var tableOptions = $("#" + options.tableId).bootstrapTable('getOptions');
  4906. if (tableOptions) {
  4907. var columnObj = null;
  4908. $.each(tableOptions.columns, function (i, columns) {
  4909. $.each(columns, function (j, column) {
  4910. if (typeof column.fieldIndex !== 'undefined' && column.fieldIndex === options.fieldIndex) {
  4911. columnObj = column;
  4912. return false;
  4913. }
  4914. });
  4915. if (columnObj) {
  4916. return false;
  4917. }
  4918. });
  4919. if (columnObj) {
  4920. return columnObj['buttons'][options.buttonIndex];
  4921. }
  4922. }
  4923. }
  4924. return null;
  4925. },
  4926. },
  4927. init: function () {
  4928. //公共代码
  4929. //添加ios-fix兼容iOS下的iframe
  4930. if (/iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream) {
  4931. $("html").addClass("ios-fix");
  4932. }
  4933. //配置Toastr的参数
  4934. Toastr.options.positionClass = Config.controllername === 'index' ? "toast-top-right-index" : "toast-top-right";
  4935. //点击包含.btn-dialog的元素时弹出dialog
  4936. $(document).on('click', '.btn-dialog,.dialogit', function (e) {
  4937. var that = this;
  4938. var options = $.extend({}, $(that).data() || {});
  4939. var url = Backend.api.replaceids(that, $(that).attr('href'));
  4940. var title = $(that).attr("title") || $(that).data("title") || $(that).data('original-title');
  4941. var button = Backend.api.gettablecolumnbutton(options);
  4942. if (button && typeof button.callback === 'function') {
  4943. options.callback = button.callback;
  4944. }
  4945. if (typeof options.confirm !== 'undefined') {
  4946. Layer.confirm(options.confirm, function (index) {
  4947. Backend.api.open(url, title, options);
  4948. Layer.close(index);
  4949. });
  4950. } else {
  4951. Backend.api.open(url, title, options);
  4952. }
  4953. return false;
  4954. });
  4955. //点击包含.btn-addtabs的元素时新增选项卡
  4956. $(document).on('click', '.btn-addtabs,.addtabsit', function (e) {
  4957. var that = this;
  4958. var options = $.extend({}, $(that).data() || {});
  4959. var url = Backend.api.replaceids(that, $(that).attr('href'));
  4960. var title = $(that).attr("title") || $(that).data("title") || $(that).data('original-title');
  4961. if (typeof options.confirm !== 'undefined') {
  4962. Layer.confirm(options.confirm, function (index) {
  4963. Backend.api.addtabs(url, title);
  4964. Layer.close(index);
  4965. });
  4966. } else {
  4967. Backend.api.addtabs(url, title);
  4968. }
  4969. return false;
  4970. });
  4971. //点击包含.btn-ajax的元素时发送Ajax请求
  4972. $(document).on('click', '.btn-ajax,.ajaxit', function (e) {
  4973. var that = this;
  4974. var options = $.extend({}, $(that).data() || {});
  4975. if (typeof options.url === 'undefined' && $(that).attr("href")) {
  4976. options.url = $(that).attr("href");
  4977. }
  4978. options.url = Backend.api.replaceids(this, options.url);
  4979. var success = typeof options.success === 'function' ? options.success : null;
  4980. var error = typeof options.error === 'function' ? options.error : null;
  4981. delete options.success;
  4982. delete options.error;
  4983. var button = Backend.api.gettablecolumnbutton(options);
  4984. if (button) {
  4985. if (typeof button.success === 'function') {
  4986. success = button.success;
  4987. }
  4988. if (typeof button.error === 'function') {
  4989. error = button.error;
  4990. }
  4991. }
  4992. //如果未设备成功的回调,设定了自动刷新的情况下自动进行刷新
  4993. if (!success && typeof options.tableId !== 'undefined' && typeof options.refresh !== 'undefined' && options.refresh) {
  4994. success = function () {
  4995. $("#" + options.tableId).bootstrapTable('refresh');
  4996. }
  4997. }
  4998. if (typeof options.confirm !== 'undefined') {
  4999. Layer.confirm(options.confirm, function (index) {
  5000. Backend.api.ajax(options, success, error);
  5001. Layer.close(index);
  5002. });
  5003. } else {
  5004. Backend.api.ajax(options, success, error);
  5005. }
  5006. return false;
  5007. });
  5008. $(document).on('click', '.btn-click,.clickit', function (e) {
  5009. var that = this;
  5010. var options = $.extend({}, $(that).data() || {});
  5011. var row = {};
  5012. if (typeof options.tableId !== 'undefined') {
  5013. var index = parseInt(options.rowIndex);
  5014. var data = $("#" + options.tableId).bootstrapTable('getData');
  5015. row = typeof data[index] !== 'undefined' ? data[index] : {};
  5016. }
  5017. var button = Backend.api.gettablecolumnbutton(options);
  5018. var click = typeof button.click === 'function' ? button.click : $.noop;
  5019. if (typeof options.confirm !== 'undefined') {
  5020. Layer.confirm(options.confirm, function (index) {
  5021. click.apply(that, [options, row, button]);
  5022. Layer.close(index);
  5023. });
  5024. } else {
  5025. click.apply(that, [options, row, button]);
  5026. }
  5027. return false;
  5028. });
  5029. //修复含有fixed-footer类的body边距
  5030. if ($(".fixed-footer").size() > 0) {
  5031. $(document.body).css("padding-bottom", $(".fixed-footer").outerHeight());
  5032. }
  5033. //修复不在iframe时layer-footer隐藏的问题
  5034. if ($(".layer-footer").size() > 0 && self === top) {
  5035. $(".layer-footer").show();
  5036. }
  5037. //tooltip和popover
  5038. if (!('ontouchstart' in document.documentElement)) {
  5039. $('body').tooltip({selector: '[data-toggle="tooltip"]'});
  5040. }
  5041. $('body').popover({selector: '[data-toggle="popover"]'});
  5042. }
  5043. };
  5044. Backend.api = $.extend(Fast.api, Backend.api);
  5045. //将Template渲染至全局,以便于在子框架中调用
  5046. window.Template = Template;
  5047. //将Moment渲染至全局,以便于在子框架中调用
  5048. window.Moment = Moment;
  5049. //将Backend渲染至全局,以便于在子框架中调用
  5050. window.Backend = Backend;
  5051. Backend.init();
  5052. return Backend;
  5053. });
  5054. define('backend-init',['backend'], function (Backend) {
  5055. });
  5056. //! moment.js locale configuration
  5057. ;(function (global, factory) {
  5058. typeof exports === 'object' && typeof module !== 'undefined'
  5059. && typeof require === 'function' ? factory(require('../moment')) :
  5060. typeof define === 'function' && define.amd ? define('moment/locale/zh-cn',['../moment'], factory) :
  5061. factory(global.moment)
  5062. }(this, (function (moment) { 'use strict';
  5063. var zhCn = moment.defineLocale('zh-cn', {
  5064. months : '一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月'.split('_'),
  5065. monthsShort : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),
  5066. weekdays : '星期日_星期一_星期二_星期三_星期四_星期五_星期六'.split('_'),
  5067. weekdaysShort : '周日_周一_周二_周三_周四_周五_周六'.split('_'),
  5068. weekdaysMin : '日_一_二_三_四_五_六'.split('_'),
  5069. longDateFormat : {
  5070. LT : 'HH:mm',
  5071. LTS : 'HH:mm:ss',
  5072. L : 'YYYY/MM/DD',
  5073. LL : 'YYYY年M月D日',
  5074. LLL : 'YYYY年M月D日Ah点mm分',
  5075. LLLL : 'YYYY年M月D日ddddAh点mm分',
  5076. l : 'YYYY/M/D',
  5077. ll : 'YYYY年M月D日',
  5078. lll : 'YYYY年M月D日 HH:mm',
  5079. llll : 'YYYY年M月D日dddd HH:mm'
  5080. },
  5081. meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,
  5082. meridiemHour: function (hour, meridiem) {
  5083. if (hour === 12) {
  5084. hour = 0;
  5085. }
  5086. if (meridiem === '凌晨' || meridiem === '早上' ||
  5087. meridiem === '上午') {
  5088. return hour;
  5089. } else if (meridiem === '下午' || meridiem === '晚上') {
  5090. return hour + 12;
  5091. } else {
  5092. // '中午'
  5093. return hour >= 11 ? hour : hour + 12;
  5094. }
  5095. },
  5096. meridiem : function (hour, minute, isLower) {
  5097. var hm = hour * 100 + minute;
  5098. if (hm < 600) {
  5099. return '凌晨';
  5100. } else if (hm < 900) {
  5101. return '早上';
  5102. } else if (hm < 1130) {
  5103. return '上午';
  5104. } else if (hm < 1230) {
  5105. return '中午';
  5106. } else if (hm < 1800) {
  5107. return '下午';
  5108. } else {
  5109. return '晚上';
  5110. }
  5111. },
  5112. calendar : {
  5113. sameDay : '[今天]LT',
  5114. nextDay : '[明天]LT',
  5115. nextWeek : '[下]ddddLT',
  5116. lastDay : '[昨天]LT',
  5117. lastWeek : '[上]ddddLT',
  5118. sameElse : 'L'
  5119. },
  5120. dayOfMonthOrdinalParse: /\d{1,2}(日|月|周)/,
  5121. ordinal : function (number, period) {
  5122. switch (period) {
  5123. case 'd':
  5124. case 'D':
  5125. case 'DDD':
  5126. return number + '日';
  5127. case 'M':
  5128. return number + '月';
  5129. case 'w':
  5130. case 'W':
  5131. return number + '周';
  5132. default:
  5133. return number;
  5134. }
  5135. },
  5136. relativeTime : {
  5137. future : '%s内',
  5138. past : '%s前',
  5139. s : '几秒',
  5140. ss : '%d 秒',
  5141. m : '1 分钟',
  5142. mm : '%d 分钟',
  5143. h : '1 小时',
  5144. hh : '%d 小时',
  5145. d : '1 天',
  5146. dd : '%d 天',
  5147. M : '1 个月',
  5148. MM : '%d 个月',
  5149. y : '1 年',
  5150. yy : '%d 年'
  5151. },
  5152. week : {
  5153. // GB/T 7408-1994《数据元和交换格式·信息交换·日期和时间表示法》与ISO 8601:1988等效
  5154. dow : 1, // Monday is the first day of the week.
  5155. doy : 4 // The week that contains Jan 4th is the first week of the year.
  5156. }
  5157. });
  5158. return zhCn;
  5159. })));
  5160. /*
  5161. * bootstrap-table - v1.11.1 - 2017-02-22
  5162. * https://github.com/wenzhixin/bootstrap-table
  5163. * Copyright (c) 2017 zhixin wen
  5164. * Licensed MIT License
  5165. */
  5166. !function(a){"use strict";var b=null,c=function(a){var b=arguments,c=!0,d=1;return a=a.replace(/%s/g,function(){var a=b[d++];return"undefined"==typeof a?(c=!1,""):a}),c?a:""},d=function(b,c,d,e){var f="";return a.each(b,function(a,b){return b[c]===e?(f=b[d],!1):!0}),f},e=function(b,c){var d=-1;return a.each(b,function(a,b){return b.field===c?(d=a,!1):!0}),d},f=function(b){var c,d,e,f=0,g=[];for(c=0;c<b[0].length;c++)f+=b[0][c].colspan||1;for(c=0;c<b.length;c++)for(g[c]=[],d=0;f>d;d++)g[c][d]=!1;for(c=0;c<b.length;c++)for(d=0;d<b[c].length;d++){var h=b[c][d],i=h.rowspan||1,j=h.colspan||1,k=a.inArray(!1,g[c]);for(1===j&&(h.fieldIndex=k,"undefined"==typeof h.field&&(h.field=k)),e=0;i>e;e++)g[c+e][k]=!0;for(e=0;j>e;e++)g[c][k+e]=!0}},g=function(){if(null===b){var c,d,e=a("<p/>").addClass("fixed-table-scroll-inner"),f=a("<div/>").addClass("fixed-table-scroll-outer");f.append(e),a("body").append(f),c=e[0].offsetWidth,f.css("overflow","scroll"),d=e[0].offsetWidth,c===d&&(d=f[0].clientWidth),f.remove(),b=c-d}return b},h=function(b,d,e,f){var g=d;if("string"==typeof d){var h=d.split(".");h.length>1?(g=window,a.each(h,function(a,b){g=g[b]})):g=window[d]}return"object"==typeof g?g:"function"==typeof g?g.apply(b,e||[]):!g&&"string"==typeof d&&c.apply(this,[d].concat(e))?c.apply(this,[d].concat(e)):f},i=function(b,c,d){var e=Object.getOwnPropertyNames(b),f=Object.getOwnPropertyNames(c),g="";if(d&&e.length!==f.length)return!1;for(var h=0;h<e.length;h++)if(g=e[h],a.inArray(g,f)>-1&&b[g]!==c[g])return!1;return!0},j=function(a){return"string"==typeof a?a.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;").replace(/'/g,"&#039;").replace(/`/g,"&#x60;"):a},k=function(a){for(var b in a){var c=b.split(/(?=[A-Z])/).join("-").toLowerCase();c!==b&&(a[c]=a[b],delete a[b])}return a},l=function(a,b,c){var d=a;if("string"!=typeof b||a.hasOwnProperty(b))return c?j(a[b]):a[b];var e=b.split(".");for(var f in e)e.hasOwnProperty(f)&&(d=d&&d[e[f]]);return c?j(d):d},m=function(){return!!(navigator.userAgent.indexOf("MSIE ")>0||navigator.userAgent.match(/Trident.*rv\:11\./))},n=function(){Object.keys||(Object.keys=function(){var a=Object.prototype.hasOwnProperty,b=!{toString:null}.propertyIsEnumerable("toString"),c=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],d=c.length;return function(e){if("object"!=typeof e&&("function"!=typeof e||null===e))throw new TypeError("Object.keys called on non-object");var f,g,h=[];for(f in e)a.call(e,f)&&h.push(f);if(b)for(g=0;d>g;g++)a.call(e,c[g])&&h.push(c[g]);return h}}())},o=function(b,c){this.options=c,this.$el=a(b),this.$el_=this.$el.clone(),this.timeoutId_=0,this.timeoutFooter_=0,this.init()};o.DEFAULTS={classes:"table table-hover",sortClass:void 0,locale:void 0,height:void 0,undefinedText:"-",sortName:void 0,sortOrder:"asc",sortStable:!1,striped:!1,columns:[[]],data:[],totalField:"total",dataField:"rows",method:"get",url:void 0,ajax:void 0,cache:!0,contentType:"application/json",dataType:"json",ajaxOptions:{},queryParams:function(a){return a},queryParamsType:"limit",responseHandler:function(a){return a},pagination:!1,onlyInfoPagination:!1,paginationLoop:!0,sidePagination:"client",totalRows:0,pageNumber:1,pageSize:10,pageList:[10,25,50,100],paginationHAlign:"right",paginationVAlign:"bottom",paginationDetailHAlign:"left",paginationPreText:"&lsaquo;",paginationNextText:"&rsaquo;",search:!1,searchOnEnterKey:!1,strictSearch:!1,searchAlign:"right",selectItemName:"btSelectItem",showHeader:!0,showFooter:!1,showColumns:!1,showPaginationSwitch:!1,showRefresh:!1,showToggle:!1,buttonsAlign:"right",smartDisplay:!0,escape:!1,minimumCountColumns:1,idField:void 0,uniqueId:void 0,cardView:!1,detailView:!1,detailFormatter:function(){return""},trimOnSearch:!0,clickToSelect:!1,singleSelect:!1,toolbar:void 0,toolbarAlign:"left",checkboxHeader:!0,sortable:!0,silentSort:!0,maintainSelected:!1,searchTimeOut:500,searchText:"",iconSize:void 0,buttonsClass:"default",iconsPrefix:"glyphicon",icons:{paginationSwitchDown:"glyphicon-collapse-down icon-chevron-down",paginationSwitchUp:"glyphicon-collapse-up icon-chevron-up",refresh:"glyphicon-refresh icon-refresh",toggle:"glyphicon-list-alt icon-list-alt",columns:"glyphicon-th icon-th",detailOpen:"glyphicon-plus icon-plus",detailClose:"glyphicon-minus icon-minus"},customSearch:a.noop,customSort:a.noop,rowStyle:function(){return{}},rowAttributes:function(){return{}},footerStyle:function(){return{}},onAll:function(){return!1},onClickCell:function(){return!1},onDblClickCell:function(){return!1},onClickRow:function(){return!1},onDblClickRow:function(){return!1},onSort:function(){return!1},onCheck:function(){return!1},onUncheck:function(){return!1},onCheckAll:function(){return!1},onUncheckAll:function(){return!1},onCheckSome:function(){return!1},onUncheckSome:function(){return!1},onLoadSuccess:function(){return!1},onLoadError:function(){return!1},onColumnSwitch:function(){return!1},onPageChange:function(){return!1},onSearch:function(){return!1},onToggle:function(){return!1},onPreBody:function(){return!1},onPostBody:function(){return!1},onPostHeader:function(){return!1},onExpandRow:function(){return!1},onCollapseRow:function(){return!1},onRefreshOptions:function(){return!1},onRefresh:function(){return!1},onResetView:function(){return!1}},o.LOCALES={},o.LOCALES["en-US"]=o.LOCALES.en={formatLoadingMessage:function(){return"Loading, please wait..."},formatRecordsPerPage:function(a){return c("%s rows per page",a)},formatShowingRows:function(a,b,d){return c("Showing %s to %s of %s rows",a,b,d)},formatDetailPagination:function(a){return c("Showing %s rows",a)},formatSearch:function(){return"Search"},formatNoMatches:function(){return"No matching records found"},formatPaginationSwitch:function(){return"Hide/Show pagination"},formatRefresh:function(){return"Refresh"},formatToggle:function(){return"Toggle"},formatColumns:function(){return"Columns"},formatAllRows:function(){return"All"}},a.extend(o.DEFAULTS,o.LOCALES["en-US"]),o.COLUMN_DEFAULTS={radio:!1,checkbox:!1,checkboxEnabled:!0,field:void 0,title:void 0,titleTooltip:void 0,"class":void 0,align:void 0,halign:void 0,falign:void 0,valign:void 0,width:void 0,sortable:!1,order:"asc",visible:!0,switchable:!0,clickToSelect:!0,formatter:void 0,footerFormatter:void 0,events:void 0,sorter:void 0,sortName:void 0,cellStyle:void 0,searchable:!0,searchFormatter:!0,cardVisible:!0,escape:!1},o.EVENTS={"all.bs.table":"onAll","click-cell.bs.table":"onClickCell","dbl-click-cell.bs.table":"onDblClickCell","click-row.bs.table":"onClickRow","dbl-click-row.bs.table":"onDblClickRow","sort.bs.table":"onSort","check.bs.table":"onCheck","uncheck.bs.table":"onUncheck","check-all.bs.table":"onCheckAll","uncheck-all.bs.table":"onUncheckAll","check-some.bs.table":"onCheckSome","uncheck-some.bs.table":"onUncheckSome","load-success.bs.table":"onLoadSuccess","load-error.bs.table":"onLoadError","column-switch.bs.table":"onColumnSwitch","page-change.bs.table":"onPageChange","search.bs.table":"onSearch","toggle.bs.table":"onToggle","pre-body.bs.table":"onPreBody","post-body.bs.table":"onPostBody","post-header.bs.table":"onPostHeader","expand-row.bs.table":"onExpandRow","collapse-row.bs.table":"onCollapseRow","refresh-options.bs.table":"onRefreshOptions","reset-view.bs.table":"onResetView","refresh.bs.table":"onRefresh"},o.prototype.init=function(){this.initLocale(),this.initContainer(),this.initTable(),this.initHeader(),this.initData(),this.initHiddenRows(),this.initFooter(),this.initToolbar(),this.initPagination(),this.initBody(),this.initSearchText(),this.initServer()},o.prototype.initLocale=function(){if(this.options.locale){var b=this.options.locale.split(/-|_/);b[0].toLowerCase(),b[1]&&b[1].toUpperCase(),a.fn.bootstrapTable.locales[this.options.locale]?a.extend(this.options,a.fn.bootstrapTable.locales[this.options.locale]):a.fn.bootstrapTable.locales[b.join("-")]?a.extend(this.options,a.fn.bootstrapTable.locales[b.join("-")]):a.fn.bootstrapTable.locales[b[0]]&&a.extend(this.options,a.fn.bootstrapTable.locales[b[0]])}},o.prototype.initContainer=function(){this.$container=a(['<div class="bootstrap-table">','<div class="fixed-table-toolbar"></div>',"top"===this.options.paginationVAlign||"both"===this.options.paginationVAlign?'<div class="fixed-table-pagination" style="clear: both;"></div>':"",'<div class="fixed-table-container">','<div class="fixed-table-header"><table></table></div>','<div class="fixed-table-body">','<div class="fixed-table-loading">',this.options.formatLoadingMessage(),"</div>","</div>",'<div class="fixed-table-footer"><table><tr></tr></table></div>',"bottom"===this.options.paginationVAlign||"both"===this.options.paginationVAlign?'<div class="fixed-table-pagination"></div>':"","</div>","</div>"].join("")),this.$container.insertAfter(this.$el),this.$tableContainer=this.$container.find(".fixed-table-container"),this.$tableHeader=this.$container.find(".fixed-table-header"),this.$tableBody=this.$container.find(".fixed-table-body"),this.$tableLoading=this.$container.find(".fixed-table-loading"),this.$tableFooter=this.$container.find(".fixed-table-footer"),this.$toolbar=this.$container.find(".fixed-table-toolbar"),this.$pagination=this.$container.find(".fixed-table-pagination"),this.$tableBody.append(this.$el),this.$container.after('<div class="clearfix"></div>'),this.$el.addClass(this.options.classes),this.options.striped&&this.$el.addClass("table-striped"),-1!==a.inArray("table-no-bordered",this.options.classes.split(" "))&&this.$tableContainer.addClass("table-no-bordered")},o.prototype.initTable=function(){var b=this,c=[],d=[];if(this.$header=this.$el.find(">thead"),this.$header.length||(this.$header=a("<thead></thead>").appendTo(this.$el)),this.$header.find("tr").each(function(){var b=[];a(this).find("th").each(function(){"undefined"!=typeof a(this).data("field")&&a(this).data("field",a(this).data("field")+""),b.push(a.extend({},{title:a(this).html(),"class":a(this).attr("class"),titleTooltip:a(this).attr("title"),rowspan:a(this).attr("rowspan")?+a(this).attr("rowspan"):void 0,colspan:a(this).attr("colspan")?+a(this).attr("colspan"):void 0},a(this).data()))}),c.push(b)}),a.isArray(this.options.columns[0])||(this.options.columns=[this.options.columns]),this.options.columns=a.extend(!0,[],c,this.options.columns),this.columns=[],f(this.options.columns),a.each(this.options.columns,function(c,d){a.each(d,function(d,e){e=a.extend({},o.COLUMN_DEFAULTS,e),"undefined"!=typeof e.fieldIndex&&(b.columns[e.fieldIndex]=e),b.options.columns[c][d]=e})}),!this.options.data.length){var e=[];this.$el.find(">tbody>tr").each(function(c){var f={};f._id=a(this).attr("id"),f._class=a(this).attr("class"),f._data=k(a(this).data()),a(this).find(">td").each(function(d){for(var g,h,i=a(this),j=+i.attr("colspan")||1,l=+i.attr("rowspan")||1;e[c]&&e[c][d];d++);for(g=d;d+j>g;g++)for(h=c;c+l>h;h++)e[h]||(e[h]=[]),e[h][g]=!0;var m=b.columns[d].field;f[m]=a(this).html(),f["_"+m+"_id"]=a(this).attr("id"),f["_"+m+"_class"]=a(this).attr("class"),f["_"+m+"_rowspan"]=a(this).attr("rowspan"),f["_"+m+"_colspan"]=a(this).attr("colspan"),f["_"+m+"_title"]=a(this).attr("title"),f["_"+m+"_data"]=k(a(this).data())}),d.push(f)}),this.options.data=d,d.length&&(this.fromHtml=!0)}},o.prototype.initHeader=function(){var b=this,d={},e=[];this.header={fields:[],styles:[],classes:[],formatters:[],events:[],sorters:[],sortNames:[],cellStyles:[],searchables:[]},a.each(this.options.columns,function(f,g){e.push("<tr>"),0===f&&!b.options.cardView&&b.options.detailView&&e.push(c('<th class="detail" rowspan="%s"><div class="fht-cell"></div></th>',b.options.columns.length)),a.each(g,function(a,f){var g="",h="",i="",k="",l=c(' class="%s"',f["class"]),m=(b.options.sortOrder||f.order,"px"),n=f.width;if(void 0===f.width||b.options.cardView||"string"==typeof f.width&&-1!==f.width.indexOf("%")&&(m="%"),f.width&&"string"==typeof f.width&&(n=f.width.replace("%","").replace("px","")),h=c("text-align: %s; ",f.halign?f.halign:f.align),i=c("text-align: %s; ",f.align),k=c("vertical-align: %s; ",f.valign),k+=c("width: %s; ",!f.checkbox&&!f.radio||n?n?n+m:void 0:"36px"),"undefined"!=typeof f.fieldIndex){if(b.header.fields[f.fieldIndex]=f.field,b.header.styles[f.fieldIndex]=i+k,b.header.classes[f.fieldIndex]=l,b.header.formatters[f.fieldIndex]=f.formatter,b.header.events[f.fieldIndex]=f.events,b.header.sorters[f.fieldIndex]=f.sorter,b.header.sortNames[f.fieldIndex]=f.sortName,b.header.cellStyles[f.fieldIndex]=f.cellStyle,b.header.searchables[f.fieldIndex]=f.searchable,!f.visible)return;if(b.options.cardView&&!f.cardVisible)return;d[f.field]=f}e.push("<th"+c(' title="%s"',f.titleTooltip),f.checkbox||f.radio?c(' class="bs-checkbox %s"',f["class"]||""):l,c(' style="%s"',h+k),c(' rowspan="%s"',f.rowspan),c(' colspan="%s"',f.colspan),c(' data-field="%s"',f.field),">"),e.push(c('<div class="th-inner %s">',b.options.sortable&&f.sortable?"sortable both":"")),g=b.options.escape?j(f.title):f.title,f.checkbox&&(!b.options.singleSelect&&b.options.checkboxHeader&&(g='<input name="btSelectAll" type="checkbox" />'),b.header.stateField=f.field),f.radio&&(g="",b.header.stateField=f.field,b.options.singleSelect=!0),e.push(g),e.push("</div>"),e.push('<div class="fht-cell"></div>'),e.push("</div>"),e.push("</th>")}),e.push("</tr>")}),this.$header.html(e.join("")),this.$header.find("th[data-field]").each(function(){a(this).data(d[a(this).data("field")])}),this.$container.off("click",".th-inner").on("click",".th-inner",function(c){var d=a(this);return b.options.detailView&&d.closest(".bootstrap-table")[0]!==b.$container[0]?!1:void(b.options.sortable&&d.parent().data().sortable&&b.onSort(c))}),this.$header.children().children().off("keypress").on("keypress",function(c){if(b.options.sortable&&a(this).data().sortable){var d=c.keyCode||c.which;13==d&&b.onSort(c)}}),a(window).off("resize.bootstrap-table"),!this.options.showHeader||this.options.cardView?(this.$header.hide(),this.$tableHeader.hide(),this.$tableLoading.css("top",0)):(this.$header.show(),this.$tableHeader.show(),this.$tableLoading.css("top",this.$header.outerHeight()+1),this.getCaret(),a(window).on("resize.bootstrap-table",a.proxy(this.resetWidth,this))),this.$selectAll=this.$header.find('[name="btSelectAll"]'),this.$selectAll.off("click").on("click",function(){var c=a(this).prop("checked");b[c?"checkAll":"uncheckAll"](),b.updateSelected()})},o.prototype.initFooter=function(){!this.options.showFooter||this.options.cardView?this.$tableFooter.hide():this.$tableFooter.show()},o.prototype.initData=function(a,b){this.data="append"===b?this.data.concat(a):"prepend"===b?[].concat(a).concat(this.data):a||this.options.data,this.options.data="append"===b?this.options.data.concat(a):"prepend"===b?[].concat(a).concat(this.options.data):this.data,"server"!==this.options.sidePagination&&this.initSort()},o.prototype.initSort=function(){var b=this,d=this.options.sortName,e="desc"===this.options.sortOrder?-1:1,f=a.inArray(this.options.sortName,this.header.fields),g=0;return this.options.customSort!==a.noop?void this.options.customSort.apply(this,[this.options.sortName,this.options.sortOrder]):void(-1!==f&&(this.options.sortStable&&a.each(this.data,function(a,b){b.hasOwnProperty("_position")||(b._position=a)}),this.data.sort(function(c,g){b.header.sortNames[f]&&(d=b.header.sortNames[f]);var i=l(c,d,b.options.escape),j=l(g,d,b.options.escape),k=h(b.header,b.header.sorters[f],[i,j]);return void 0!==k?e*k:((void 0===i||null===i)&&(i=""),(void 0===j||null===j)&&(j=""),b.options.sortStable&&i===j&&(i=c._position,j=g._position),a.isNumeric(i)&&a.isNumeric(j)?(i=parseFloat(i),j=parseFloat(j),j>i?-1*e:e):i===j?0:("string"!=typeof i&&(i=i.toString()),-1===i.localeCompare(j)?-1*e:e))}),void 0!==this.options.sortClass&&(clearTimeout(g),g=setTimeout(function(){b.$el.removeClass(b.options.sortClass);var a=b.$header.find(c('[data-field="%s"]',b.options.sortName).index()+1);b.$el.find(c("tr td:nth-child(%s)",a)).addClass(b.options.sortClass)},250))))},o.prototype.onSort=function(b){var c="keypress"===b.type?a(b.currentTarget):a(b.currentTarget).parent(),d=this.$header.find("th").eq(c.index());return this.$header.add(this.$header_).find("span.order").remove(),this.options.sortName===c.data("field")?this.options.sortOrder="asc"===this.options.sortOrder?"desc":"asc":(this.options.sortName=c.data("field"),this.options.sortOrder="asc"===c.data("order")?"desc":"asc"),this.trigger("sort",this.options.sortName,this.options.sortOrder),c.add(d).data("order",this.options.sortOrder),this.getCaret(),"server"===this.options.sidePagination?void this.initServer(this.options.silentSort):(this.initSort(),void this.initBody())},o.prototype.initToolbar=function(){var b,d,e=this,f=[],g=0,i=0;this.$toolbar.find(".bs-bars").children().length&&a("body").append(a(this.options.toolbar)),this.$toolbar.html(""),("string"==typeof this.options.toolbar||"object"==typeof this.options.toolbar)&&a(c('<div class="bs-bars pull-%s"></div>',this.options.toolbarAlign)).appendTo(this.$toolbar).append(a(this.options.toolbar)),f=[c('<div class="columns columns-%s btn-group pull-%s">',this.options.buttonsAlign,this.options.buttonsAlign)],"string"==typeof this.options.icons&&(this.options.icons=h(null,this.options.icons)),this.options.showPaginationSwitch&&f.push(c('<button class="btn'+c(" btn-%s",this.options.buttonsClass)+c(" btn-%s",this.options.iconSize)+'" type="button" name="paginationSwitch" aria-label="pagination Switch" title="%s">',this.options.formatPaginationSwitch()),c('<i class="%s %s"></i>',this.options.iconsPrefix,this.options.icons.paginationSwitchDown),"</button>"),this.options.showRefresh&&f.push(c('<button class="btn'+c(" btn-%s",this.options.buttonsClass)+c(" btn-%s",this.options.iconSize)+'" type="button" name="refresh" aria-label="refresh" title="%s">',this.options.formatRefresh()),c('<i class="%s %s"></i>',this.options.iconsPrefix,this.options.icons.refresh),"</button>"),this.options.showToggle&&f.push(c('<button class="btn'+c(" btn-%s",this.options.buttonsClass)+c(" btn-%s",this.options.iconSize)+'" type="button" name="toggle" aria-label="toggle" title="%s">',this.options.formatToggle()),c('<i class="%s %s"></i>',this.options.iconsPrefix,this.options.icons.toggle),"</button>"),this.options.showColumns&&(f.push(c('<div class="keep-open btn-group" title="%s">',this.options.formatColumns()),'<button type="button" aria-label="columns" class="btn'+c(" btn-%s",this.options.buttonsClass)+c(" btn-%s",this.options.iconSize)+' dropdown-toggle" data-toggle="dropdown">',c('<i class="%s %s"></i>',this.options.iconsPrefix,this.options.icons.columns),' <span class="caret"></span>',"</button>",'<ul class="dropdown-menu" role="menu">'),a.each(this.columns,function(a,b){if(!(b.radio||b.checkbox||e.options.cardView&&!b.cardVisible)){var d=b.visible?' checked="checked"':"";b.switchable&&(f.push(c('<li role="menuitem"><label><input type="checkbox" data-field="%s" value="%s"%s> %s</label></li>',b.field,a,d,b.title)),i++)}}),f.push("</ul>","</div>")),f.push("</div>"),(this.showToolbar||f.length>2)&&this.$toolbar.append(f.join("")),this.options.showPaginationSwitch&&this.$toolbar.find('button[name="paginationSwitch"]').off("click").on("click",a.proxy(this.togglePagination,this)),this.options.showRefresh&&this.$toolbar.find('button[name="refresh"]').off("click").on("click",a.proxy(this.refresh,this)),this.options.showToggle&&this.$toolbar.find('button[name="toggle"]').off("click").on("click",function(){e.toggleView()}),this.options.showColumns&&(b=this.$toolbar.find(".keep-open"),i<=this.options.minimumCountColumns&&b.find("input").prop("disabled",!0),b.find("li").off("click").on("click",function(a){a.stopImmediatePropagation()}),b.find("input").off("click").on("click",function(){var b=a(this);e.toggleColumn(a(this).val(),b.prop("checked"),!1),e.trigger("column-switch",a(this).data("field"),b.prop("checked"))})),this.options.search&&(f=[],f.push('<div class="pull-'+this.options.searchAlign+' search">',c('<input class="form-control'+c(" input-%s",this.options.iconSize)+'" type="text" placeholder="%s">',this.options.formatSearch()),"</div>"),this.$toolbar.append(f.join("")),d=this.$toolbar.find(".search input"),d.off("keyup drop blur").on("keyup drop blur",function(b){e.options.searchOnEnterKey&&13!==b.keyCode||a.inArray(b.keyCode,[37,38,39,40])>-1||(clearTimeout(g),g=setTimeout(function(){e.onSearch(b)},e.options.searchTimeOut))}),m()&&d.off("mouseup").on("mouseup",function(a){clearTimeout(g),g=setTimeout(function(){e.onSearch(a)},e.options.searchTimeOut)}))},o.prototype.onSearch=function(b){var c=a.trim(a(b.currentTarget).val());this.options.trimOnSearch&&a(b.currentTarget).val()!==c&&a(b.currentTarget).val(c),c!==this.searchText&&(this.searchText=c,this.options.searchText=c,this.options.pageNumber=1,this.initSearch(),this.updatePagination(),this.trigger("search",c))},o.prototype.initSearch=function(){var b=this;if("server"!==this.options.sidePagination){if(this.options.customSearch!==a.noop)return void this.options.customSearch.apply(this,[this.searchText]);var c=this.searchText&&(this.options.escape?j(this.searchText):this.searchText).toLowerCase(),d=a.isEmptyObject(this.filterColumns)?null:this.filterColumns;this.data=d?a.grep(this.options.data,function(b){for(var c in d)if(a.isArray(d[c])&&-1===a.inArray(b[c],d[c])||!a.isArray(d[c])&&b[c]!==d[c])return!1;return!0}):this.options.data,this.data=c?a.grep(this.data,function(d,f){for(var g=0;g<b.header.fields.length;g++)if(b.header.searchables[g]){var i,j=a.isNumeric(b.header.fields[g])?parseInt(b.header.fields[g],10):b.header.fields[g],k=b.columns[e(b.columns,j)];if("string"==typeof j){i=d;for(var l=j.split("."),m=0;m<l.length;m++)i=i[l[m]];k&&k.searchFormatter&&(i=h(k,b.header.formatters[g],[i,d,f],i))}else i=d[j];if("string"==typeof i||"number"==typeof i)if(b.options.strictSearch){if((i+"").toLowerCase()===c)return!0}else if(-1!==(i+"").toLowerCase().indexOf(c))return!0}return!1}):this.data}},o.prototype.initPagination=function(){if(!this.options.pagination)return void this.$pagination.hide();this.$pagination.show();var b,d,e,f,g,h,i,j,k,l=this,m=[],n=!1,o=this.getData(),p=this.options.pageList;if("server"!==this.options.sidePagination&&(this.options.totalRows=o.length),this.totalPages=0,this.options.totalRows){if(this.options.pageSize===this.options.formatAllRows())this.options.pageSize=this.options.totalRows,n=!0;else if(this.options.pageSize===this.options.totalRows){var q="string"==typeof this.options.pageList?this.options.pageList.replace("[","").replace("]","").replace(/ /g,"").toLowerCase().split(","):this.options.pageList;a.inArray(this.options.formatAllRows().toLowerCase(),q)>-1&&(n=!0)}this.totalPages=~~((this.options.totalRows-1)/this.options.pageSize)+1,this.options.totalPages=this.totalPages}if(this.totalPages>0&&this.options.pageNumber>this.totalPages&&(this.options.pageNumber=this.totalPages),this.pageFrom=(this.options.pageNumber-1)*this.options.pageSize+1,this.pageTo=this.options.pageNumber*this.options.pageSize,this.pageTo>this.options.totalRows&&(this.pageTo=this.options.totalRows),m.push('<div class="pull-'+this.options.paginationDetailHAlign+' pagination-detail">','<span class="pagination-info">',this.options.onlyInfoPagination?this.options.formatDetailPagination(this.options.totalRows):this.options.formatShowingRows(this.pageFrom,this.pageTo,this.options.totalRows),"</span>"),!this.options.onlyInfoPagination){m.push('<span class="page-list">');var r=[c('<span class="btn-group %s">',"top"===this.options.paginationVAlign||"both"===this.options.paginationVAlign?"dropdown":"dropup"),'<button type="button" class="btn'+c(" btn-%s",this.options.buttonsClass)+c(" btn-%s",this.options.iconSize)+' dropdown-toggle" data-toggle="dropdown">','<span class="page-size">',n?this.options.formatAllRows():this.options.pageSize,"</span>",' <span class="caret"></span>',"</button>",'<ul class="dropdown-menu" role="menu">'];if("string"==typeof this.options.pageList){var s=this.options.pageList.replace("[","").replace("]","").replace(/ /g,"").split(",");p=[],a.each(s,function(a,b){p.push(b.toUpperCase()===l.options.formatAllRows().toUpperCase()?l.options.formatAllRows():+b)})}for(a.each(p,function(a,b){if(!l.options.smartDisplay||0===a||p[a-1]<l.options.totalRows){var d;d=n?b===l.options.formatAllRows()?' class="active"':"":b===l.options.pageSize?' class="active"':"",r.push(c('<li role="menuitem"%s><a href="#">%s</a></li>',d,b))}}),r.push("</ul></span>"),m.push(this.options.formatRecordsPerPage(r.join(""))),m.push("</span>"),m.push("</div>",'<div class="pull-'+this.options.paginationHAlign+' pagination">','<ul class="pagination'+c(" pagination-%s",this.options.iconSize)+'">','<li class="page-pre"><a href="#">'+this.options.paginationPreText+"</a></li>"),this.totalPages<5?(d=1,e=this.totalPages):(d=this.options.pageNumber-2,e=d+4,1>d&&(d=1,e=5),e>this.totalPages&&(e=this.totalPages,d=e-4)),this.totalPages>=6&&(this.options.pageNumber>=3&&(m.push('<li class="page-first'+(1===this.options.pageNumber?" active":"")+'">','<a href="#">',1,"</a>","</li>"),d++),this.options.pageNumber>=4&&(4==this.options.pageNumber||6==this.totalPages||7==this.totalPages?d--:m.push('<li class="page-first-separator disabled">','<a href="#">...</a>',"</li>"),e--)),this.totalPages>=7&&this.options.pageNumber>=this.totalPages-2&&d--,6==this.totalPages?this.options.pageNumber>=this.totalPages-2&&e++:this.totalPages>=7&&(7==this.totalPages||this.options.pageNumber>=this.totalPages-3)&&e++,b=d;e>=b;b++)m.push('<li class="page-number'+(b===this.options.pageNumber?" active":"")+'">','<a href="#">',b,"</a>","</li>");this.totalPages>=8&&this.options.pageNumber<=this.totalPages-4&&m.push('<li class="page-last-separator disabled">','<a href="#">...</a>',"</li>"),this.totalPages>=6&&this.options.pageNumber<=this.totalPages-3&&m.push('<li class="page-last'+(this.totalPages===this.options.pageNumber?" active":"")+'">','<a href="#">',this.totalPages,"</a>","</li>"),m.push('<li class="page-next"><a href="#">'+this.options.paginationNextText+"</a></li>","</ul>","</div>")}this.$pagination.html(m.join("")),this.options.onlyInfoPagination||(f=this.$pagination.find(".page-list a"),g=this.$pagination.find(".page-first"),h=this.$pagination.find(".page-pre"),i=this.$pagination.find(".page-next"),j=this.$pagination.find(".page-last"),k=this.$pagination.find(".page-number"),this.options.smartDisplay&&(this.totalPages<=1&&this.$pagination.find("div.pagination").hide(),(p.length<2||this.options.totalRows<=p[0])&&this.$pagination.find("span.page-list").hide(),this.$pagination[this.getData().length?"show":"hide"]()),this.options.paginationLoop||(1===this.options.pageNumber&&h.addClass("disabled"),this.options.pageNumber===this.totalPages&&i.addClass("disabled")),n&&(this.options.pageSize=this.options.formatAllRows()),f.off("click").on("click",a.proxy(this.onPageListChange,this)),g.off("click").on("click",a.proxy(this.onPageFirst,this)),h.off("click").on("click",a.proxy(this.onPagePre,this)),i.off("click").on("click",a.proxy(this.onPageNext,this)),j.off("click").on("click",a.proxy(this.onPageLast,this)),k.off("click").on("click",a.proxy(this.onPageNumber,this)))},o.prototype.updatePagination=function(b){b&&a(b.currentTarget).hasClass("disabled")||(this.options.maintainSelected||this.resetRows(),this.initPagination(),"server"===this.options.sidePagination?this.initServer():this.initBody(),this.trigger("page-change",this.options.pageNumber,this.options.pageSize))},o.prototype.onPageListChange=function(b){var c=a(b.currentTarget);return c.parent().addClass("active").siblings().removeClass("active"),this.options.pageSize=c.text().toUpperCase()===this.options.formatAllRows().toUpperCase()?this.options.formatAllRows():+c.text(),this.$toolbar.find(".page-size").text(this.options.pageSize),this.updatePagination(b),!1},o.prototype.onPageFirst=function(a){return this.options.pageNumber=1,this.updatePagination(a),!1},o.prototype.onPagePre=function(a){return this.options.pageNumber-1===0?this.options.pageNumber=this.options.totalPages:this.options.pageNumber--,this.updatePagination(a),!1},o.prototype.onPageNext=function(a){return this.options.pageNumber+1>this.options.totalPages?this.options.pageNumber=1:this.options.pageNumber++,this.updatePagination(a),!1},o.prototype.onPageLast=function(a){return this.options.pageNumber=this.totalPages,this.updatePagination(a),!1},o.prototype.onPageNumber=function(b){return this.options.pageNumber!==+a(b.currentTarget).text()?(this.options.pageNumber=+a(b.currentTarget).text(),this.updatePagination(b),!1):void 0},o.prototype.initRow=function(b,e){var f,g=this,i=[],k={},m=[],n="",o={},p=[];if(!(a.inArray(b,this.hiddenRows)>-1)){if(k=h(this.options,this.options.rowStyle,[b,e],k),k&&k.css)for(f in k.css)m.push(f+": "+k.css[f]);if(o=h(this.options,this.options.rowAttributes,[b,e],o))for(f in o)p.push(c('%s="%s"',f,j(o[f])));return b._data&&!a.isEmptyObject(b._data)&&a.each(b._data,function(a,b){"index"!==a&&(n+=c(' data-%s="%s"',a,b))}),i.push("<tr",c(" %s",p.join(" ")),c(' id="%s"',a.isArray(b)?void 0:b._id),c(' class="%s"',k.classes||(a.isArray(b)?void 0:b._class)),c(' data-index="%s"',e),c(' data-uniqueid="%s"',b[this.options.uniqueId]),c("%s",n),">"),this.options.cardView&&i.push(c('<td colspan="%s"><div class="card-views">',this.header.fields.length)),!this.options.cardView&&this.options.detailView&&i.push("<td>",'<a class="detail-icon" href="#">',c('<i class="%s %s"></i>',this.options.iconsPrefix,this.options.icons.detailOpen),"</a>","</td>"),a.each(this.header.fields,function(f,n){var o="",p=l(b,n,g.options.escape),q="",r="",s={},t="",u=g.header.classes[f],v="",w="",x="",y="",z=g.columns[f];if(!(g.fromHtml&&"undefined"==typeof p||!z.visible||g.options.cardView&&!z.cardVisible)){if(z.escape&&(p=j(p)),k=c('style="%s"',m.concat(g.header.styles[f]).join("; ")),b["_"+n+"_id"]&&(t=c(' id="%s"',b["_"+n+"_id"])),b["_"+n+"_class"]&&(u=c(' class="%s"',b["_"+n+"_class"])),b["_"+n+"_rowspan"]&&(w=c(' rowspan="%s"',b["_"+n+"_rowspan"])),b["_"+n+"_colspan"]&&(x=c(' colspan="%s"',b["_"+n+"_colspan"])),b["_"+n+"_title"]&&(y=c(' title="%s"',b["_"+n+"_title"])),s=h(g.header,g.header.cellStyles[f],[p,b,e,n],s),s.classes&&(u=c(' class="%s"',s.classes)),s.css){var A=[];for(var B in s.css)A.push(B+": "+s.css[B]);k=c('style="%s"',A.concat(g.header.styles[f]).join("; "))}q=h(z,g.header.formatters[f],[p,b,e],p),b["_"+n+"_data"]&&!a.isEmptyObject(b["_"+n+"_data"])&&a.each(b["_"+n+"_data"],function(a,b){"index"!==a&&(v+=c(' data-%s="%s"',a,b))}),z.checkbox||z.radio?(r=z.checkbox?"checkbox":r,r=z.radio?"radio":r,o=[c(g.options.cardView?'<div class="card-view %s">':'<td class="bs-checkbox %s">',z["class"]||""),"<input"+c(' data-index="%s"',e)+c(' name="%s"',g.options.selectItemName)+c(' type="%s"',r)+c(' value="%s"',b[g.options.idField])+c(' checked="%s"',q===!0||p||q&&q.checked?"checked":void 0)+c(' disabled="%s"',!z.checkboxEnabled||q&&q.disabled?"disabled":void 0)+" />",g.header.formatters[f]&&"string"==typeof q?q:"",g.options.cardView?"</div>":"</td>"].join(""),b[g.header.stateField]=q===!0||q&&q.checked):(q="undefined"==typeof q||null===q?g.options.undefinedText:q,o=g.options.cardView?['<div class="card-view">',g.options.showHeader?c('<span class="title" %s>%s</span>',k,d(g.columns,"field","title",n)):"",c('<span class="value">%s</span>',q),"</div>"].join(""):[c("<td%s %s %s %s %s %s %s>",t,u,k,v,w,x,y),q,"</td>"].join(""),g.options.cardView&&g.options.smartDisplay&&""===q&&(o='<div class="card-view"></div>')),i.push(o)}}),this.options.cardView&&i.push("</div></td>"),i.push("</tr>"),i.join(" ")}},o.prototype.initBody=function(b){var d=this,f=this.getData();this.trigger("pre-body",f),this.$body=this.$el.find(">tbody"),this.$body.length||(this.$body=a("<tbody></tbody>").appendTo(this.$el)),this.options.pagination&&"server"!==this.options.sidePagination||(this.pageFrom=1,this.pageTo=f.length);for(var g,i=a(document.createDocumentFragment()),j=this.pageFrom-1;j<this.pageTo;j++){
  5167. var k=f[j],m=this.initRow(k,j,f,i);g=g||!!m,m&&m!==!0&&i.append(m)}g||i.append('<tr class="no-records-found">'+c('<td colspan="%s">%s</td>',this.$header.find("th").length,this.options.formatNoMatches())+"</tr>"),this.$body.html(i),b||this.scrollTo(0),this.$body.find("> tr[data-index] > td").off("click dblclick").on("click dblclick",function(b){var f=a(this),g=f.parent(),h=d.data[g.data("index")],i=f[0].cellIndex,j=d.getVisibleFields(),k=j[d.options.detailView&&!d.options.cardView?i-1:i],m=d.columns[e(d.columns,k)],n=l(h,k,d.options.escape);if(!f.find(".detail-icon").length&&(d.trigger("click"===b.type?"click-cell":"dbl-click-cell",k,n,h,f),d.trigger("click"===b.type?"click-row":"dbl-click-row",h,g,k),"click"===b.type&&d.options.clickToSelect&&m.clickToSelect)){var o=g.find(c('[name="%s"]',d.options.selectItemName));o.length&&o[0].click()}}),this.$body.find("> tr[data-index] > td > .detail-icon").off("click").on("click",function(){var b=a(this),e=b.parent().parent(),g=e.data("index"),i=f[g];if(e.next().is("tr.detail-view"))b.find("i").attr("class",c("%s %s",d.options.iconsPrefix,d.options.icons.detailOpen)),d.trigger("collapse-row",g,i),e.next().remove();else{b.find("i").attr("class",c("%s %s",d.options.iconsPrefix,d.options.icons.detailClose)),e.after(c('<tr class="detail-view"><td colspan="%s"></td></tr>',e.find("td").length));var j=e.next().find("td"),k=h(d.options,d.options.detailFormatter,[g,i,j],"");1===j.length&&j.append(k),d.trigger("expand-row",g,i,j)}return d.resetView(),!1}),this.$selectItem=this.$body.find(c('[name="%s"]',this.options.selectItemName)),this.$selectItem.off("click").on("click",function(b){b.stopImmediatePropagation();var c=a(this),e=c.prop("checked"),f=d.data[c.data("index")];d.options.maintainSelected&&a(this).is(":radio")&&a.each(d.options.data,function(a,b){b[d.header.stateField]=!1}),f[d.header.stateField]=e,d.options.singleSelect&&(d.$selectItem.not(this).each(function(){d.data[a(this).data("index")][d.header.stateField]=!1}),d.$selectItem.filter(":checked").not(this).prop("checked",!1)),d.updateSelected(),d.trigger(e?"check":"uncheck",f,c)}),a.each(this.header.events,function(b,c){if(c){"string"==typeof c&&(c=h(null,c));var e=d.header.fields[b],f=a.inArray(e,d.getVisibleFields());d.options.detailView&&!d.options.cardView&&(f+=1);for(var g in c)d.$body.find(">tr:not(.no-records-found)").each(function(){var b=a(this),h=b.find(d.options.cardView?".card-view":"td").eq(f),i=g.indexOf(" "),j=g.substring(0,i),k=g.substring(i+1),l=c[g];h.find(k).off(j).on(j,function(a){var c=b.data("index"),f=d.data[c],g=f[e];l.apply(this,[a,g,f,c])})})}}),this.updateSelected(),this.resetView(),this.trigger("post-body",f)},o.prototype.initServer=function(b,c,d){var e,f=this,g={},i={searchText:this.searchText,sortName:this.options.sortName,sortOrder:this.options.sortOrder};this.options.pagination&&(i.pageSize=this.options.pageSize===this.options.formatAllRows()?this.options.totalRows:this.options.pageSize,i.pageNumber=this.options.pageNumber),(d||this.options.url||this.options.ajax)&&("limit"===this.options.queryParamsType&&(i={search:i.searchText,sort:i.sortName,order:i.sortOrder},this.options.pagination&&(i.offset=this.options.pageSize===this.options.formatAllRows()?0:this.options.pageSize*(this.options.pageNumber-1),i.limit=this.options.pageSize===this.options.formatAllRows()?this.options.totalRows:this.options.pageSize)),a.isEmptyObject(this.filterColumnsPartial)||(i.filter=JSON.stringify(this.filterColumnsPartial,null)),g=h(this.options,this.options.queryParams,[i],g),a.extend(g,c||{}),g!==!1&&(b||this.$tableLoading.show(),e=a.extend({},h(null,this.options.ajaxOptions),{type:this.options.method,url:d||this.options.url,data:"application/json"===this.options.contentType&&"post"===this.options.method?JSON.stringify(g):g,cache:this.options.cache,contentType:this.options.contentType,dataType:this.options.dataType,success:function(a){a=h(f.options,f.options.responseHandler,[a],a),f.load(a),f.trigger("load-success",a),b||f.$tableLoading.hide()},error:function(a){f.trigger("load-error",a.status,a),b||f.$tableLoading.hide()}}),this.options.ajax?h(this,this.options.ajax,[e],null):(this._xhr&&4!==this._xhr.readyState&&this._xhr.abort(),this._xhr=a.ajax(e))))},o.prototype.initSearchText=function(){if(this.options.search&&""!==this.options.searchText){var a=this.$toolbar.find(".search input");a.val(this.options.searchText),this.onSearch({currentTarget:a})}},o.prototype.getCaret=function(){var b=this;a.each(this.$header.find("th"),function(c,d){a(d).find(".sortable").removeClass("desc asc").addClass(a(d).data("field")===b.options.sortName?b.options.sortOrder:"both")})},o.prototype.updateSelected=function(){var b=this.$selectItem.filter(":enabled").length&&this.$selectItem.filter(":enabled").length===this.$selectItem.filter(":enabled").filter(":checked").length;this.$selectAll.add(this.$selectAll_).prop("checked",b),this.$selectItem.each(function(){a(this).closest("tr")[a(this).prop("checked")?"addClass":"removeClass"]("selected")})},o.prototype.updateRows=function(){var b=this;this.$selectItem.each(function(){b.data[a(this).data("index")][b.header.stateField]=a(this).prop("checked")})},o.prototype.resetRows=function(){var b=this;a.each(this.data,function(a,c){b.$selectAll.prop("checked",!1),b.$selectItem.prop("checked",!1),b.header.stateField&&(c[b.header.stateField]=!1)}),this.initHiddenRows()},o.prototype.trigger=function(b){var c=Array.prototype.slice.call(arguments,1);b+=".bs.table",this.options[o.EVENTS[b]].apply(this.options,c),this.$el.trigger(a.Event(b),c),this.options.onAll(b,c),this.$el.trigger(a.Event("all.bs.table"),[b,c])},o.prototype.resetHeader=function(){clearTimeout(this.timeoutId_),this.timeoutId_=setTimeout(a.proxy(this.fitHeader,this),this.$el.is(":hidden")?100:0)},o.prototype.fitHeader=function(){var b,d,e,f,h=this;if(h.$el.is(":hidden"))return void(h.timeoutId_=setTimeout(a.proxy(h.fitHeader,h),100));if(b=this.$tableBody.get(0),d=b.scrollWidth>b.clientWidth&&b.scrollHeight>b.clientHeight+this.$header.outerHeight()?g():0,this.$el.css("margin-top",-this.$header.outerHeight()),e=a(":focus"),e.length>0){var i=e.parents("th");if(i.length>0){var j=i.attr("data-field");if(void 0!==j){var k=this.$header.find("[data-field='"+j+"']");k.length>0&&k.find(":input").addClass("focus-temp")}}}this.$header_=this.$header.clone(!0,!0),this.$selectAll_=this.$header_.find('[name="btSelectAll"]'),this.$tableHeader.css({"margin-right":d}).find("table").css("width",this.$el.outerWidth()).html("").attr("class",this.$el.attr("class")).append(this.$header_),f=a(".focus-temp:visible:eq(0)"),f.length>0&&(f.focus(),this.$header.find(".focus-temp").removeClass("focus-temp")),this.$header.find("th[data-field]").each(function(){h.$header_.find(c('th[data-field="%s"]',a(this).data("field"))).data(a(this).data())});var l=this.getVisibleFields(),m=this.$header_.find("th");this.$body.find(">tr:first-child:not(.no-records-found) > *").each(function(b){var d=a(this),e=b;h.options.detailView&&!h.options.cardView&&(0===b&&h.$header_.find("th.detail").find(".fht-cell").width(d.innerWidth()),e=b-1);var f=h.$header_.find(c('th[data-field="%s"]',l[e]));f.length>1&&(f=a(m[d[0].cellIndex])),f.find(".fht-cell").width(d.innerWidth())}),this.$tableBody.off("scroll").on("scroll",function(){h.$tableHeader.scrollLeft(a(this).scrollLeft()),h.options.showFooter&&!h.options.cardView&&h.$tableFooter.scrollLeft(a(this).scrollLeft())}),h.trigger("post-header")},o.prototype.resetFooter=function(){var b=this,d=b.getData(),e=[];this.options.showFooter&&!this.options.cardView&&(!this.options.cardView&&this.options.detailView&&e.push('<td><div class="th-inner">&nbsp;</div><div class="fht-cell"></div></td>'),a.each(this.columns,function(a,f){var g,i="",j="",k=[],l={},m=c(' class="%s"',f["class"]);if(f.visible&&(!b.options.cardView||f.cardVisible)){if(i=c("text-align: %s; ",f.falign?f.falign:f.align),j=c("vertical-align: %s; ",f.valign),l=h(null,b.options.footerStyle),l&&l.css)for(g in l.css)k.push(g+": "+l.css[g]);e.push("<td",m,c(' style="%s"',i+j+k.concat().join("; ")),">"),e.push('<div class="th-inner">'),e.push(h(f,f.footerFormatter,[d],"&nbsp;")||"&nbsp;"),e.push("</div>"),e.push('<div class="fht-cell"></div>'),e.push("</div>"),e.push("</td>")}}),this.$tableFooter.find("tr").html(e.join("")),this.$tableFooter.show(),clearTimeout(this.timeoutFooter_),this.timeoutFooter_=setTimeout(a.proxy(this.fitFooter,this),this.$el.is(":hidden")?100:0))},o.prototype.fitFooter=function(){var b,c,d;return clearTimeout(this.timeoutFooter_),this.$el.is(":hidden")?void(this.timeoutFooter_=setTimeout(a.proxy(this.fitFooter,this),100)):(c=this.$el.css("width"),d=c>this.$tableBody.width()?g():0,this.$tableFooter.css({"margin-right":d}).find("table").css("width",c).attr("class",this.$el.attr("class")),b=this.$tableFooter.find("td"),void this.$body.find(">tr:first-child:not(.no-records-found) > *").each(function(c){var d=a(this);b.eq(c).find(".fht-cell").width(d.innerWidth())}))},o.prototype.toggleColumn=function(a,b,d){if(-1!==a&&(this.columns[a].visible=b,this.initHeader(),this.initSearch(),this.initPagination(),this.initBody(),this.options.showColumns)){var e=this.$toolbar.find(".keep-open input").prop("disabled",!1);d&&e.filter(c('[value="%s"]',a)).prop("checked",b),e.filter(":checked").length<=this.options.minimumCountColumns&&e.filter(":checked").prop("disabled",!0)}},o.prototype.getVisibleFields=function(){var b=this,c=[];return a.each(this.header.fields,function(a,d){var f=b.columns[e(b.columns,d)];f.visible&&c.push(d)}),c},o.prototype.resetView=function(a){var b=0;if(a&&a.height&&(this.options.height=a.height),this.$selectAll.prop("checked",this.$selectItem.length>0&&this.$selectItem.length===this.$selectItem.filter(":checked").length),this.options.height){var c=this.$toolbar.outerHeight(!0),d=this.$pagination.outerHeight(!0),e=this.options.height-c-d;this.$tableContainer.css("height",e+"px")}return this.options.cardView?(this.$el.css("margin-top","0"),this.$tableContainer.css("padding-bottom","0"),void this.$tableFooter.hide()):(this.options.showHeader&&this.options.height?(this.$tableHeader.show(),this.resetHeader(),b+=this.$header.outerHeight()):(this.$tableHeader.hide(),this.trigger("post-header")),this.options.showFooter&&(this.resetFooter(),this.options.height&&(b+=this.$tableFooter.outerHeight()+1)),this.getCaret(),this.$tableContainer.css("padding-bottom",b+"px"),void this.trigger("reset-view"))},o.prototype.getData=function(b){return!this.searchText&&a.isEmptyObject(this.filterColumns)&&a.isEmptyObject(this.filterColumnsPartial)?b?this.options.data.slice(this.pageFrom-1,this.pageTo):this.options.data:b?this.data.slice(this.pageFrom-1,this.pageTo):this.data},o.prototype.load=function(b){var c=!1;"server"===this.options.sidePagination?(this.options.totalRows=b[this.options.totalField],c=b.fixedScroll,b=b[this.options.dataField]):a.isArray(b)||(c=b.fixedScroll,b=b.data),this.initData(b),this.initSearch(),this.initPagination(),this.initBody(c)},o.prototype.append=function(a){this.initData(a,"append"),this.initSearch(),this.initPagination(),this.initSort(),this.initBody(!0)},o.prototype.prepend=function(a){this.initData(a,"prepend"),this.initSearch(),this.initPagination(),this.initSort(),this.initBody(!0)},o.prototype.remove=function(b){var c,d,e=this.options.data.length;if(b.hasOwnProperty("field")&&b.hasOwnProperty("values")){for(c=e-1;c>=0;c--)d=this.options.data[c],d.hasOwnProperty(b.field)&&-1!==a.inArray(d[b.field],b.values)&&(this.options.data.splice(c,1),"server"===this.options.sidePagination&&(this.options.totalRows-=1));e!==this.options.data.length&&(this.initSearch(),this.initPagination(),this.initSort(),this.initBody(!0))}},o.prototype.removeAll=function(){this.options.data.length>0&&(this.options.data.splice(0,this.options.data.length),this.initSearch(),this.initPagination(),this.initBody(!0))},o.prototype.getRowByUniqueId=function(a){var b,c,d,e=this.options.uniqueId,f=this.options.data.length,g=null;for(b=f-1;b>=0;b--){if(c=this.options.data[b],c.hasOwnProperty(e))d=c[e];else{if(!c._data.hasOwnProperty(e))continue;d=c._data[e]}if("string"==typeof d?a=a.toString():"number"==typeof d&&(Number(d)===d&&d%1===0?a=parseInt(a):d===Number(d)&&0!==d&&(a=parseFloat(a))),d===a){g=c;break}}return g},o.prototype.removeByUniqueId=function(a){var b=this.options.data.length,c=this.getRowByUniqueId(a);c&&this.options.data.splice(this.options.data.indexOf(c),1),b!==this.options.data.length&&(this.initSearch(),this.initPagination(),this.initBody(!0))},o.prototype.updateByUniqueId=function(b){var c=this,d=a.isArray(b)?b:[b];a.each(d,function(b,d){var e;d.hasOwnProperty("id")&&d.hasOwnProperty("row")&&(e=a.inArray(c.getRowByUniqueId(d.id),c.options.data),-1!==e&&a.extend(c.options.data[e],d.row))}),this.initSearch(),this.initPagination(),this.initSort(),this.initBody(!0)},o.prototype.insertRow=function(a){a.hasOwnProperty("index")&&a.hasOwnProperty("row")&&(this.data.splice(a.index,0,a.row),this.initSearch(),this.initPagination(),this.initSort(),this.initBody(!0))},o.prototype.updateRow=function(b){var c=this,d=a.isArray(b)?b:[b];a.each(d,function(b,d){d.hasOwnProperty("index")&&d.hasOwnProperty("row")&&a.extend(c.options.data[d.index],d.row)}),this.initSearch(),this.initPagination(),this.initSort(),this.initBody(!0)},o.prototype.initHiddenRows=function(){this.hiddenRows=[]},o.prototype.showRow=function(a){this.toggleRow(a,!0)},o.prototype.hideRow=function(a){this.toggleRow(a,!1)},o.prototype.toggleRow=function(b,c){var d,e;b.hasOwnProperty("index")?d=this.getData()[b.index]:b.hasOwnProperty("uniqueId")&&(d=this.getRowByUniqueId(b.uniqueId)),d&&(e=a.inArray(d,this.hiddenRows),c||-1!==e?c&&e>-1&&this.hiddenRows.splice(e,1):this.hiddenRows.push(d),this.initBody(!0))},o.prototype.getHiddenRows=function(){var b=this,c=this.getData(),d=[];return a.each(c,function(c,e){a.inArray(e,b.hiddenRows)>-1&&d.push(e)}),this.hiddenRows=d,d},o.prototype.mergeCells=function(b){var c,d,e,f=b.index,g=a.inArray(b.field,this.getVisibleFields()),h=b.rowspan||1,i=b.colspan||1,j=this.$body.find(">tr");if(this.options.detailView&&!this.options.cardView&&(g+=1),e=j.eq(f).find(">td").eq(g),!(0>f||0>g||f>=this.data.length)){for(c=f;f+h>c;c++)for(d=g;g+i>d;d++)j.eq(c).find(">td").eq(d).hide();e.attr("rowspan",h).attr("colspan",i).show()}},o.prototype.updateCell=function(a){a.hasOwnProperty("index")&&a.hasOwnProperty("field")&&a.hasOwnProperty("value")&&(this.data[a.index][a.field]=a.value,a.reinit!==!1&&(this.initSort(),this.initBody(!0)))},o.prototype.getOptions=function(){return this.options},o.prototype.getSelections=function(){var b=this;return a.grep(this.options.data,function(a){return a[b.header.stateField]===!0})},o.prototype.getAllSelections=function(){var b=this;return a.grep(this.options.data,function(a){return a[b.header.stateField]})},o.prototype.checkAll=function(){this.checkAll_(!0)},o.prototype.uncheckAll=function(){this.checkAll_(!1)},o.prototype.checkInvert=function(){var b=this,c=b.$selectItem.filter(":enabled"),d=c.filter(":checked");c.each(function(){a(this).prop("checked",!a(this).prop("checked"))}),b.updateRows(),b.updateSelected(),b.trigger("uncheck-some",d),d=b.getSelections(),b.trigger("check-some",d)},o.prototype.checkAll_=function(a){var b;a||(b=this.getSelections()),this.$selectAll.add(this.$selectAll_).prop("checked",a),this.$selectItem.filter(":enabled").prop("checked",a),this.updateRows(),a&&(b=this.getSelections()),this.trigger(a?"check-all":"uncheck-all",b)},o.prototype.check=function(a){this.check_(!0,a)},o.prototype.uncheck=function(a){this.check_(!1,a)},o.prototype.check_=function(a,b){var d=this.$selectItem.filter(c('[data-index="%s"]',b)).prop("checked",a);this.data[b][this.header.stateField]=a,this.updateSelected(),this.trigger(a?"check":"uncheck",this.data[b],d)},o.prototype.checkBy=function(a){this.checkBy_(!0,a)},o.prototype.uncheckBy=function(a){this.checkBy_(!1,a)},o.prototype.checkBy_=function(b,d){if(d.hasOwnProperty("field")&&d.hasOwnProperty("values")){var e=this,f=[];a.each(this.options.data,function(g,h){if(!h.hasOwnProperty(d.field))return!1;if(-1!==a.inArray(h[d.field],d.values)){var i=e.$selectItem.filter(":enabled").filter(c('[data-index="%s"]',g)).prop("checked",b);h[e.header.stateField]=b,f.push(h),e.trigger(b?"check":"uncheck",h,i)}}),this.updateSelected(),this.trigger(b?"check-some":"uncheck-some",f)}},o.prototype.destroy=function(){this.$el.insertBefore(this.$container),a(this.options.toolbar).insertBefore(this.$el),this.$container.next().remove(),this.$container.remove(),this.$el.html(this.$el_.html()).css("margin-top","0").attr("class",this.$el_.attr("class")||"")},o.prototype.showLoading=function(){this.$tableLoading.show()},o.prototype.hideLoading=function(){this.$tableLoading.hide()},o.prototype.togglePagination=function(){this.options.pagination=!this.options.pagination;var a=this.$toolbar.find('button[name="paginationSwitch"] i');this.options.pagination?a.attr("class",this.options.iconsPrefix+" "+this.options.icons.paginationSwitchDown):a.attr("class",this.options.iconsPrefix+" "+this.options.icons.paginationSwitchUp),this.updatePagination()},o.prototype.refresh=function(a){a&&a.url&&(this.options.url=a.url),a&&a.pageNumber&&(this.options.pageNumber=a.pageNumber),a&&a.pageSize&&(this.options.pageSize=a.pageSize),this.initServer(a&&a.silent,a&&a.query,a&&a.url),this.trigger("refresh",a)},o.prototype.resetWidth=function(){this.options.showHeader&&this.options.height&&this.fitHeader(),this.options.showFooter&&this.fitFooter()},o.prototype.showColumn=function(a){this.toggleColumn(e(this.columns,a),!0,!0)},o.prototype.hideColumn=function(a){this.toggleColumn(e(this.columns,a),!1,!0)},o.prototype.getHiddenColumns=function(){return a.grep(this.columns,function(a){return!a.visible})},o.prototype.getVisibleColumns=function(){return a.grep(this.columns,function(a){return a.visible})},o.prototype.toggleAllColumns=function(b){if(a.each(this.columns,function(a){this.columns[a].visible=b}),this.initHeader(),this.initSearch(),this.initPagination(),this.initBody(),this.options.showColumns){var c=this.$toolbar.find(".keep-open input").prop("disabled",!1);c.filter(":checked").length<=this.options.minimumCountColumns&&c.filter(":checked").prop("disabled",!0)}},o.prototype.showAllColumns=function(){this.toggleAllColumns(!0)},o.prototype.hideAllColumns=function(){this.toggleAllColumns(!1)},o.prototype.filterBy=function(b){this.filterColumns=a.isEmptyObject(b)?{}:b,this.options.pageNumber=1,this.initSearch(),this.updatePagination()},o.prototype.scrollTo=function(a){return"string"==typeof a&&(a="bottom"===a?this.$tableBody[0].scrollHeight:0),"number"==typeof a&&this.$tableBody.scrollTop(a),"undefined"==typeof a?this.$tableBody.scrollTop():void 0},o.prototype.getScrollPosition=function(){return this.scrollTo()},o.prototype.selectPage=function(a){a>0&&a<=this.options.totalPages&&(this.options.pageNumber=a,this.updatePagination())},o.prototype.prevPage=function(){this.options.pageNumber>1&&(this.options.pageNumber--,this.updatePagination())},o.prototype.nextPage=function(){this.options.pageNumber<this.options.totalPages&&(this.options.pageNumber++,this.updatePagination())},o.prototype.toggleView=function(){this.options.cardView=!this.options.cardView,this.initHeader(),this.initBody(),this.trigger("toggle",this.options.cardView)},o.prototype.refreshOptions=function(b){i(this.options,b,!0)||(this.options=a.extend(this.options,b),this.trigger("refresh-options",this.options),this.destroy(),this.init())},o.prototype.resetSearch=function(a){var b=this.$toolbar.find(".search input");b.val(a||""),this.onSearch({currentTarget:b})},o.prototype.expandRow_=function(a,b){var d=this.$body.find(c('> tr[data-index="%s"]',b));d.next().is("tr.detail-view")===(a?!1:!0)&&d.find("> td > .detail-icon").click()},o.prototype.expandRow=function(a){this.expandRow_(!0,a)},o.prototype.collapseRow=function(a){this.expandRow_(!1,a)},o.prototype.expandAllRows=function(b){if(b){var d=this.$body.find(c('> tr[data-index="%s"]',0)),e=this,f=null,g=!1,h=-1;if(d.next().is("tr.detail-view")?d.next().next().is("tr.detail-view")||(d.next().find(".detail-icon").click(),g=!0):(d.find("> td > .detail-icon").click(),g=!0),g)try{h=setInterval(function(){f=e.$body.find("tr.detail-view").last().find(".detail-icon"),f.length>0?f.click():clearInterval(h)},1)}catch(i){clearInterval(h)}}else for(var j=this.$body.children(),k=0;k<j.length;k++)this.expandRow_(!0,a(j[k]).data("index"))},o.prototype.collapseAllRows=function(b){if(b)this.expandRow_(!1,0);else for(var c=this.$body.children(),d=0;d<c.length;d++)this.expandRow_(!1,a(c[d]).data("index"))},o.prototype.updateFormatText=function(a,b){this.options[c("format%s",a)]&&("string"==typeof b?this.options[c("format%s",a)]=function(){return b}:"function"==typeof b&&(this.options[c("format%s",a)]=b)),this.initToolbar(),this.initPagination(),this.initBody()};var p=["getOptions","getSelections","getAllSelections","getData","load","append","prepend","remove","removeAll","insertRow","updateRow","updateCell","updateByUniqueId","removeByUniqueId","getRowByUniqueId","showRow","hideRow","getHiddenRows","mergeCells","checkAll","uncheckAll","checkInvert","check","uncheck","checkBy","uncheckBy","refresh","resetView","resetWidth","destroy","showLoading","hideLoading","showColumn","hideColumn","getHiddenColumns","getVisibleColumns","showAllColumns","hideAllColumns","filterBy","scrollTo","getScrollPosition","selectPage","prevPage","nextPage","togglePagination","toggleView","refreshOptions","resetSearch","expandRow","collapseRow","expandAllRows","collapseAllRows","updateFormatText"];a.fn.bootstrapTable=function(b){var c,d=Array.prototype.slice.call(arguments,1);return this.each(function(){var e=a(this),f=e.data("bootstrap.table"),g=a.extend({},o.DEFAULTS,e.data(),"object"==typeof b&&b);if("string"==typeof b){if(a.inArray(b,p)<0)throw new Error("Unknown method: "+b);if(!f)return;c=f[b].apply(f,d),"destroy"===b&&e.removeData("bootstrap.table")}f||e.data("bootstrap.table",f=new o(this,g))}),"undefined"==typeof c?this:c},a.fn.bootstrapTable.Constructor=o,a.fn.bootstrapTable.defaults=o.DEFAULTS,a.fn.bootstrapTable.columnDefaults=o.COLUMN_DEFAULTS,a.fn.bootstrapTable.locales=o.LOCALES,a.fn.bootstrapTable.methods=p,a.fn.bootstrapTable.utils={sprintf:c,getFieldIndex:e,compareObjects:i,calculateObjectValue:h,getItemField:l,objectKeys:n,isIEBrowser:m},a(function(){a('[data-toggle="table"]').bootstrapTable()})}(jQuery);
  5168. define("bootstrap-table", ["bootstrap"], (function (global) {
  5169. return function () {
  5170. var ret, fn;
  5171. return ret || global.$.fn.bootstrapTable;
  5172. };
  5173. }(this)));
  5174. /**
  5175. * Bootstrap Table Chinese translation
  5176. * Author: Zhixin Wen<wenzhixin2010@gmail.com>
  5177. */
  5178. (function ($) {
  5179. 'use strict';
  5180. $.fn.bootstrapTable.locales['zh-CN'] = {
  5181. formatLoadingMessage: function () {
  5182. return '正在努力地加载数据中,请稍候……';
  5183. },
  5184. formatRecordsPerPage: function (pageNumber) {
  5185. return '每页显示 ' + pageNumber + ' 条记录';
  5186. },
  5187. formatShowingRows: function (pageFrom, pageTo, totalRows) {
  5188. return '显示第 ' + pageFrom + ' 到第 ' + pageTo + ' 条记录,总共 ' + totalRows + ' 条记录';
  5189. },
  5190. formatSearch: function () {
  5191. return '搜索';
  5192. },
  5193. formatNoMatches: function () {
  5194. return '没有找到匹配的记录';
  5195. },
  5196. formatPaginationSwitch: function () {
  5197. return '隐藏/显示分页';
  5198. },
  5199. formatRefresh: function () {
  5200. return '刷新';
  5201. },
  5202. formatToggle: function () {
  5203. return '切换';
  5204. },
  5205. formatColumns: function () {
  5206. return '列';
  5207. },
  5208. formatExport: function () {
  5209. return '导出数据';
  5210. },
  5211. formatClearFilters: function () {
  5212. return '清空过滤';
  5213. }
  5214. };
  5215. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['zh-CN']);
  5216. })(jQuery);
  5217. define("bootstrap-table-lang", ["bootstrap-table"], (function (global) {
  5218. return function () {
  5219. var ret, fn;
  5220. return ret || global.$.fn.bootstrapTable.defaults;
  5221. };
  5222. }(this)));
  5223. /*
  5224. tableExport.jquery.plugin
  5225. Version 1.9.15
  5226. Copyright (c) 2015-2018 hhurz, https://github.com/hhurz
  5227. Original Work Copyright (c) 2014 Giri Raj
  5228. Licensed under the MIT License
  5229. */
  5230. var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.findInternal=function(c,h,u){c instanceof String&&(c=String(c));for(var C=c.length,D=0;D<C;D++){var P=c[D];if(h.call(u,P,D,c))return{i:D,v:P}}return{i:-1,v:void 0}};$jscomp.ASSUME_ES5=!1;$jscomp.ASSUME_NO_NATIVE_MAP=!1;$jscomp.ASSUME_NO_NATIVE_SET=!1;$jscomp.defineProperty=$jscomp.ASSUME_ES5||"function"==typeof Object.defineProperties?Object.defineProperty:function(c,h,u){c!=Array.prototype&&c!=Object.prototype&&(c[h]=u.value)};
  5231. $jscomp.getGlobal=function(c){return"undefined"!=typeof window&&window===c?c:"undefined"!=typeof global&&null!=global?global:c};$jscomp.global=$jscomp.getGlobal(this);$jscomp.polyfill=function(c,h,u,C){if(h){u=$jscomp.global;c=c.split(".");for(C=0;C<c.length-1;C++){var D=c[C];D in u||(u[D]={});u=u[D]}c=c[c.length-1];C=u[c];h=h(C);h!=C&&null!=h&&$jscomp.defineProperty(u,c,{configurable:!0,writable:!0,value:h})}};
  5232. $jscomp.polyfill("Array.prototype.find",function(c){return c?c:function(c,u){return $jscomp.findInternal(this,c,u).v}},"es6","es3");
  5233. (function(c){c.fn.tableExport=function(h){function u(b){var d=[];C(b,"tbody").each(function(){d.push.apply(d,D(c(this),a.tbodySelector).toArray())});a.tfootSelector.length&&C(b,"tfoot").each(function(){d.push.apply(d,D(c(this),a.tfootSelector).toArray())});return d}function C(b,a){var d=b.parents("table").length;return b.find(a).filter(function(){return c(this).closest("table").parents("table").length===d})}function D(b,d){return b.find(d).filter(function(){return 0===a.maxNestedTables||c(this).find("table").length<
  5234. a.maxNestedTables&&c(this).parents("table").length<=a.maxNestedTables})}function P(b){var a=[];c(b).find("thead").first().find("th").each(function(b,d){void 0!==c(d).attr("data-field")?a[b]=c(d).attr("data-field"):a[b]=b.toString()});return a}function Q(b){var a="undefined"!==typeof b[0].cellIndex,e="undefined"!==typeof b[0].rowIndex,p=a||e?Da(b):b.is(":visible"),g=b.data("tableexport-display");a&&"none"!==g&&"always"!==g&&(b=c(b[0].parentNode),e="undefined"!==typeof b[0].rowIndex,g=b.data("tableexport-display"));
  5235. e&&"none"!==g&&"always"!==g&&(g=b.closest("table").data("tableexport-display"));return"none"!==g&&(!0===p||"always"===g)}function Da(b){var a=[];U&&(a=I.filter(function(){var a=!1;this.nodeType===b[0].nodeType&&("undefined"!==typeof this.rowIndex&&this.rowIndex===b[0].rowIndex?a=!0:"undefined"!==typeof this.cellIndex&&this.cellIndex===b[0].cellIndex&&"undefined"!==typeof this.parentNode.rowIndex&&"undefined"!==typeof b[0].parentNode.rowIndex&&this.parentNode.rowIndex===b[0].parentNode.rowIndex&&(a=
  5236. !0));return a}));return!1===U||0===a.length}function Ea(b,d,e){var p=!1;Q(b)?0<a.ignoreColumn.length&&(-1!==c.inArray(e,a.ignoreColumn)||-1!==c.inArray(e-d,a.ignoreColumn)||R.length>e&&"undefined"!==typeof R[e]&&-1!==c.inArray(R[e],a.ignoreColumn))&&(p=!0):p=!0;return p}function B(b,d,e,p,g){if("function"===typeof g){var l=!1;"function"===typeof a.onIgnoreRow&&(l=a.onIgnoreRow(c(b),e));if(!1===l&&-1===c.inArray(e,a.ignoreRow)&&-1===c.inArray(e-p,a.ignoreRow)&&Q(c(b))){var w=c(b).find(d),q=0;w.each(function(b){var a=
  5237. c(this),d,l=S(this),p=T(this);c.each(F,function(){if(e>=this.s.r&&e<=this.e.r&&q>=this.s.c&&q<=this.e.c)for(d=0;d<=this.e.c-this.s.c;++d)g(null,e,q++)});if(!1===Ea(a,w.length,b)){if(p||l)l=l||1,F.push({s:{r:e,c:q},e:{r:e+(p||1)-1,c:q+l-1}});g(this,e,q++)}if(l)for(d=0;d<l-1;++d)g(null,e,q++)});c.each(F,function(){if(e>=this.s.r&&e<=this.e.r&&q>=this.s.c&&q<=this.e.c)for(aa=0;aa<=this.e.c-this.s.c;++aa)g(null,e,q++)})}}}function pa(b,d){if("string"===a.outputMode)return b.output();if("base64"===a.outputMode)return J(b.output());
  5238. if("window"===a.outputMode)window.URL=window.URL||window.webkitURL,window.open(window.URL.createObjectURL(b.output("blob")));else try{var e=b.output("blob");saveAs(e,a.fileName+".pdf")}catch(p){G(a.fileName+".pdf","data:application/pdf"+(d?"":";base64")+",",d?b.output("blob"):b.output())}}function qa(b,a,e){var d=0;"undefined"!==typeof e&&(d=e.colspan);if(0<=d){for(var g=b.width,c=b.textPos.x,w=a.table.columns.indexOf(a.column),q=1;q<d;q++)g+=a.table.columns[w+q].width;1<d&&("right"===b.styles.halign?
  5239. c=b.textPos.x+g-b.width:"center"===b.styles.halign&&(c=b.textPos.x+(g-b.width)/2));b.width=g;b.textPos.x=c;"undefined"!==typeof e&&1<e.rowspan&&(b.height*=e.rowspan);if("middle"===b.styles.valign||"bottom"===b.styles.valign)e=("string"===typeof b.text?b.text.split(/\r\n|\r|\n/g):b.text).length||1,2<e&&(b.textPos.y-=(2-1.15)/2*a.row.styles.fontSize*(e-2)/3);return!0}return!1}function ra(b,a,e){"undefined"!==typeof e.images&&a.each(function(){var a=c(this).children();if(c(this).is("img")){var d=sa(this.src);
  5240. e.images[d]={url:this.src,src:this.src}}"undefined"!==typeof a&&0<a.length&&ra(b,a,e)})}function Fa(b,a){function d(b){if(b.url){var d=new Image;g=++l;d.crossOrigin="Anonymous";d.onerror=d.onload=function(){if(d.complete&&(0===d.src.indexOf("data:image/")&&(d.width=b.width||d.width||0,d.height=b.height||d.height||0),d.width+d.height)){var e=document.createElement("canvas"),c=e.getContext("2d");e.width=d.width;e.height=d.height;c.drawImage(d,0,0);b.src=e.toDataURL("image/jpeg")}--l||a(g)};d.src=b.url}}
  5241. var c,g=0,l=0;if("undefined"!==typeof b.images)for(c in b.images)b.images.hasOwnProperty(c)&&d(b.images[c]);(b=l)||(a(g),b=void 0);return b}function ta(b,d,e){d.each(function(){var d=c(this).children(),g=0;if(c(this).is("div")){var l=ba(K(this,"background-color"),[255,255,255]),w=ba(K(this,"border-top-color"),[0,0,0]),q=ca(this,"border-top-width",a.jspdf.unit),f=this.getBoundingClientRect(),h=this.offsetLeft*e.dw;g=this.offsetTop*e.dh;var k=f.width*e.dw;f=f.height*e.dh;e.doc.setDrawColor.apply(void 0,
  5242. w);e.doc.setFillColor.apply(void 0,l);e.doc.setLineWidth(q);e.doc.rect(b.x+h,b.y+g,k,f,q?"FD":"F")}else if(c(this).is("img")&&"undefined"!==typeof e.images&&(l=sa(this.src),l=e.images[l],"undefined"!==typeof l)){w=b.width/b.height;q=this.width/this.height;h=b.width;k=b.height;f=19.049976/25.4;q<=w?(k=Math.min(b.height,this.height),h=this.width*k/this.height):q>w&&(h=Math.min(b.width,this.width),k=this.height*h/this.width);h*=f;k*=f;k<b.height&&(g=(b.height-k)/2);try{e.doc.addImage(l.src,b.textPos.x,
  5243. b.y+g,h,k)}catch(Ja){}b.textPos.x+=h}"undefined"!==typeof d&&0<d.length&&ta(b,d,e)})}function ua(b,d,e){if("function"===typeof e.onAutotableText)e.onAutotableText(e.doc,b,d);else{var p=b.textPos.x,g=b.textPos.y,l={halign:b.styles.halign,valign:b.styles.valign};if(d.length){for(d=d[0];d.previousSibling;)d=d.previousSibling;for(var w=!1,q=!1;d;){var f=d.innerText||d.textContent||"",h=f.length&&" "===f[0]?" ":"",k=1<f.length&&" "===f[f.length-1]?" ":"";!0!==a.preserve.leadingWS&&(f=h+ha(f));!0!==a.preserve.trailingWS&&
  5244. (f=ia(f)+k);c(d).is("br")&&(p=b.textPos.x,g+=e.doc.internal.getFontSize());c(d).is("b")?w=!0:c(d).is("i")&&(q=!0);(w||q)&&e.doc.setFontType(w&&q?"bolditalic":w?"bold":"italic");if(h=e.doc.getStringUnitWidth(f)*e.doc.internal.getFontSize()){"linebreak"===b.styles.overflow&&p>b.textPos.x&&p+h>b.textPos.x+b.width&&(0<=".,!%*;:=-".indexOf(f.charAt(0))&&(k=f.charAt(0),h=e.doc.getStringUnitWidth(k)*e.doc.internal.getFontSize(),p+h<=b.textPos.x+b.width&&(e.doc.autoTableText(k,p,g,l),f=f.substring(1,f.length)),
  5245. h=e.doc.getStringUnitWidth(f)*e.doc.internal.getFontSize()),p=b.textPos.x,g+=e.doc.internal.getFontSize());if("visible"!==b.styles.overflow)for(;f.length&&p+h>b.textPos.x+b.width;)f=f.substring(0,f.length-1),h=e.doc.getStringUnitWidth(f)*e.doc.internal.getFontSize();e.doc.autoTableText(f,p,g,l);p+=h}if(w||q)c(d).is("b")?w=!1:c(d).is("i")&&(q=!1),e.doc.setFontType(w||q?w?"bold":"italic":"normal");d=d.nextSibling}b.textPos.x=p;b.textPos.y=g}else e.doc.autoTableText(b.text,b.textPos.x,b.textPos.y,l)}}
  5246. function da(b,a,e){return null==b?"":b.toString().replace(new RegExp(null==a?"":a.toString().replace(/([.*+?^=!:${}()|\[\]\/\\])/g,"\\$1"),"g"),e)}function ha(b){return null==b?"":b.toString().replace(/^\s+/,"")}function ia(b){return null==b?"":b.toString().replace(/\s+$/,"")}function ja(b){b=da(b||"0",a.numbers.html.thousandsSeparator,"");b=da(b,a.numbers.html.decimalMark,".");return"number"===typeof b||!1!==jQuery.isNumeric(b)?b:!1}function Ga(b){-1<b.indexOf("%")?(b=ja(b.replace(/%/g,"")),!1!==
  5247. b&&(b/=100)):b=!1;return b}function z(b,d,e){var p="";if(null!==b){var g=c(b);if(g[0].hasAttribute("data-tableexport-value"))var l=(l=g.data("tableexport-value"))?l+"":"";else if(l=g.html(),"function"===typeof a.onCellHtmlData)l=a.onCellHtmlData(g,d,e,l);else if(""!==l){var f=c.parseHTML(l),q=0,h=0;l="";c.each(f,function(){if(c(this).is("input"))l+=g.find("input").eq(q++).val();else if(c(this).is("select"))l+=g.find("select option:selected").eq(h++).text();else if(c(this).is("br"))l+="<br>";else if("undefined"===
  5248. typeof c(this).html())l+=c(this).text();else if(void 0===jQuery().bootstrapTable||!0!==c(this).hasClass("filterControl")&&0===c(b).parents(".detail-view").length)l+=c(this).html()})}if(!0===a.htmlContent)p=c.trim(l);else if(l&&""!==l)if(""!==c(b).data("tableexport-cellformat")){var k=l.replace(/\n/g,"\u2028").replace(/<br\s*[\/]?>/gi,"\u2060"),m=c("<div/>").html(k).contents();f=!1;k="";c.each(m.text().split("\u2028"),function(b,d){0<b&&(k+=" ");!0!==a.preserve.leadingWS&&(d=ha(d));k+=!0!==a.preserve.trailingWS?
  5249. ia(d):d});c.each(k.split("\u2060"),function(b,d){0<b&&(p+="\n");!0!==a.preserve.leadingWS&&(d=ha(d));!0!==a.preserve.trailingWS&&(d=ia(d));p+=d.replace(/\u00AD/g,"")});p=p.replace(/\u00A0/g," ");if("json"===a.type||"excel"===a.type&&"xmlss"===a.mso.fileFormat||!1===a.numbers.output)f=ja(p),!1!==f&&(p=Number(f));else if(a.numbers.html.decimalMark!==a.numbers.output.decimalMark||a.numbers.html.thousandsSeparator!==a.numbers.output.thousandsSeparator)if(f=ja(p),!1!==f){m=(""+f.substr(0>f?1:0)).split(".");
  5250. 1===m.length&&(m[1]="");var n=3<m[0].length?m[0].length%3:0;p=(0>f?"-":"")+(a.numbers.output.thousandsSeparator?(n?m[0].substr(0,n)+a.numbers.output.thousandsSeparator:"")+m[0].substr(n).replace(/(\d{3})(?=\d)/g,"$1"+a.numbers.output.thousandsSeparator):m[0])+(m[1].length?a.numbers.output.decimalMark+m[1]:"")}}else p=l;!0===a.escape&&(p=escape(p));"function"===typeof a.onCellData&&(p=a.onCellData(g,d,e,p))}return p}function va(b){return 0<b.length&&!0===a.preventInjection&&0<="=+-@".indexOf(b.charAt(0))?
  5251. "'"+b:b}function Ha(b,a,e){return a+"-"+e.toLowerCase()}function ba(b,a){(b=/^rgb\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})\)$/.exec(b))&&(a=[parseInt(b[1]),parseInt(b[2]),parseInt(b[3])]);return a}function wa(b){var a=K(b,"text-align"),e=K(b,"font-weight"),c=K(b,"font-style"),g="";"start"===a&&(a="rtl"===K(b,"direction")?"right":"left");700<=e&&(g="bold");"italic"===c&&(g+=c);""===g&&(g="normal");a={style:{align:a,bcolor:ba(K(b,"background-color"),[255,255,255]),color:ba(K(b,"color"),[0,0,0]),fstyle:g},
  5252. colspan:S(b),rowspan:T(b)};null!==b&&(b=b.getBoundingClientRect(),a.rect={width:b.width,height:b.height});return a}function S(b){var a=c(b).data("tableexport-colspan");"undefined"===typeof a&&c(b).is("[colspan]")&&(a=c(b).attr("colspan"));return parseInt(a)||0}function T(b){var a=c(b).data("tableexport-rowspan");"undefined"===typeof a&&c(b).is("[rowspan]")&&(a=c(b).attr("rowspan"));return parseInt(a)||0}function K(b,a){try{return window.getComputedStyle?(a=a.replace(/([a-z])([A-Z])/,Ha),window.getComputedStyle(b,
  5253. null).getPropertyValue(a)):b.currentStyle?b.currentStyle[a]:b.style[a]}catch(e){}return""}function ca(b,a,e){a=K(b,a).match(/\d+/);if(null!==a){a=a[0];b=b.parentElement;var d=document.createElement("div");d.style.overflow="hidden";d.style.visibility="hidden";b.appendChild(d);d.style.width=100+e;e=100/d.offsetWidth;b.removeChild(d);return a*e}return 0}function ka(){if(!(this instanceof ka))return new ka;this.SheetNames=[];this.Sheets={}}function xa(a){for(var b=new ArrayBuffer(a.length),e=new Uint8Array(b),
  5254. c=0;c!==a.length;++c)e[c]=a.charCodeAt(c)&255;return b}function Ia(a){for(var b={},e={s:{c:1E7,r:1E7},e:{c:0,r:0}},c=0;c!==a.length;++c)for(var g=0;g!==a[c].length;++g){e.s.r>c&&(e.s.r=c);e.s.c>g&&(e.s.c=g);e.e.r<c&&(e.e.r=c);e.e.c<g&&(e.e.c=g);var l={v:a[c][g]};if(null!==l.v){var f=XLSX.utils.encode_cell({c:g,r:c});if("number"===typeof l.v)l.t="n";else if("boolean"===typeof l.v)l.t="b";else if(l.v instanceof Date){l.t="n";l.z=XLSX.SSF._table[14];var h=l;var k=(Date.parse(l.v)-new Date(Date.UTC(1899,
  5255. 11,30)))/864E5;h.v=k}else l.t="s";b[f]=l}}1E7>e.s.c&&(b["!ref"]=XLSX.utils.encode_range(e));return b}function sa(a){var b=0,c;if(0===a.length)return b;var f=0;for(c=a.length;f<c;f++){var g=a.charCodeAt(f);b=(b<<5)-b+g;b|=0}return b}function G(a,d,c){var b=window.navigator.userAgent;if(!1!==a&&window.navigator.msSaveOrOpenBlob)window.navigator.msSaveOrOpenBlob(new Blob([c]),a);else if(!1!==a&&(0<b.indexOf("MSIE ")||b.match(/Trident.*rv\:11\./))){if(d=document.createElement("iframe")){document.body.appendChild(d);
  5256. d.setAttribute("style","display:none");d.contentDocument.open("txt/plain","replace");d.contentDocument.write(c);d.contentDocument.close();d.contentDocument.focus();switch(a.substr(a.lastIndexOf(".")+1)){case "doc":case "json":case "png":case "pdf":case "xls":case "xlsx":a+=".txt"}d.contentDocument.execCommand("SaveAs",!0,a);document.body.removeChild(d)}}else{var g=document.createElement("a");if(g){var e=null;g.style.display="none";!1!==a?g.download=a:g.target="_blank";"object"===typeof c?(window.URL=
  5257. window.URL||window.webkitURL,e=window.URL.createObjectURL(c),g.href=e):0<=d.toLowerCase().indexOf("base64,")?g.href=d+J(c):g.href=d+encodeURIComponent(c);document.body.appendChild(g);if(document.createEvent)null===ea&&(ea=document.createEvent("MouseEvents")),ea.initEvent("click",!0,!1),g.dispatchEvent(ea);else if(document.createEventObject)g.fireEvent("onclick");else if("function"===typeof g.onclick)g.onclick();setTimeout(function(){e&&window.URL.revokeObjectURL(e);document.body.removeChild(g)},100)}}}
  5258. function J(a){var b,c="",f=0;if("string"===typeof a){a=a.replace(/\x0d\x0a/g,"\n");var g="";for(b=0;b<a.length;b++){var l=a.charCodeAt(b);128>l?g+=String.fromCharCode(l):(127<l&&2048>l?g+=String.fromCharCode(l>>6|192):(g+=String.fromCharCode(l>>12|224),g+=String.fromCharCode(l>>6&63|128)),g+=String.fromCharCode(l&63|128))}a=g}for(;f<a.length;){var h=a.charCodeAt(f++);g=a.charCodeAt(f++);b=a.charCodeAt(f++);l=h>>2;h=(h&3)<<4|g>>4;var k=(g&15)<<2|b>>6;var m=b&63;isNaN(g)?k=m=64:isNaN(b)&&(m=64);c=c+
  5259. "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(l)+"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(h)+"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(k)+"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(m)}return c}var a={csvEnclosure:'"',csvSeparator:",",csvUseBOM:!0,displayTableName:!1,escape:!1,exportHiddenCells:!1,fileName:"tableExport",htmlContent:!1,ignoreColumn:[],ignoreRow:[],jsonScope:"all",
  5260. jspdf:{orientation:"p",unit:"pt",format:"a4",margins:{left:20,right:10,top:10,bottom:10},onDocCreated:null,autotable:{styles:{cellPadding:2,rowHeight:12,fontSize:8,fillColor:255,textColor:50,fontStyle:"normal",overflow:"ellipsize",halign:"inherit",valign:"middle"},headerStyles:{fillColor:[52,73,94],textColor:255,fontStyle:"bold",halign:"inherit",valign:"middle"},alternateRowStyles:{fillColor:245},tableExport:{doc:null,onAfterAutotable:null,onBeforeAutotable:null,onAutotableText:null,onTable:null,
  5261. outputImages:!0}}},maxNestedTables:1,mso:{fileFormat:"xlshtml",onMsoNumberFormat:null,pageFormat:"a4",pageOrientation:"portrait",rtl:!1,styles:[],worksheetName:""},numbers:{html:{decimalMark:".",thousandsSeparator:","},output:{decimalMark:".",thousandsSeparator:","}},onCellData:null,onCellHtmlData:null,onIgnoreRow:null,outputMode:"file",pdfmake:{enabled:!1,docDefinition:{pageOrientation:"portrait",defaultStyle:{font:"Roboto"}},fonts:{}},preserve:{leadingWS:!1,trailingWS:!1},preventInjection:!0,tbodySelector:"tr",
  5262. tfootSelector:"tr",theadSelector:"tr",tableName:"Table",type:"csv"},L={a0:[2383.94,3370.39],a1:[1683.78,2383.94],a2:[1190.55,1683.78],a3:[841.89,1190.55],a4:[595.28,841.89],a5:[419.53,595.28],a6:[297.64,419.53],a7:[209.76,297.64],a8:[147.4,209.76],a9:[104.88,147.4],a10:[73.7,104.88],b0:[2834.65,4008.19],b1:[2004.09,2834.65],b2:[1417.32,2004.09],b3:[1000.63,1417.32],b4:[708.66,1000.63],b5:[498.9,708.66],b6:[354.33,498.9],b7:[249.45,354.33],b8:[175.75,249.45],b9:[124.72,175.75],b10:[87.87,124.72],c0:[2599.37,
  5263. 3676.54],c1:[1836.85,2599.37],c2:[1298.27,1836.85],c3:[918.43,1298.27],c4:[649.13,918.43],c5:[459.21,649.13],c6:[323.15,459.21],c7:[229.61,323.15],c8:[161.57,229.61],c9:[113.39,161.57],c10:[79.37,113.39],dl:[311.81,623.62],letter:[612,792],"government-letter":[576,756],legal:[612,1008],"junior-legal":[576,360],ledger:[1224,792],tabloid:[792,1224],"credit-card":[153,243]},v=this,ea=null,r=[],t=[],m=0,n="",R=[],F=[],I=[],U=!1;c.extend(!0,a,h);"xlsx"===a.type&&(a.mso.fileFormat=a.type,a.type="excel");
  5264. "undefined"!==typeof a.excelFileFormat&&"undefined"===a.mso.fileFormat&&(a.mso.fileFormat=a.excelFileFormat);"undefined"!==typeof a.excelPageFormat&&"undefined"===a.mso.pageFormat&&(a.mso.pageFormat=a.excelPageFormat);"undefined"!==typeof a.excelPageOrientation&&"undefined"===a.mso.pageOrientation&&(a.mso.pageOrientation=a.excelPageOrientation);"undefined"!==typeof a.excelRTL&&"undefined"===a.mso.rtl&&(a.mso.rtl=a.excelRTL);"undefined"!==typeof a.excelstyles&&"undefined"===a.mso.styles&&(a.mso.styles=
  5265. a.excelstyles);"undefined"!==typeof a.onMsoNumberFormat&&"undefined"===a.mso.onMsoNumberFormat&&(a.mso.onMsoNumberFormat=a.onMsoNumberFormat);"undefined"!==typeof a.worksheetName&&"undefined"===a.mso.worksheetName&&(a.mso.worksheetName=a.worksheetName);a.mso.pageOrientation="l"===a.mso.pageOrientation.substr(0,1)?"landscape":"portrait";a.maxNestedTables=0<=a.maxNestedTables?a.maxNestedTables:1;R=P(v);if("csv"===a.type||"tsv"===a.type||"txt"===a.type){var M="",X=0;F=[];m=0;var la=function(b,d,e){b.each(function(){n=
  5266. "";B(this,d,m,e+b.length,function(b,c,d){var e=n,g="";if(null!==b)if(b=z(b,c,d),c=null===b||""===b?"":b.toString(),"tsv"===a.type)b instanceof Date&&b.toLocaleString(),g=da(c,"\t"," ");else if(b instanceof Date)g=a.csvEnclosure+b.toLocaleString()+a.csvEnclosure;else if(g=va(c),g=da(g,a.csvEnclosure,a.csvEnclosure+a.csvEnclosure),0<=g.indexOf(a.csvSeparator)||/[\r\n ]/g.test(g))g=a.csvEnclosure+g+a.csvEnclosure;n=e+(g+("tsv"===a.type?"\t":a.csvSeparator))});n=c.trim(n).substring(0,n.length-1);0<n.length&&
  5267. (0<M.length&&(M+="\n"),M+=n);m++});return b.length};X+=la(c(v).find("thead").first().find(a.theadSelector),"th,td",X);C(c(v),"tbody").each(function(){X+=la(D(c(this),a.tbodySelector),"td,th",X)});a.tfootSelector.length&&la(c(v).find("tfoot").first().find(a.tfootSelector),"td,th",X);M+="\n";if("string"===a.outputMode)return M;if("base64"===a.outputMode)return J(M);if("window"===a.outputMode){G(!1,"data:text/"+("csv"===a.type?"csv":"plain")+";charset=utf-8,",M);return}try{var A=new Blob([M],{type:"text/"+
  5268. ("csv"===a.type?"csv":"plain")+";charset=utf-8"});saveAs(A,a.fileName+"."+a.type,"csv"!==a.type||!1===a.csvUseBOM)}catch(b){G(a.fileName+"."+a.type,"data:text/"+("csv"===a.type?"csv":"plain")+";charset=utf-8,"+("csv"===a.type&&a.csvUseBOM?"\ufeff":""),M)}}else if("sql"===a.type){m=0;F=[];var x="INSERT INTO `"+a.tableName+"` (";r=c(v).find("thead").first().find(a.theadSelector);r.each(function(){B(this,"th,td",m,r.length,function(a,c,e){x+="'"+z(a,c,e)+"',"});m++;x=c.trim(x).substring(0,x.length-1)});
  5269. x+=") VALUES ";t=u(c(v));c(t).each(function(){n="";B(this,"td,th",m,r.length+t.length,function(a,c,e){n+="'"+z(a,c,e)+"',"});3<n.length&&(x+="("+n,x=c.trim(x).substring(0,x.length-1),x+="),");m++});x=c.trim(x).substring(0,x.length-1);x+=";";if("string"===a.outputMode)return x;if("base64"===a.outputMode)return J(x);try{A=new Blob([x],{type:"text/plain;charset=utf-8"}),saveAs(A,a.fileName+".sql")}catch(b){G(a.fileName+".sql","data:application/sql;charset=utf-8,",x)}}else if("json"===a.type){var V=[];
  5270. F=[];r=c(v).find("thead").first().find(a.theadSelector);r.each(function(){var a=[];B(this,"th,td",m,r.length,function(b,c,f){a.push(z(b,c,f))});V.push(a)});var ma=[];t=u(c(v));c(t).each(function(){var a={},d=0;B(this,"td,th",m,r.length+t.length,function(b,c,g){V.length?a[V[V.length-1][d]]=z(b,c,g):a[d]=z(b,c,g);d++});!1===c.isEmptyObject(a)&&ma.push(a);m++});h="";h="head"===a.jsonScope?JSON.stringify(V):"data"===a.jsonScope?JSON.stringify(ma):JSON.stringify({header:V,data:ma});if("string"===a.outputMode)return h;
  5271. if("base64"===a.outputMode)return J(h);try{A=new Blob([h],{type:"application/json;charset=utf-8"}),saveAs(A,a.fileName+".json")}catch(b){G(a.fileName+".json","data:application/json;charset=utf-8;base64,",h)}}else if("xml"===a.type){m=0;F=[];var N='<?xml version="1.0" encoding="utf-8"?>';N+="<tabledata><fields>";r=c(v).find("thead").first().find(a.theadSelector);r.each(function(){B(this,"th,td",m,r.length,function(a,c,e){N+="<field>"+z(a,c,e)+"</field>"});m++});N+="</fields><data>";var ya=1;t=u(c(v));
  5272. c(t).each(function(){var a=1;n="";B(this,"td,th",m,r.length+t.length,function(b,c,f){n+="<column-"+a+">"+z(b,c,f)+"</column-"+a+">";a++});0<n.length&&"<column-1></column-1>"!==n&&(N+='<row id="'+ya+'">'+n+"</row>",ya++);m++});N+="</data></tabledata>";if("string"===a.outputMode)return N;if("base64"===a.outputMode)return J(N);try{A=new Blob([N],{type:"application/xml;charset=utf-8"}),saveAs(A,a.fileName+".xml")}catch(b){G(a.fileName+".xml","data:application/xml;charset=utf-8;base64,",N)}}else if("excel"===
  5273. a.type&&"xmlss"===a.mso.fileFormat){var na=[],E=[];c(v).filter(function(){return Q(c(this))}).each(function(){function b(a,b,d){var g=[];c(a).each(function(){var b=0,e=0;n="";B(this,"td,th",m,d+a.length,function(a,d,l){if(null!==a){var f="";d=z(a,d,l);l="String";if(!1!==jQuery.isNumeric(d))l="Number";else{var h=Ga(d);!1!==h&&(d=h,l="Number",f+=' ss:StyleID="pct1"')}"Number"!==l&&(d=d.replace(/\n/g,"<br>"));h=S(a);a=T(a);c.each(g,function(){if(m>=this.s.r&&m<=this.e.r&&e>=this.s.c&&e<=this.e.c)for(var a=
  5274. 0;a<=this.e.c-this.s.c;++a)e++,b++});if(a||h)a=a||1,h=h||1,g.push({s:{r:m,c:e},e:{r:m+a-1,c:e+h-1}});1<h&&(f+=' ss:MergeAcross="'+(h-1)+'"',e+=h-1);1<a&&(f+=' ss:MergeDown="'+(a-1)+'" ss:StyleID="rsp1"');0<b&&(f+=' ss:Index="'+(e+1)+'"',b=0);n+="<Cell"+f+'><Data ss:Type="'+l+'">'+c("<div />").text(d).html()+"</Data></Cell>\r";e++}});0<n.length&&(H+='<Row ss:AutoFitHeight="0">\r'+n+"</Row>\r");m++});return a.length}var d=c(this),e="";"string"===typeof a.mso.worksheetName&&a.mso.worksheetName.length?
  5275. e=a.mso.worksheetName+" "+(E.length+1):"undefined"!==typeof a.mso.worksheetName[E.length]&&(e=a.mso.worksheetName[E.length]);e.length||(e=d.find("caption").text()||"");e.length||(e="Table "+(E.length+1));e=c.trim(e.replace(/[\\\/[\]*:?'"]/g,"").substring(0,31));E.push(c("<div />").text(e).html());!1===a.exportHiddenCells&&(I=d.find("tr, th, td").filter(":hidden"),U=0<I.length);m=0;R=P(this);H="<Table>\r";e=0;e+=b(d.find("thead").first().find(a.theadSelector),"th,td",e);b(u(d),"td,th",e);H+="</Table>\r";
  5276. na.push(H)});h={};for(var y={},k,O,W=0,aa=E.length;W<aa;W++)k=E[W],O=h[k],O=h[k]=null==O?1:O+1,2===O&&(E[y[k]]=E[y[k]].substring(0,29)+"-1"),1<h[k]?E[W]=E[W].substring(0,29)+"-"+h[k]:y[k]=W;h='<?xml version="1.0" encoding="UTF-8"?>\r<?mso-application progid="Excel.Sheet"?>\r<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"\r xmlns:o="urn:schemas-microsoft-com:office:office"\r xmlns:x="urn:schemas-microsoft-com:office:excel"\r xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"\r xmlns:html="http://www.w3.org/TR/REC-html40">\r<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">\r <Created>'+
  5277. (new Date).toISOString()+'</Created>\r</DocumentProperties>\r<OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">\r <AllowPNG/>\r</OfficeDocumentSettings>\r<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">\r <WindowHeight>9000</WindowHeight>\r <WindowWidth>13860</WindowWidth>\r <WindowTopX>0</WindowTopX>\r <WindowTopY>0</WindowTopY>\r <ProtectStructure>False</ProtectStructure>\r <ProtectWindows>False</ProtectWindows>\r</ExcelWorkbook>\r<Styles>\r <Style ss:ID="Default" ss:Name="Normal">\r <Alignment ss:Vertical="Bottom"/>\r <Borders/>\r <Font/>\r <Interior/>\r <NumberFormat/>\r <Protection/>\r </Style>\r <Style ss:ID="rsp1">\r <Alignment ss:Vertical="Center"/>\r </Style>\r <Style ss:ID="pct1">\r <NumberFormat ss:Format="Percent"/>\r </Style>\r</Styles>\r';
  5278. for(y=0;y<na.length;y++)h+='<Worksheet ss:Name="'+E[y]+'" ss:RightToLeft="'+(a.mso.rtl?"1":"0")+'">\r'+na[y],h=a.mso.rtl?h+'<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">\r<DisplayRightToLeft/>\r</WorksheetOptions>\r':h+'<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel"/>\r',h+="</Worksheet>\r";h+="</Workbook>\r";if("string"===a.outputMode)return h;if("base64"===a.outputMode)return J(h);try{A=new Blob([h],{type:"application/xml;charset=utf-8"}),saveAs(A,a.fileName+
  5279. ".xml")}catch(b){G(a.fileName+".xml","data:application/xml;charset=utf-8;base64,",h)}}else if("excel"===a.type&&"xlsx"===a.mso.fileFormat){var za=[],oa=[];m=0;t=c(v).find("thead").first().find(a.theadSelector).toArray();t.push.apply(t,u(c(v)));c(t).each(function(){var b=[];B(this,"th,td",m,t.length,function(d,e,f){if("undefined"!==typeof d&&null!==d){f=z(d,e,f);e=S(d);d=T(d);c.each(oa,function(){if(m>=this.s.r&&m<=this.e.r&&b.length>=this.s.c&&b.length<=this.e.c)for(var a=0;a<=this.e.c-this.s.c;++a)b.push(null)});
  5280. if(d||e)e=e||1,oa.push({s:{r:m,c:b.length},e:{r:m+(d||1)-1,c:b.length+e-1}});"function"!==typeof a.onCellData&&""!==f&&f===+f&&(f=+f);b.push(""!==f?f:null);if(e)for(d=0;d<e-1;++d)b.push(null)}});za.push(b);m++});h=new ka;y=Ia(za);y["!merges"]=oa;XLSX.utils.book_append_sheet(h,y,a.mso.worksheetName);h=XLSX.write(h,{type:"binary",bookType:a.mso.fileFormat,bookSST:!1});try{A=new Blob([xa(h)],{type:"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8"}),saveAs(A,a.fileName+
  5281. "."+a.mso.fileFormat)}catch(b){G(a.fileName+"."+a.mso.fileFormat,"data:application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8,",xa(h))}}else if("excel"===a.type||"xls"===a.type||"word"===a.type||"doc"===a.type){h="excel"===a.type||"xls"===a.type?"excel":"word";y="excel"===h?"xls":"doc";k='xmlns:x="urn:schemas-microsoft-com:office:'+h+'"';var H="",Y="";c(v).filter(function(){return Q(c(this))}).each(function(){var b=c(this);""===Y&&(Y=a.mso.worksheetName||b.find("caption").text()||
  5282. "Table",Y=c.trim(Y.replace(/[\\\/[\]*:?'"]/g,"").substring(0,31)));!1===a.exportHiddenCells&&(I=b.find("tr, th, td").filter(":hidden"),U=0<I.length);m=0;F=[];R=P(this);H+="<table><thead>";r=b.find("thead").first().find(a.theadSelector);r.each(function(){n="";B(this,"th,td",m,r.length,function(b,e,f){if(null!==b){var d="";n+="<th";for(var l in a.mso.styles)if(a.mso.styles.hasOwnProperty(l)){var h=c(b).css(a.mso.styles[l]);""!==h&&"0px none rgb(0, 0, 0)"!==h&&"rgba(0, 0, 0, 0)"!==h&&(d+=""===d?'style="':
  5283. ";",d+=a.mso.styles[l]+":"+h)}""!==d&&(n+=" "+d+'"');d=S(b);0<d&&(n+=' colspan="'+d+'"');d=T(b);0<d&&(n+=' rowspan="'+d+'"');n+=">"+z(b,e,f)+"</th>"}});0<n.length&&(H+="<tr>"+n+"</tr>");m++});H+="</thead><tbody>";t=u(b);c(t).each(function(){var b=c(this);n="";B(this,"td,th",m,r.length+t.length,function(d,f,g){if(null!==d){var e=z(d,f,g),h="",k=c(d).data("tableexport-msonumberformat");"undefined"===typeof k&&"function"===typeof a.mso.onMsoNumberFormat&&(k=a.mso.onMsoNumberFormat(d,f,g));"undefined"!==
  5284. typeof k&&""!==k&&(h="style=\"mso-number-format:'"+k+"'");for(var m in a.mso.styles)a.mso.styles.hasOwnProperty(m)&&(k=c(d).css(a.mso.styles[m]),""===k&&(k=b.css(a.mso.styles[m])),""!==k&&"0px none rgb(0, 0, 0)"!==k&&"rgba(0, 0, 0, 0)"!==k&&(h+=""===h?'style="':";",h+=a.mso.styles[m]+":"+k));n+="<td";""!==h&&(n+=" "+h+'"');f=S(d);0<f&&(n+=' colspan="'+f+'"');d=T(d);0<d&&(n+=' rowspan="'+d+'"');"string"===typeof e&&""!==e&&(e=va(e),e=e.replace(/\n/g,"<br>"));n+=">"+e+"</td>"}});0<n.length&&(H+="<tr>"+
  5285. n+"</tr>");m++});a.displayTableName&&(H+="<tr><td></td></tr><tr><td></td></tr><tr><td>"+z(c("<p>"+a.tableName+"</p>"))+"</td></tr>");H+="</tbody></table>"});k='<html xmlns:o="urn:schemas-microsoft-com:office:office" '+k+' xmlns="http://www.w3.org/TR/REC-html40">'+('<meta http-equiv="content-type" content="application/vnd.ms-'+h+'; charset=UTF-8">')+"<head>";"excel"===h&&(k+="\x3c!--[if gte mso 9]>",k+="<xml>",k+="<x:ExcelWorkbook>",k+="<x:ExcelWorksheets>",k+="<x:ExcelWorksheet>",k+="<x:Name>",k+=
  5286. Y,k+="</x:Name>",k+="<x:WorksheetOptions>",k+="<x:DisplayGridlines/>",a.mso.rtl&&(k+="<x:DisplayRightToLeft/>"),k+="</x:WorksheetOptions>",k+="</x:ExcelWorksheet>",k+="</x:ExcelWorksheets>",k+="</x:ExcelWorkbook>",k+="</xml>",k+="<![endif]--\x3e");k+="<style>";k+="@page { size:"+a.mso.pageOrientation+"; mso-page-orientation:"+a.mso.pageOrientation+"; }";k+="@page Section1 {size:"+L[a.mso.pageFormat][0]+"pt "+L[a.mso.pageFormat][1]+"pt";k+="; margin:1.0in 1.25in 1.0in 1.25in;mso-header-margin:.5in;mso-footer-margin:.5in;mso-paper-source:0;}";
  5287. k+="div.Section1 {page:Section1;}";k+="@page Section2 {size:"+L[a.mso.pageFormat][1]+"pt "+L[a.mso.pageFormat][0]+"pt";k+=";mso-page-orientation:"+a.mso.pageOrientation+";margin:1.25in 1.0in 1.25in 1.0in;mso-header-margin:.5in;mso-footer-margin:.5in;mso-paper-source:0;}";k+="div.Section2 {page:Section2;}";k+="br {mso-data-placement:same-cell;}";k+="</style>";k+="</head>";k+="<body>";k+='<div class="Section'+("landscape"===a.mso.pageOrientation?"2":"1")+'">';k+=H;k+="</div>";k+="</body>";k+="</html>";
  5288. if("string"===a.outputMode)return k;if("base64"===a.outputMode)return J(k);try{A=new Blob([k],{type:"application/vnd.ms-"+a.type}),saveAs(A,a.fileName+"."+y)}catch(b){G(a.fileName+"."+y,"data:application/vnd.ms-"+h+";base64,",k)}}else if("png"===a.type)html2canvas(c(v)[0]).then(function(b){b=b.toDataURL();for(var c=atob(b.substring(22)),e=new ArrayBuffer(c.length),f=new Uint8Array(e),g=0;g<c.length;g++)f[g]=c.charCodeAt(g);if("string"===a.outputMode)return c;if("base64"===a.outputMode)return J(b);
  5289. if("window"===a.outputMode)window.open(b);else try{A=new Blob([e],{type:"image/png"}),saveAs(A,a.fileName+".png")}catch(l){G(a.fileName+".png","data:image/png,",A)}});else if("pdf"===a.type)if(!0===a.pdfmake.enabled){h=[];var Aa=[];m=0;F=[];y=function(a,d,e){var b=0;c(a).each(function(){var a=[];B(this,d,m,e,function(b,c,d){if("undefined"!==typeof b&&null!==b){var e=S(b),g=T(b);b=z(b,c,d)||" ";1<e||1<g?a.push({colSpan:e||1,rowSpan:g||1,text:b}):a.push(b)}else a.push(" ")});a.length&&Aa.push(a);b<
  5290. a.length&&(b=a.length);m++});return b};r=c(this).find("thead").first().find(a.theadSelector);k=y(r,"th,td",r.length);for(O=h.length;O<k;O++)h.push("*");t=u(c(this));y(t,"th,td",r.length+t.length);h={content:[{table:{headerRows:r.length,widths:h,body:Aa}}]};c.extend(!0,h,a.pdfmake.docDefinition);pdfMake.fonts={Roboto:{normal:"Roboto-Regular.ttf",bold:"Roboto-Medium.ttf",italics:"Roboto-Italic.ttf",bolditalics:"Roboto-MediumItalic.ttf"}};c.extend(!0,pdfMake.fonts,a.pdfmake.fonts);pdfMake.createPdf(h).getBuffer(function(b){try{var c=
  5291. new Blob([b],{type:"application/pdf"});saveAs(c,a.fileName+".pdf")}catch(e){G(a.fileName+".pdf","data:application/pdf;base64,",b)}})}else if(!1===a.jspdf.autotable){h={dim:{w:ca(c(v).first().get(0),"width","mm"),h:ca(c(v).first().get(0),"height","mm")},pagesplit:!1};var Ba=new jsPDF(a.jspdf.orientation,a.jspdf.unit,a.jspdf.format);Ba.addHTML(c(v).first(),a.jspdf.margins.left,a.jspdf.margins.top,h,function(){pa(Ba,!1)})}else{var f=a.jspdf.autotable.tableExport;if("string"===typeof a.jspdf.format&&
  5292. "bestfit"===a.jspdf.format.toLowerCase()){var fa="",Z="",Ca=0;c(v).each(function(){if(Q(c(this))){var a=ca(c(this).get(0),"width","pt");if(a>Ca){a>L.a0[0]&&(fa="a0",Z="l");for(var d in L)L.hasOwnProperty(d)&&L[d][1]>a&&(fa=d,Z="l",L[d][0]>a&&(Z="p"));Ca=a}}});a.jspdf.format=""===fa?"a4":fa;a.jspdf.orientation=""===Z?"w":Z}if(null==f.doc&&(f.doc=new jsPDF(a.jspdf.orientation,a.jspdf.unit,a.jspdf.format),"function"===typeof a.jspdf.onDocCreated))a.jspdf.onDocCreated(f.doc);!0===f.outputImages&&(f.images=
  5293. {});"undefined"!==typeof f.images&&(c(v).filter(function(){return Q(c(this))}).each(function(){var b=0;F=[];!1===a.exportHiddenCells&&(I=c(this).find("tr, th, td").filter(":hidden"),U=0<I.length);r=c(this).find("thead").find(a.theadSelector);t=u(c(this));c(t).each(function(){B(this,"td,th",r.length+b,r.length+t.length,function(a){if("undefined"!==typeof a&&null!==a){var b=c(a).children();"undefined"!==typeof b&&0<b.length&&ra(a,b,f)}});b++})}),r=[],t=[]);Fa(f,function(){c(v).filter(function(){return Q(c(this))}).each(function(){var b;
  5294. m=0;F=[];!1===a.exportHiddenCells&&(I=c(this).find("tr, th, td").filter(":hidden"),U=0<I.length);R=P(this);f.columns=[];f.rows=[];f.rowoptions={};if("function"===typeof f.onTable&&!1===f.onTable(c(this),a))return!0;a.jspdf.autotable.tableExport=null;var d=c.extend(!0,{},a.jspdf.autotable);a.jspdf.autotable.tableExport=f;d.margin={};c.extend(!0,d.margin,a.jspdf.margins);d.tableExport=f;"function"!==typeof d.beforePageContent&&(d.beforePageContent=function(a){if(1===a.pageCount){var b=a.table.rows.concat(a.table.headerRow);
  5295. c.each(b,function(){0<this.height&&(this.height+=(2-1.15)/2*this.styles.fontSize,a.table.height+=(2-1.15)/2*this.styles.fontSize)})}});"function"!==typeof d.createdHeaderCell&&(d.createdHeaderCell=function(a,b){a.styles=c.extend({},b.row.styles);if("undefined"!==typeof f.columns[b.column.dataKey]){var e=f.columns[b.column.dataKey];if("undefined"!==typeof e.rect){a.contentWidth=e.rect.width;if("undefined"===typeof f.heightRatio||0===f.heightRatio){var g=b.row.raw[b.column.dataKey].rowspan?b.row.raw[b.column.dataKey].rect.height/
  5296. b.row.raw[b.column.dataKey].rowspan:b.row.raw[b.column.dataKey].rect.height;f.heightRatio=a.styles.rowHeight/g}g=b.row.raw[b.column.dataKey].rect.height*f.heightRatio;g>a.styles.rowHeight&&(a.styles.rowHeight=g)}a.styles.halign="inherit"===d.headerStyles.halign?"center":d.headerStyles.halign;a.styles.valign=d.headerStyles.valign;"undefined"!==typeof e.style&&!0!==e.style.hidden&&("inherit"===d.headerStyles.halign&&(a.styles.halign=e.style.align),"inherit"===d.styles.fillColor&&(a.styles.fillColor=
  5297. e.style.bcolor),"inherit"===d.styles.textColor&&(a.styles.textColor=e.style.color),"inherit"===d.styles.fontStyle&&(a.styles.fontStyle=e.style.fstyle))}});"function"!==typeof d.createdCell&&(d.createdCell=function(a,b){b=f.rowoptions[b.row.index+":"+b.column.dataKey];a.styles.halign="inherit"===d.styles.halign?"center":d.styles.halign;a.styles.valign=d.styles.valign;"undefined"!==typeof b&&"undefined"!==typeof b.style&&!0!==b.style.hidden&&("inherit"===d.styles.halign&&(a.styles.halign=b.style.align),
  5298. "inherit"===d.styles.fillColor&&(a.styles.fillColor=b.style.bcolor),"inherit"===d.styles.textColor&&(a.styles.textColor=b.style.color),"inherit"===d.styles.fontStyle&&(a.styles.fontStyle=b.style.fstyle))});"function"!==typeof d.drawHeaderCell&&(d.drawHeaderCell=function(a,b){var c=f.columns[b.column.dataKey];return(!0!==c.style.hasOwnProperty("hidden")||!0!==c.style.hidden)&&0<=c.rowIndex?qa(a,b,c):!1});"function"!==typeof d.drawCell&&(d.drawCell=function(a,b){var c=f.rowoptions[b.row.index+":"+b.column.dataKey];
  5299. if(qa(a,b,c))if(f.doc.rect(a.x,a.y,a.width,a.height,a.styles.fillStyle),"undefined"!==typeof c&&"undefined"!==typeof c.kids&&0<c.kids.length){b=a.height/c.rect.height;if(b>f.dh||"undefined"===typeof f.dh)f.dh=b;f.dw=a.width/c.rect.width;b=a.textPos.y;ta(a,c.kids,f);a.textPos.y=b;ua(a,c.kids,f)}else ua(a,{},f);return!1});f.headerrows=[];r=c(this).find("thead").find(a.theadSelector);r.each(function(){b=0;f.headerrows[m]=[];B(this,"th,td",m,r.length,function(a,c,d){var e=wa(a);e.title=z(a,c,d);e.key=
  5300. b++;e.rowIndex=m;f.headerrows[m].push(e)});m++});if(0<m)for(var e=m-1;0<=e;)c.each(f.headerrows[e],function(){var a=this;0<e&&null===this.rect&&(a=f.headerrows[e-1][this.key]);null!==a&&0<=a.rowIndex&&(!0!==a.style.hasOwnProperty("hidden")||!0!==a.style.hidden)&&f.columns.push(a)}),e=0<f.columns.length?-1:e-1;var h=0;t=[];t=u(c(this));c(t).each(function(){var a=[];b=0;B(this,"td,th",m,r.length+t.length,function(d,e,g){if("undefined"===typeof f.columns[b]){var k={title:"",key:b,style:{hidden:!0}};
  5301. f.columns.push(k)}"undefined"!==typeof d&&null!==d?(k=wa(d),k.kids=c(d).children()):(k=c.extend(!0,{},f.rowoptions[h+":"+(b-1)]),k.colspan=-1);f.rowoptions[h+":"+b++]=k;a.push(z(d,e,g))});a.length&&(f.rows.push(a),h++);m++});if("function"===typeof f.onBeforeAutotable)f.onBeforeAutotable(c(this),f.columns,f.rows,d);f.doc.autoTable(f.columns,f.rows,d);if("function"===typeof f.onAfterAutotable)f.onAfterAutotable(c(this),d);a.jspdf.autotable.startY=f.doc.autoTableEndPosY()+d.margin.top});pa(f.doc,"undefined"!==
  5302. typeof f.images&&!1===jQuery.isEmptyObject(f.images));"undefined"!==typeof f.headerrows&&(f.headerrows.length=0);"undefined"!==typeof f.columns&&(f.columns.length=0);"undefined"!==typeof f.rows&&(f.rows.length=0);delete f.doc;f.doc=null})}return this}})(jQuery);
  5303. define("tableexport", ["jquery"], (function (global) {
  5304. return function () {
  5305. var ret, fn;
  5306. return ret || global.$.fn.extend;
  5307. };
  5308. }(this)));
  5309. /*
  5310. * bootstrap-table - v1.11.1 - 2017-02-22
  5311. * https://github.com/wenzhixin/bootstrap-table
  5312. * Copyright (c) 2017 zhixin wen
  5313. * Licensed MIT License
  5314. */
  5315. !function(a){"use strict";var b=a.fn.bootstrapTable.utils.sprintf,c={json:"JSON",xml:"XML",png:"PNG",csv:"CSV",txt:"TXT",sql:"SQL",doc:"MS-Word",excel:"MS-Excel",xlsx:"MS-Excel (OpenXML)",powerpoint:"MS-Powerpoint",pdf:"PDF"};a.extend(a.fn.bootstrapTable.defaults,{showExport:!1,exportDataType:"basic",exportTypes:["json","xml","csv","txt","sql","excel"],exportOptions:{}}),a.extend(a.fn.bootstrapTable.defaults.icons,{"export":"glyphicon-export icon-share"}),a.extend(a.fn.bootstrapTable.locales,{formatExport:function(){return"Export data"}}),a.extend(a.fn.bootstrapTable.defaults,a.fn.bootstrapTable.locales);var d=a.fn.bootstrapTable.Constructor,e=d.prototype.initToolbar;d.prototype.initToolbar=function(){if(this.showToolbar=this.options.showExport,e.apply(this,Array.prototype.slice.apply(arguments)),this.options.showExport){var d=this,f=this.$toolbar.find(">.btn-group"),g=f.find("div.export");if(!g.length){g=a(['<div class="export btn-group">','<button class="btn'+b(" btn-%s",this.options.buttonsClass)+b(" btn-%s",this.options.iconSize)+' dropdown-toggle" aria-label="export type" title="'+this.options.formatExport()+'" data-toggle="dropdown" type="button">',b('<i class="%s %s"></i> ',this.options.iconsPrefix,this.options.icons["export"]),'<span class="caret"></span>',"</button>",'<ul class="dropdown-menu" role="menu">',"</ul>","</div>"].join("")).appendTo(f);var h=g.find(".dropdown-menu"),i=this.options.exportTypes;if("string"==typeof this.options.exportTypes){var j=this.options.exportTypes.slice(1,-1).replace(/ /g,"").split(",");i=[],a.each(j,function(a,b){i.push(b.slice(1,-1))})}a.each(i,function(a,b){c.hasOwnProperty(b)&&h.append(['<li role="menuitem" data-type="'+b+'">','<a href="javascript:void(0)">',c[b],"</a>","</li>"].join(""))}),h.find("li").click(function(){var b=a(this).data("type"),c=function(){d.$el.tableExport(a.extend({},d.options.exportOptions,{type:b,escape:!1}))};if("all"===d.options.exportDataType&&d.options.pagination)d.$el.one("server"===d.options.sidePagination?"post-body.bs.table":"page-change.bs.table",function(){c(),d.togglePagination()}),d.togglePagination();else if("selected"===d.options.exportDataType){var e=d.getData(),f=d.getAllSelections();"server"===d.options.sidePagination&&(e={total:d.options.totalRows},e[d.options.dataField]=d.getData(),f={total:d.options.totalRows},f[d.options.dataField]=d.getAllSelections()),d.load(f),c(),d.load(e)}else c()})}}}}(jQuery);
  5316. define("bootstrap-table-export", ["bootstrap-table","tableexport"], (function (global) {
  5317. return function () {
  5318. var ret, fn;
  5319. return ret || global.$.fn.bootstrapTable.defaults;
  5320. };
  5321. }(this)));
  5322. /**
  5323. * mOxie - multi-runtime File API & XMLHttpRequest L2 Polyfill
  5324. * v1.5.2
  5325. *
  5326. * Copyright 2013, Moxiecode Systems AB
  5327. * Released under GPL License.
  5328. *
  5329. * License: http://www.plupload.com/license
  5330. * Contributing: http://www.plupload.com/contributing
  5331. *
  5332. * Date: 2016-11-23
  5333. */
  5334. !function(e,t){var i=function(){var e={};return t.apply(e,arguments),e.moxie};"function"==typeof define&&define.amd?define("moxie",[],i):"object"==typeof module&&module.exports?module.exports=i():e.moxie=i()}(this||window,function(){!function(e,t){"use strict";function i(e,t){for(var i,n=[],r=0;r<e.length;++r){if(i=s[e[r]]||o(e[r]),!i)throw"module definition dependecy not found: "+e[r];n.push(i)}t.apply(null,n)}function n(e,n,r){if("string"!=typeof e)throw"invalid module definition, module id must be defined and be a string";if(n===t)throw"invalid module definition, dependencies must be specified";if(r===t)throw"invalid module definition, definition function must be specified";i(n,function(){s[e]=r.apply(null,arguments)})}function r(e){return!!s[e]}function o(t){for(var i=e,n=t.split(/[.\/]/),r=0;r<n.length;++r){if(!i[n[r]])return;i=i[n[r]]}return i}function a(i){for(var n=0;n<i.length;n++){for(var r=e,o=i[n],a=o.split(/[.\/]/),u=0;u<a.length-1;++u)r[a[u]]===t&&(r[a[u]]={}),r=r[a[u]];r[a[a.length-1]]=s[o]}}var s={};n("moxie/core/utils/Basic",[],function(){function e(e){var t;return e===t?"undefined":null===e?"null":e.nodeType?"node":{}.toString.call(e).match(/\s([a-z|A-Z]+)/)[1].toLowerCase()}function t(){return a(!1,!1,arguments)}function i(){return a(!0,!1,arguments)}function n(){return a(!1,!0,arguments)}function r(){return a(!0,!0,arguments)}function o(i){switch(e(i)){case"array":return Array.prototype.slice.call(i);case"object":return t({},i)}return i}function a(t,i,n){var r,s=n[0];return u(n,function(n,c){c>0&&u(n,function(n,u){var c=-1!==m(e(n),["array","object"]);return n===r||t&&s[u]===r?!0:(c&&i&&(n=o(n)),e(s[u])===e(n)&&c?a(t,i,[s[u],n]):s[u]=n,void 0)})}),s}function s(e,t){function i(){this.constructor=e}for(var n in t)({}).hasOwnProperty.call(t,n)&&(e[n]=t[n]);return i.prototype=t.prototype,e.prototype=new i,e.__parent__=t.prototype,e}function u(e,t){var i,n,r,o;if(e){try{i=e.length}catch(a){i=o}if(i===o||"number"!=typeof i){for(n in e)if(e.hasOwnProperty(n)&&t(e[n],n)===!1)return}else for(r=0;i>r;r++)if(t(e[r],r)===!1)return}}function c(t){var i;if(!t||"object"!==e(t))return!0;for(i in t)return!1;return!0}function l(t,i){function n(r){"function"===e(t[r])&&t[r](function(e){++r<o&&!e?n(r):i(e)})}var r=0,o=t.length;"function"!==e(i)&&(i=function(){}),t&&t.length||i(),n(r)}function d(e,t){var i=0,n=e.length,r=new Array(n);u(e,function(e,o){e(function(e){if(e)return t(e);var a=[].slice.call(arguments);a.shift(),r[o]=a,i++,i===n&&(r.unshift(null),t.apply(this,r))})})}function m(e,t){if(t){if(Array.prototype.indexOf)return Array.prototype.indexOf.call(t,e);for(var i=0,n=t.length;n>i;i++)if(t[i]===e)return i}return-1}function h(t,i){var n=[];"array"!==e(t)&&(t=[t]),"array"!==e(i)&&(i=[i]);for(var r in t)-1===m(t[r],i)&&n.push(t[r]);return n.length?n:!1}function f(e,t){var i=[];return u(e,function(e){-1!==m(e,t)&&i.push(e)}),i.length?i:null}function p(e){var t,i=[];for(t=0;t<e.length;t++)i[t]=e[t];return i}function g(e){return e?String.prototype.trim?String.prototype.trim.call(e):e.toString().replace(/^\s*/,"").replace(/\s*$/,""):e}function x(e){if("string"!=typeof e)return e;var t,i={t:1099511627776,g:1073741824,m:1048576,k:1024};return e=/^([0-9\.]+)([tmgk]?)$/.exec(e.toLowerCase().replace(/[^0-9\.tmkg]/g,"")),t=e[2],e=+e[1],i.hasOwnProperty(t)&&(e*=i[t]),Math.floor(e)}function v(t){var i=[].slice.call(arguments,1);return t.replace(/%[a-z]/g,function(){var t=i.shift();return"undefined"!==e(t)?t:""})}function y(e,t){var i=this;setTimeout(function(){e.call(i)},t||1)}var w=function(){var e=0;return function(t){var i,n=(new Date).getTime().toString(32);for(i=0;5>i;i++)n+=Math.floor(65535*Math.random()).toString(32);return(t||"o_")+n+(e++).toString(32)}}();return{guid:w,typeOf:e,extend:t,extendIf:i,extendImmutable:n,extendImmutableIf:r,inherit:s,each:u,isEmptyObj:c,inSeries:l,inParallel:d,inArray:m,arrayDiff:h,arrayIntersect:f,toArray:p,trim:g,sprintf:v,parseSizeStr:x,delay:y}}),n("moxie/core/utils/Encode",[],function(){var e=function(e){return unescape(encodeURIComponent(e))},t=function(e){return decodeURIComponent(escape(e))},i=function(e,i){if("function"==typeof window.atob)return i?t(window.atob(e)):window.atob(e);var n,r,o,a,s,u,c,l,d="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",m=0,h=0,f="",p=[];if(!e)return e;e+="";do a=d.indexOf(e.charAt(m++)),s=d.indexOf(e.charAt(m++)),u=d.indexOf(e.charAt(m++)),c=d.indexOf(e.charAt(m++)),l=a<<18|s<<12|u<<6|c,n=255&l>>16,r=255&l>>8,o=255&l,p[h++]=64==u?String.fromCharCode(n):64==c?String.fromCharCode(n,r):String.fromCharCode(n,r,o);while(m<e.length);return f=p.join(""),i?t(f):f},n=function(t,i){if(i&&(t=e(t)),"function"==typeof window.btoa)return window.btoa(t);var n,r,o,a,s,u,c,l,d="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",m=0,h=0,f="",p=[];if(!t)return t;do n=t.charCodeAt(m++),r=t.charCodeAt(m++),o=t.charCodeAt(m++),l=n<<16|r<<8|o,a=63&l>>18,s=63&l>>12,u=63&l>>6,c=63&l,p[h++]=d.charAt(a)+d.charAt(s)+d.charAt(u)+d.charAt(c);while(m<t.length);f=p.join("");var g=t.length%3;return(g?f.slice(0,g-3):f)+"===".slice(g||3)};return{utf8_encode:e,utf8_decode:t,atob:i,btoa:n}}),n("moxie/core/utils/Env",["moxie/core/utils/Basic"],function(e){function t(e,t,i){var n=0,r=0,o=0,a={dev:-6,alpha:-5,a:-5,beta:-4,b:-4,RC:-3,rc:-3,"#":-2,p:1,pl:1},s=function(e){return e=(""+e).replace(/[_\-+]/g,"."),e=e.replace(/([^.\d]+)/g,".$1.").replace(/\.{2,}/g,"."),e.length?e.split("."):[-8]},u=function(e){return e?isNaN(e)?a[e]||-7:parseInt(e,10):0};for(e=s(e),t=s(t),r=Math.max(e.length,t.length),n=0;r>n;n++)if(e[n]!=t[n]){if(e[n]=u(e[n]),t[n]=u(t[n]),e[n]<t[n]){o=-1;break}if(e[n]>t[n]){o=1;break}}if(!i)return o;switch(i){case">":case"gt":return o>0;case">=":case"ge":return o>=0;case"<=":case"le":return 0>=o;case"==":case"=":case"eq":return 0===o;case"<>":case"!=":case"ne":return 0!==o;case"":case"<":case"lt":return 0>o;default:return null}}var i=function(e){var t="",i="?",n="function",r="undefined",o="object",a="name",s="version",u={has:function(e,t){return-1!==t.toLowerCase().indexOf(e.toLowerCase())},lowerize:function(e){return e.toLowerCase()}},c={rgx:function(){for(var t,i,a,s,u,c,l,d=0,m=arguments;d<m.length;d+=2){var h=m[d],f=m[d+1];if(typeof t===r){t={};for(s in f)u=f[s],typeof u===o?t[u[0]]=e:t[u]=e}for(i=a=0;i<h.length;i++)if(c=h[i].exec(this.getUA())){for(s=0;s<f.length;s++)l=c[++a],u=f[s],typeof u===o&&u.length>0?2==u.length?t[u[0]]=typeof u[1]==n?u[1].call(this,l):u[1]:3==u.length?t[u[0]]=typeof u[1]!==n||u[1].exec&&u[1].test?l?l.replace(u[1],u[2]):e:l?u[1].call(this,l,u[2]):e:4==u.length&&(t[u[0]]=l?u[3].call(this,l.replace(u[1],u[2])):e):t[u]=l?l:e;break}if(c)break}return t},str:function(t,n){for(var r in n)if(typeof n[r]===o&&n[r].length>0){for(var a=0;a<n[r].length;a++)if(u.has(n[r][a],t))return r===i?e:r}else if(u.has(n[r],t))return r===i?e:r;return t}},l={browser:{oldsafari:{major:{1:["/8","/1","/3"],2:"/4","?":"/"},version:{"1.0":"/8",1.2:"/1",1.3:"/3","2.0":"/412","2.0.2":"/416","2.0.3":"/417","2.0.4":"/419","?":"/"}}},device:{sprint:{model:{"Evo Shift 4G":"7373KT"},vendor:{HTC:"APA",Sprint:"Sprint"}}},os:{windows:{version:{ME:"4.90","NT 3.11":"NT3.51","NT 4.0":"NT4.0",2000:"NT 5.0",XP:["NT 5.1","NT 5.2"],Vista:"NT 6.0",7:"NT 6.1",8:"NT 6.2",8.1:"NT 6.3",RT:"ARM"}}}},d={browser:[[/(opera\smini)\/([\w\.-]+)/i,/(opera\s[mobiletab]+).+version\/([\w\.-]+)/i,/(opera).+version\/([\w\.]+)/i,/(opera)[\/\s]+([\w\.]+)/i],[a,s],[/\s(opr)\/([\w\.]+)/i],[[a,"Opera"],s],[/(kindle)\/([\w\.]+)/i,/(lunascape|maxthon|netfront|jasmine|blazer)[\/\s]?([\w\.]+)*/i,/(avant\s|iemobile|slim|baidu)(?:browser)?[\/\s]?([\w\.]*)/i,/(?:ms|\()(ie)\s([\w\.]+)/i,/(rekonq)\/([\w\.]+)*/i,/(chromium|flock|rockmelt|midori|epiphany|silk|skyfire|ovibrowser|bolt|iron|vivaldi)\/([\w\.-]+)/i],[a,s],[/(trident).+rv[:\s]([\w\.]+).+like\sgecko/i],[[a,"IE"],s],[/(edge)\/((\d+)?[\w\.]+)/i],[a,s],[/(yabrowser)\/([\w\.]+)/i],[[a,"Yandex"],s],[/(comodo_dragon)\/([\w\.]+)/i],[[a,/_/g," "],s],[/(chrome|omniweb|arora|[tizenoka]{5}\s?browser)\/v?([\w\.]+)/i,/(uc\s?browser|qqbrowser)[\/\s]?([\w\.]+)/i],[a,s],[/(dolfin)\/([\w\.]+)/i],[[a,"Dolphin"],s],[/((?:android.+)crmo|crios)\/([\w\.]+)/i],[[a,"Chrome"],s],[/XiaoMi\/MiuiBrowser\/([\w\.]+)/i],[s,[a,"MIUI Browser"]],[/android.+version\/([\w\.]+)\s+(?:mobile\s?safari|safari)/i],[s,[a,"Android Browser"]],[/FBAV\/([\w\.]+);/i],[s,[a,"Facebook"]],[/version\/([\w\.]+).+?mobile\/\w+\s(safari)/i],[s,[a,"Mobile Safari"]],[/version\/([\w\.]+).+?(mobile\s?safari|safari)/i],[s,a],[/webkit.+?(mobile\s?safari|safari)(\/[\w\.]+)/i],[a,[s,c.str,l.browser.oldsafari.version]],[/(konqueror)\/([\w\.]+)/i,/(webkit|khtml)\/([\w\.]+)/i],[a,s],[/(navigator|netscape)\/([\w\.-]+)/i],[[a,"Netscape"],s],[/(swiftfox)/i,/(icedragon|iceweasel|camino|chimera|fennec|maemo\sbrowser|minimo|conkeror)[\/\s]?([\w\.\+]+)/i,/(firefox|seamonkey|k-meleon|icecat|iceape|firebird|phoenix)\/([\w\.-]+)/i,/(mozilla)\/([\w\.]+).+rv\:.+gecko\/\d+/i,/(polaris|lynx|dillo|icab|doris|amaya|w3m|netsurf)[\/\s]?([\w\.]+)/i,/(links)\s\(([\w\.]+)/i,/(gobrowser)\/?([\w\.]+)*/i,/(ice\s?browser)\/v?([\w\._]+)/i,/(mosaic)[\/\s]([\w\.]+)/i],[a,s]],engine:[[/windows.+\sedge\/([\w\.]+)/i],[s,[a,"EdgeHTML"]],[/(presto)\/([\w\.]+)/i,/(webkit|trident|netfront|netsurf|amaya|lynx|w3m)\/([\w\.]+)/i,/(khtml|tasman|links)[\/\s]\(?([\w\.]+)/i,/(icab)[\/\s]([23]\.[\d\.]+)/i],[a,s],[/rv\:([\w\.]+).*(gecko)/i],[s,a]],os:[[/microsoft\s(windows)\s(vista|xp)/i],[a,s],[/(windows)\snt\s6\.2;\s(arm)/i,/(windows\sphone(?:\sos)*|windows\smobile|windows)[\s\/]?([ntce\d\.\s]+\w)/i],[a,[s,c.str,l.os.windows.version]],[/(win(?=3|9|n)|win\s9x\s)([nt\d\.]+)/i],[[a,"Windows"],[s,c.str,l.os.windows.version]],[/\((bb)(10);/i],[[a,"BlackBerry"],s],[/(blackberry)\w*\/?([\w\.]+)*/i,/(tizen)[\/\s]([\w\.]+)/i,/(android|webos|palm\os|qnx|bada|rim\stablet\sos|meego|contiki)[\/\s-]?([\w\.]+)*/i,/linux;.+(sailfish);/i],[a,s],[/(symbian\s?os|symbos|s60(?=;))[\/\s-]?([\w\.]+)*/i],[[a,"Symbian"],s],[/\((series40);/i],[a],[/mozilla.+\(mobile;.+gecko.+firefox/i],[[a,"Firefox OS"],s],[/(nintendo|playstation)\s([wids3portablevu]+)/i,/(mint)[\/\s\(]?(\w+)*/i,/(mageia|vectorlinux)[;\s]/i,/(joli|[kxln]?ubuntu|debian|[open]*suse|gentoo|arch|slackware|fedora|mandriva|centos|pclinuxos|redhat|zenwalk|linpus)[\/\s-]?([\w\.-]+)*/i,/(hurd|linux)\s?([\w\.]+)*/i,/(gnu)\s?([\w\.]+)*/i],[a,s],[/(cros)\s[\w]+\s([\w\.]+\w)/i],[[a,"Chromium OS"],s],[/(sunos)\s?([\w\.]+\d)*/i],[[a,"Solaris"],s],[/\s([frentopc-]{0,4}bsd|dragonfly)\s?([\w\.]+)*/i],[a,s],[/(ip[honead]+)(?:.*os\s*([\w]+)*\slike\smac|;\sopera)/i],[[a,"iOS"],[s,/_/g,"."]],[/(mac\sos\sx)\s?([\w\s\.]+\w)*/i,/(macintosh|mac(?=_powerpc)\s)/i],[[a,"Mac OS"],[s,/_/g,"."]],[/((?:open)?solaris)[\/\s-]?([\w\.]+)*/i,/(haiku)\s(\w+)/i,/(aix)\s((\d)(?=\.|\)|\s)[\w\.]*)*/i,/(plan\s9|minix|beos|os\/2|amigaos|morphos|risc\sos|openvms)/i,/(unix)\s?([\w\.]+)*/i],[a,s]]},m=function(e){var i=e||(window&&window.navigator&&window.navigator.userAgent?window.navigator.userAgent:t);this.getBrowser=function(){return c.rgx.apply(this,d.browser)},this.getEngine=function(){return c.rgx.apply(this,d.engine)},this.getOS=function(){return c.rgx.apply(this,d.os)},this.getResult=function(){return{ua:this.getUA(),browser:this.getBrowser(),engine:this.getEngine(),os:this.getOS()}},this.getUA=function(){return i},this.setUA=function(e){return i=e,this},this.setUA(i)};return m}(),n=function(){var t={define_property:function(){return!1}(),create_canvas:function(){var e=document.createElement("canvas");return!(!e.getContext||!e.getContext("2d"))}(),return_response_type:function(t){try{if(-1!==e.inArray(t,["","text","document"]))return!0;if(window.XMLHttpRequest){var i=new XMLHttpRequest;if(i.open("get","/"),"responseType"in i)return i.responseType=t,i.responseType!==t?!1:!0}}catch(n){}return!1},use_data_uri:function(){var e=new Image;return e.onload=function(){t.use_data_uri=1===e.width&&1===e.height},setTimeout(function(){e.src="data:image/gif;base64,R0lGODlhAQABAIAAAP8AAAAAACH5BAAAAAAALAAAAAABAAEAAAICRAEAOw=="},1),!1}(),use_data_uri_over32kb:function(){return t.use_data_uri&&("IE"!==o.browser||o.version>=9)},use_data_uri_of:function(e){return t.use_data_uri&&33e3>e||t.use_data_uri_over32kb()},use_fileinput:function(){if(navigator.userAgent.match(/(Android (1.0|1.1|1.5|1.6|2.0|2.1))|(Windows Phone (OS 7|8.0))|(XBLWP)|(ZuneWP)|(w(eb)?OSBrowser)|(webOS)|(Kindle\/(1.0|2.0|2.5|3.0))/))return!1;var e=document.createElement("input");return e.setAttribute("type","file"),!e.disabled}};return function(i){var n=[].slice.call(arguments);return n.shift(),"function"===e.typeOf(t[i])?t[i].apply(this,n):!!t[i]}}(),r=(new i).getResult(),o={can:n,uaParser:i,browser:r.browser.name,version:r.browser.version,os:r.os.name,osVersion:r.os.version,verComp:t,swf_url:"../flash/Moxie.swf",xap_url:"../silverlight/Moxie.xap",global_event_dispatcher:"moxie.core.EventTarget.instance.dispatchEvent"};return o.OS=o.os,o}),n("moxie/core/Exceptions",["moxie/core/utils/Basic"],function(e){function t(e,t){var i;for(i in e)if(e[i]===t)return i;return null}return{RuntimeError:function(){function i(e,i){this.code=e,this.name=t(n,e),this.message=this.name+(i||": RuntimeError "+this.code)}var n={NOT_INIT_ERR:1,EXCEPTION_ERR:3,NOT_SUPPORTED_ERR:9,JS_ERR:4};return e.extend(i,n),i.prototype=Error.prototype,i}(),OperationNotAllowedException:function(){function t(e){this.code=e,this.name="OperationNotAllowedException"}return e.extend(t,{NOT_ALLOWED_ERR:1}),t.prototype=Error.prototype,t}(),ImageError:function(){function i(e){this.code=e,this.name=t(n,e),this.message=this.name+": ImageError "+this.code}var n={WRONG_FORMAT:1,MAX_RESOLUTION_ERR:2,INVALID_META_ERR:3};return e.extend(i,n),i.prototype=Error.prototype,i}(),FileException:function(){function i(e){this.code=e,this.name=t(n,e),this.message=this.name+": FileException "+this.code}var n={NOT_FOUND_ERR:1,SECURITY_ERR:2,ABORT_ERR:3,NOT_READABLE_ERR:4,ENCODING_ERR:5,NO_MODIFICATION_ALLOWED_ERR:6,INVALID_STATE_ERR:7,SYNTAX_ERR:8};return e.extend(i,n),i.prototype=Error.prototype,i}(),DOMException:function(){function i(e){this.code=e,this.name=t(n,e),this.message=this.name+": DOMException "+this.code}var n={INDEX_SIZE_ERR:1,DOMSTRING_SIZE_ERR:2,HIERARCHY_REQUEST_ERR:3,WRONG_DOCUMENT_ERR:4,INVALID_CHARACTER_ERR:5,NO_DATA_ALLOWED_ERR:6,NO_MODIFICATION_ALLOWED_ERR:7,NOT_FOUND_ERR:8,NOT_SUPPORTED_ERR:9,INUSE_ATTRIBUTE_ERR:10,INVALID_STATE_ERR:11,SYNTAX_ERR:12,INVALID_MODIFICATION_ERR:13,NAMESPACE_ERR:14,INVALID_ACCESS_ERR:15,VALIDATION_ERR:16,TYPE_MISMATCH_ERR:17,SECURITY_ERR:18,NETWORK_ERR:19,ABORT_ERR:20,URL_MISMATCH_ERR:21,QUOTA_EXCEEDED_ERR:22,TIMEOUT_ERR:23,INVALID_NODE_TYPE_ERR:24,DATA_CLONE_ERR:25};return e.extend(i,n),i.prototype=Error.prototype,i}(),EventException:function(){function t(e){this.code=e,this.name="EventException"}return e.extend(t,{UNSPECIFIED_EVENT_TYPE_ERR:0}),t.prototype=Error.prototype,t}()}}),n("moxie/core/utils/Dom",["moxie/core/utils/Env"],function(e){var t=function(e){return"string"!=typeof e?e:document.getElementById(e)},i=function(e,t){if(!e.className)return!1;var i=new RegExp("(^|\\s+)"+t+"(\\s+|$)");return i.test(e.className)},n=function(e,t){i(e,t)||(e.className=e.className?e.className.replace(/\s+$/,"")+" "+t:t)},r=function(e,t){if(e.className){var i=new RegExp("(^|\\s+)"+t+"(\\s+|$)");e.className=e.className.replace(i,function(e,t,i){return" "===t&&" "===i?" ":""})}},o=function(e,t){return e.currentStyle?e.currentStyle[t]:window.getComputedStyle?window.getComputedStyle(e,null)[t]:void 0},a=function(t,i){function n(e){var t,i,n=0,r=0;return e&&(i=e.getBoundingClientRect(),t="CSS1Compat"===c.compatMode?c.documentElement:c.body,n=i.left+t.scrollLeft,r=i.top+t.scrollTop),{x:n,y:r}}var r,o,a,s=0,u=0,c=document;if(t=t,i=i||c.body,t&&t.getBoundingClientRect&&"IE"===e.browser&&(!c.documentMode||c.documentMode<8))return o=n(t),a=n(i),{x:o.x-a.x,y:o.y-a.y};for(r=t;r&&r!=i&&r.nodeType;)s+=r.offsetLeft||0,u+=r.offsetTop||0,r=r.offsetParent;for(r=t.parentNode;r&&r!=i&&r.nodeType;)s-=r.scrollLeft||0,u-=r.scrollTop||0,r=r.parentNode;return{x:s,y:u}},s=function(e){return{w:e.offsetWidth||e.clientWidth,h:e.offsetHeight||e.clientHeight}};return{get:t,hasClass:i,addClass:n,removeClass:r,getStyle:o,getPos:a,getSize:s}}),n("moxie/core/EventTarget",["moxie/core/utils/Env","moxie/core/Exceptions","moxie/core/utils/Basic"],function(e,t,i){function n(){this.uid=i.guid()}var r={};return i.extend(n.prototype,{init:function(){this.uid||(this.uid=i.guid("uid_"))},addEventListener:function(e,t,n,o){var a,s=this;return this.hasOwnProperty("uid")||(this.uid=i.guid("uid_")),e=i.trim(e),/\s/.test(e)?(i.each(e.split(/\s+/),function(e){s.addEventListener(e,t,n,o)}),void 0):(e=e.toLowerCase(),n=parseInt(n,10)||0,a=r[this.uid]&&r[this.uid][e]||[],a.push({fn:t,priority:n,scope:o||this}),r[this.uid]||(r[this.uid]={}),r[this.uid][e]=a,void 0)},hasEventListener:function(e){var t;return e?(e=e.toLowerCase(),t=r[this.uid]&&r[this.uid][e]):t=r[this.uid],t?t:!1},removeEventListener:function(e,t){var n,o,a=this;if(e=e.toLowerCase(),/\s/.test(e))return i.each(e.split(/\s+/),function(e){a.removeEventListener(e,t)}),void 0;if(n=r[this.uid]&&r[this.uid][e]){if(t){for(o=n.length-1;o>=0;o--)if(n[o].fn===t){n.splice(o,1);break}}else n=[];n.length||(delete r[this.uid][e],i.isEmptyObj(r[this.uid])&&delete r[this.uid])}},removeAllEventListeners:function(){r[this.uid]&&delete r[this.uid]},dispatchEvent:function(e){var n,o,a,s,u,c={},l=!0;if("string"!==i.typeOf(e)){if(s=e,"string"!==i.typeOf(s.type))throw new t.EventException(t.EventException.UNSPECIFIED_EVENT_TYPE_ERR);e=s.type,s.total!==u&&s.loaded!==u&&(c.total=s.total,c.loaded=s.loaded),c.async=s.async||!1}if(-1!==e.indexOf("::")?function(t){n=t[0],e=t[1]}(e.split("::")):n=this.uid,e=e.toLowerCase(),o=r[n]&&r[n][e]){o.sort(function(e,t){return t.priority-e.priority}),a=[].slice.call(arguments),a.shift(),c.type=e,a.unshift(c);var d=[];i.each(o,function(e){a[0].target=e.scope,c.async?d.push(function(t){setTimeout(function(){t(e.fn.apply(e.scope,a)===!1)},1)}):d.push(function(t){t(e.fn.apply(e.scope,a)===!1)})}),d.length&&i.inSeries(d,function(e){l=!e})}return l},bindOnce:function(e,t,i,n){var r=this;r.bind.call(this,e,function o(){return r.unbind(e,o),t.apply(this,arguments)},i,n)},bind:function(){this.addEventListener.apply(this,arguments)},unbind:function(){this.removeEventListener.apply(this,arguments)},unbindAll:function(){this.removeAllEventListeners.apply(this,arguments)},trigger:function(){return this.dispatchEvent.apply(this,arguments)},handleEventProps:function(e){var t=this;this.bind(e.join(" "),function(e){var t="on"+e.type.toLowerCase();"function"===i.typeOf(this[t])&&this[t].apply(this,arguments)}),i.each(e,function(e){e="on"+e.toLowerCase(e),"undefined"===i.typeOf(t[e])&&(t[e]=null)})}}),n.instance=new n,n}),n("moxie/runtime/Runtime",["moxie/core/utils/Env","moxie/core/utils/Basic","moxie/core/utils/Dom","moxie/core/EventTarget"],function(e,t,i,n){function r(e,n,o,s,u){var c,l=this,d=t.guid(n+"_"),m=u||"browser";e=e||{},a[d]=this,o=t.extend({access_binary:!1,access_image_binary:!1,display_media:!1,do_cors:!1,drag_and_drop:!1,filter_by_extension:!0,resize_image:!1,report_upload_progress:!1,return_response_headers:!1,return_response_type:!1,return_status_code:!0,send_custom_headers:!1,select_file:!1,select_folder:!1,select_multiple:!0,send_binary_string:!1,send_browser_cookies:!0,send_multipart:!0,slice_blob:!1,stream_upload:!1,summon_file_dialog:!1,upload_filesize:!0,use_http_method:!0},o),e.preferred_caps&&(m=r.getMode(s,e.preferred_caps,m)),c=function(){var e={};return{exec:function(t,i,n,r){return c[i]&&(e[t]||(e[t]={context:this,instance:new c[i]}),e[t].instance[n])?e[t].instance[n].apply(this,r):void 0},removeInstance:function(t){delete e[t]},removeAllInstances:function(){var i=this;t.each(e,function(e,n){"function"===t.typeOf(e.instance.destroy)&&e.instance.destroy.call(e.context),i.removeInstance(n)})}}}(),t.extend(this,{initialized:!1,uid:d,type:n,mode:r.getMode(s,e.required_caps,m),shimid:d+"_container",clients:0,options:e,can:function(e,i){var n=arguments[2]||o;if("string"===t.typeOf(e)&&"undefined"===t.typeOf(i)&&(e=r.parseCaps(e)),"object"===t.typeOf(e)){for(var a in e)if(!this.can(a,e[a],n))return!1;return!0}return"function"===t.typeOf(n[e])?n[e].call(this,i):i===n[e]},getShimContainer:function(){var e,n=i.get(this.shimid);return n||(e=i.get(this.options.container)||document.body,n=document.createElement("div"),n.id=this.shimid,n.className="moxie-shim moxie-shim-"+this.type,t.extend(n.style,{position:"absolute",top:"0px",left:"0px",width:"1px",height:"1px",overflow:"hidden"}),e.appendChild(n),e=null),n},getShim:function(){return c},shimExec:function(e,t){var i=[].slice.call(arguments,2);return l.getShim().exec.call(this,this.uid,e,t,i)},exec:function(e,t){var i=[].slice.call(arguments,2);return l[e]&&l[e][t]?l[e][t].apply(this,i):l.shimExec.apply(this,arguments)},destroy:function(){if(l){var e=i.get(this.shimid);e&&e.parentNode.removeChild(e),c&&c.removeAllInstances(),this.unbindAll(),delete a[this.uid],this.uid=null,d=l=c=e=null}}}),this.mode&&e.required_caps&&!this.can(e.required_caps)&&(this.mode=!1)}var o={},a={};return r.order="html5,flash,silverlight,html4",r.getRuntime=function(e){return a[e]?a[e]:!1},r.addConstructor=function(e,t){t.prototype=n.instance,o[e]=t},r.getConstructor=function(e){return o[e]||null},r.getInfo=function(e){var t=r.getRuntime(e);return t?{uid:t.uid,type:t.type,mode:t.mode,can:function(){return t.can.apply(t,arguments)}}:null},r.parseCaps=function(e){var i={};return"string"!==t.typeOf(e)?e||{}:(t.each(e.split(","),function(e){i[e]=!0}),i)},r.can=function(e,t){var i,n,o=r.getConstructor(e);return o?(i=new o({required_caps:t}),n=i.mode,i.destroy(),!!n):!1},r.thatCan=function(e,t){var i=(t||r.order).split(/\s*,\s*/);for(var n in i)if(r.can(i[n],e))return i[n];return null},r.getMode=function(e,i,n){var r=null;if("undefined"===t.typeOf(n)&&(n="browser"),i&&!t.isEmptyObj(e)){if(t.each(i,function(i,n){if(e.hasOwnProperty(n)){var o=e[n](i);if("string"==typeof o&&(o=[o]),r){if(!(r=t.arrayIntersect(r,o)))return r=!1}else r=o}}),r)return-1!==t.inArray(n,r)?n:r[0];if(r===!1)return!1}return n},r.capTrue=function(){return!0},r.capFalse=function(){return!1},r.capTest=function(e){return function(){return!!e}},r}),n("moxie/runtime/RuntimeClient",["moxie/core/utils/Env","moxie/core/Exceptions","moxie/core/utils/Basic","moxie/runtime/Runtime"],function(e,t,i,n){return function(){var e;i.extend(this,{connectRuntime:function(r){function o(i){var a,u;return i.length?(a=i.shift().toLowerCase(),(u=n.getConstructor(a))?(e=new u(r),e.bind("Init",function(){e.initialized=!0,setTimeout(function(){e.clients++,s.ruid=e.uid,s.trigger("RuntimeInit",e)},1)}),e.bind("Error",function(){e.destroy(),o(i)}),e.bind("Exception",function(e,i){var n=i.name+"(#"+i.code+")"+(i.message?", from: "+i.message:"");s.trigger("RuntimeError",new t.RuntimeError(t.RuntimeError.EXCEPTION_ERR,n))}),e.mode?(e.init(),void 0):(e.trigger("Error"),void 0)):(o(i),void 0)):(s.trigger("RuntimeError",new t.RuntimeError(t.RuntimeError.NOT_INIT_ERR)),e=null,void 0)}var a,s=this;if("string"===i.typeOf(r)?a=r:"string"===i.typeOf(r.ruid)&&(a=r.ruid),a){if(e=n.getRuntime(a))return s.ruid=a,e.clients++,e;throw new t.RuntimeError(t.RuntimeError.NOT_INIT_ERR)}o((r.runtime_order||n.order).split(/\s*,\s*/))},disconnectRuntime:function(){e&&--e.clients<=0&&e.destroy(),e=null},getRuntime:function(){return e&&e.uid?e:e=null},exec:function(){return e?e.exec.apply(this,arguments):null},can:function(t){return e?e.can(t):!1}})}}),n("moxie/file/Blob",["moxie/core/utils/Basic","moxie/core/utils/Encode","moxie/runtime/RuntimeClient"],function(e,t,i){function n(o,a){function s(t,i,o){var a,s=r[this.uid];return"string"===e.typeOf(s)&&s.length?(a=new n(null,{type:o,size:i-t}),a.detach(s.substr(t,a.size)),a):null}i.call(this),o&&this.connectRuntime(o),a?"string"===e.typeOf(a)&&(a={data:a}):a={},e.extend(this,{uid:a.uid||e.guid("uid_"),ruid:o,size:a.size||0,type:a.type||"",slice:function(e,t,i){return this.isDetached()?s.apply(this,arguments):this.getRuntime().exec.call(this,"Blob","slice",this.getSource(),e,t,i)},getSource:function(){return r[this.uid]?r[this.uid]:null},detach:function(e){if(this.ruid&&(this.getRuntime().exec.call(this,"Blob","destroy"),this.disconnectRuntime(),this.ruid=null),e=e||"","data:"==e.substr(0,5)){var i=e.indexOf(";base64,");this.type=e.substring(5,i),e=t.atob(e.substring(i+8))}this.size=e.length,r[this.uid]=e},isDetached:function(){return!this.ruid&&"string"===e.typeOf(r[this.uid])},destroy:function(){this.detach(),delete r[this.uid]}}),a.data?this.detach(a.data):r[this.uid]=a}var r={};return n}),n("moxie/core/I18n",["moxie/core/utils/Basic"],function(e){var t={};return{addI18n:function(i){return e.extend(t,i)},translate:function(e){return t[e]||e},_:function(e){return this.translate(e)},sprintf:function(t){var i=[].slice.call(arguments,1);return t.replace(/%[a-z]/g,function(){var t=i.shift();return"undefined"!==e.typeOf(t)?t:""})}}}),n("moxie/core/utils/Mime",["moxie/core/utils/Basic","moxie/core/I18n"],function(e,t){var i="application/msword,doc dot,application/pdf,pdf,application/pgp-signature,pgp,application/postscript,ps ai eps,application/rtf,rtf,application/vnd.ms-excel,xls xlb,application/vnd.ms-powerpoint,ppt pps pot,application/zip,zip,application/x-shockwave-flash,swf swfl,application/vnd.openxmlformats-officedocument.wordprocessingml.document,docx,application/vnd.openxmlformats-officedocument.wordprocessingml.template,dotx,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,xlsx,application/vnd.openxmlformats-officedocument.presentationml.presentation,pptx,application/vnd.openxmlformats-officedocument.presentationml.template,potx,application/vnd.openxmlformats-officedocument.presentationml.slideshow,ppsx,application/x-javascript,js,application/json,json,audio/mpeg,mp3 mpga mpega mp2,audio/x-wav,wav,audio/x-m4a,m4a,audio/ogg,oga ogg,audio/aiff,aiff aif,audio/flac,flac,audio/aac,aac,audio/ac3,ac3,audio/x-ms-wma,wma,image/bmp,bmp,image/gif,gif,image/jpeg,jpg jpeg jpe,image/photoshop,psd,image/png,png,image/svg+xml,svg svgz,image/tiff,tiff tif,text/plain,asc txt text diff log,text/html,htm html xhtml,text/css,css,text/csv,csv,text/rtf,rtf,video/mpeg,mpeg mpg mpe m2v,video/quicktime,qt mov,video/mp4,mp4,video/x-m4v,m4v,video/x-flv,flv,video/x-ms-wmv,wmv,video/avi,avi,video/webm,webm,video/3gpp,3gpp 3gp,video/3gpp2,3g2,video/vnd.rn-realvideo,rv,video/ogg,ogv,video/x-matroska,mkv,application/vnd.oasis.opendocument.formula-template,otf,application/octet-stream,exe",n={mimes:{},extensions:{},addMimeType:function(e){var t,i,n,r=e.split(/,/);for(t=0;t<r.length;t+=2){for(n=r[t+1].split(/ /),i=0;i<n.length;i++)this.mimes[n[i]]=r[t];this.extensions[r[t]]=n}},extList2mimes:function(t,i){var n,r,o,a,s=this,u=[];for(r=0;r<t.length;r++)for(n=t[r].extensions.split(/\s*,\s*/),o=0;o<n.length;o++){if("*"===n[o])return[];if(a=s.mimes[n[o]],a&&-1===e.inArray(a,u)&&u.push(a),i&&/^\w+$/.test(n[o]))u.push("."+n[o]);else if(!a)return[]}return u},mimes2exts:function(t){var i=this,n=[];return e.each(t,function(t){if("*"===t)return n=[],!1;var r=t.match(/^(\w+)\/(\*|\w+)$/);r&&("*"===r[2]?e.each(i.extensions,function(e,t){new RegExp("^"+r[1]+"/").test(t)&&[].push.apply(n,i.extensions[t])}):i.extensions[t]&&[].push.apply(n,i.extensions[t]))}),n},mimes2extList:function(i){var n=[],r=[];return"string"===e.typeOf(i)&&(i=e.trim(i).split(/\s*,\s*/)),r=this.mimes2exts(i),n.push({title:t.translate("Files"),extensions:r.length?r.join(","):"*"}),n.mimes=i,n},getFileExtension:function(e){var t=e&&e.match(/\.([^.]+)$/);return t?t[1].toLowerCase():""},getFileMime:function(e){return this.mimes[this.getFileExtension(e)]||""}};return n.addMimeType(i),n}),n("moxie/file/FileInput",["moxie/core/utils/Basic","moxie/core/utils/Env","moxie/core/utils/Mime","moxie/core/utils/Dom","moxie/core/Exceptions","moxie/core/EventTarget","moxie/core/I18n","moxie/runtime/Runtime","moxie/runtime/RuntimeClient"],function(e,t,i,n,r,o,a,s,u){function c(t){var o,c,d;if(-1!==e.inArray(e.typeOf(t),["string","node"])&&(t={browse_button:t}),c=n.get(t.browse_button),!c)throw new r.DOMException(r.DOMException.NOT_FOUND_ERR);d={accept:[{title:a.translate("All Files"),extensions:"*"}],multiple:!1,required_caps:!1,container:c.parentNode||document.body},t=e.extend({},d,t),"string"==typeof t.required_caps&&(t.required_caps=s.parseCaps(t.required_caps)),"string"==typeof t.accept&&(t.accept=i.mimes2extList(t.accept)),o=n.get(t.container),o||(o=document.body),"static"===n.getStyle(o,"position")&&(o.style.position="relative"),o=c=null,u.call(this),e.extend(this,{uid:e.guid("uid_"),ruid:null,shimid:null,files:null,init:function(){var i=this;i.bind("RuntimeInit",function(r,o){i.ruid=o.uid,i.shimid=o.shimid,i.bind("Ready",function(){i.trigger("Refresh")},999),i.bind("Refresh",function(){var i,r,a,s,u;a=n.get(t.browse_button),s=n.get(o.shimid),a&&(i=n.getPos(a,n.get(t.container)),r=n.getSize(a),u=parseInt(n.getStyle(a,"z-index"),10)||0,s&&e.extend(s.style,{top:i.y+"px",left:i.x+"px",width:r.w+"px",height:r.h+"px",zIndex:u+1})),s=a=null}),o.exec.call(i,"FileInput","init",t)}),i.connectRuntime(e.extend({},t,{required_caps:{select_file:!0}}))},getOption:function(e){return t[e]},setOption:function(e,n){if(t.hasOwnProperty(e)){var o=t[e];switch(e){case"accept":"string"==typeof n&&(n=i.mimes2extList(n));break;case"container":case"required_caps":throw new r.FileException(r.FileException.NO_MODIFICATION_ALLOWED_ERR)}t[e]=n,this.exec("FileInput","setOption",e,n),this.trigger("OptionChanged",e,n,o)}},disable:function(t){var i=this.getRuntime();i&&this.exec("FileInput","disable","undefined"===e.typeOf(t)?!0:t)},refresh:function(){this.trigger("Refresh")},destroy:function(){var t=this.getRuntime();t&&(t.exec.call(this,"FileInput","destroy"),this.disconnectRuntime()),"array"===e.typeOf(this.files)&&e.each(this.files,function(e){e.destroy()}),this.files=null,this.unbindAll()}}),this.handleEventProps(l)}var l=["ready","change","cancel","mouseenter","mouseleave","mousedown","mouseup"];return c.prototype=o.instance,c}),n("moxie/file/File",["moxie/core/utils/Basic","moxie/core/utils/Mime","moxie/file/Blob"],function(e,t,i){function n(n,r){r||(r={}),i.apply(this,arguments),this.type||(this.type=t.getFileMime(r.name));var o;if(r.name)o=r.name.replace(/\\/g,"/"),o=o.substr(o.lastIndexOf("/")+1);else if(this.type){var a=this.type.split("/")[0];o=e.guid((""!==a?a:"file")+"_"),t.extensions[this.type]&&(o+="."+t.extensions[this.type][0])}e.extend(this,{name:o||e.guid("file_"),relativePath:"",lastModifiedDate:r.lastModifiedDate||(new Date).toLocaleString()})}return n.prototype=i.prototype,n}),n("moxie/file/FileDrop",["moxie/core/I18n","moxie/core/utils/Dom","moxie/core/Exceptions","moxie/core/utils/Basic","moxie/core/utils/Env","moxie/file/File","moxie/runtime/RuntimeClient","moxie/core/EventTarget","moxie/core/utils/Mime"],function(e,t,i,n,r,o,a,s,u){function c(i){var r,o=this;"string"==typeof i&&(i={drop_zone:i}),r={accept:[{title:e.translate("All Files"),extensions:"*"}],required_caps:{drag_and_drop:!0}},i="object"==typeof i?n.extend({},r,i):r,i.container=t.get(i.drop_zone)||document.body,"static"===t.getStyle(i.container,"position")&&(i.container.style.position="relative"),"string"==typeof i.accept&&(i.accept=u.mimes2extList(i.accept)),a.call(o),n.extend(o,{uid:n.guid("uid_"),ruid:null,files:null,init:function(){o.bind("RuntimeInit",function(e,t){o.ruid=t.uid,t.exec.call(o,"FileDrop","init",i),o.dispatchEvent("ready")}),o.connectRuntime(i)},destroy:function(){var e=this.getRuntime();e&&(e.exec.call(this,"FileDrop","destroy"),this.disconnectRuntime()),this.files=null,this.unbindAll()}}),this.handleEventProps(l)}var l=["ready","dragenter","dragleave","drop","error"];return c.prototype=s.instance,c}),n("moxie/file/FileReader",["moxie/core/utils/Basic","moxie/core/utils/Encode","moxie/core/Exceptions","moxie/core/EventTarget","moxie/file/Blob","moxie/runtime/RuntimeClient"],function(e,t,i,n,r,o){function a(){function n(e,n){if(this.trigger("loadstart"),this.readyState===a.LOADING)return this.trigger("error",new i.DOMException(i.DOMException.INVALID_STATE_ERR)),this.trigger("loadend"),void 0;
  5335. if(!(n instanceof r))return this.trigger("error",new i.DOMException(i.DOMException.NOT_FOUND_ERR)),this.trigger("loadend"),void 0;if(this.result=null,this.readyState=a.LOADING,n.isDetached()){var o=n.getSource();switch(e){case"readAsText":case"readAsBinaryString":this.result=o;break;case"readAsDataURL":this.result="data:"+n.type+";base64,"+t.btoa(o)}this.readyState=a.DONE,this.trigger("load"),this.trigger("loadend")}else this.connectRuntime(n.ruid),this.exec("FileReader","read",e,n)}o.call(this),e.extend(this,{uid:e.guid("uid_"),readyState:a.EMPTY,result:null,error:null,readAsBinaryString:function(e){n.call(this,"readAsBinaryString",e)},readAsDataURL:function(e){n.call(this,"readAsDataURL",e)},readAsText:function(e){n.call(this,"readAsText",e)},abort:function(){this.result=null,-1===e.inArray(this.readyState,[a.EMPTY,a.DONE])&&(this.readyState===a.LOADING&&(this.readyState=a.DONE),this.exec("FileReader","abort"),this.trigger("abort"),this.trigger("loadend"))},destroy:function(){this.abort(),this.exec("FileReader","destroy"),this.disconnectRuntime(),this.unbindAll()}}),this.handleEventProps(s),this.bind("Error",function(e,t){this.readyState=a.DONE,this.error=t},999),this.bind("Load",function(){this.readyState=a.DONE},999)}var s=["loadstart","progress","load","abort","error","loadend"];return a.EMPTY=0,a.LOADING=1,a.DONE=2,a.prototype=n.instance,a}),n("moxie/core/utils/Url",[],function(){var e=function(t,i){for(var n=["source","scheme","authority","userInfo","user","pass","host","port","relative","path","directory","file","query","fragment"],r=n.length,o={http:80,https:443},a={},s=/^(?:([^:\/?#]+):)?(?:\/\/()(?:(?:()(?:([^:@\/]*):?([^:@\/]*))?@)?([^:\/?#]*)(?::(\d*))?))?()(?:(()(?:(?:[^?#\/]*\/)*)()(?:[^?#]*))(?:\\?([^#]*))?(?:#(.*))?)/,u=s.exec(t||"");r--;)u[r]&&(a[n[r]]=u[r]);if(!a.scheme){i&&"string"!=typeof i||(i=e(i||document.location.href)),a.scheme=i.scheme,a.host=i.host,a.port=i.port;var c="";/^[^\/]/.test(a.path)&&(c=i.path,c=/\/[^\/]*\.[^\/]*$/.test(c)?c.replace(/\/[^\/]+$/,"/"):c.replace(/\/?$/,"/")),a.path=c+(a.path||"")}return a.port||(a.port=o[a.scheme]||80),a.port=parseInt(a.port,10),a.path||(a.path="/"),delete a.source,a},t=function(t){var i={http:80,https:443},n="object"==typeof t?t:e(t);return n.scheme+"://"+n.host+(n.port!==i[n.scheme]?":"+n.port:"")+n.path+(n.query?n.query:"")},i=function(t){function i(e){return[e.scheme,e.host,e.port].join("/")}return"string"==typeof t&&(t=e(t)),i(e())===i(t)};return{parseUrl:e,resolveUrl:t,hasSameOrigin:i}}),n("moxie/runtime/RuntimeTarget",["moxie/core/utils/Basic","moxie/runtime/RuntimeClient","moxie/core/EventTarget"],function(e,t,i){function n(){this.uid=e.guid("uid_"),t.call(this),this.destroy=function(){this.disconnectRuntime(),this.unbindAll()}}return n.prototype=i.instance,n}),n("moxie/file/FileReaderSync",["moxie/core/utils/Basic","moxie/runtime/RuntimeClient","moxie/core/utils/Encode"],function(e,t,i){return function(){function n(e,t){if(!t.isDetached()){var n=this.connectRuntime(t.ruid).exec.call(this,"FileReaderSync","read",e,t);return this.disconnectRuntime(),n}var r=t.getSource();switch(e){case"readAsBinaryString":return r;case"readAsDataURL":return"data:"+t.type+";base64,"+i.btoa(r);case"readAsText":for(var o="",a=0,s=r.length;s>a;a++)o+=String.fromCharCode(r[a]);return o}}t.call(this),e.extend(this,{uid:e.guid("uid_"),readAsBinaryString:function(e){return n.call(this,"readAsBinaryString",e)},readAsDataURL:function(e){return n.call(this,"readAsDataURL",e)},readAsText:function(e){return n.call(this,"readAsText",e)}})}}),n("moxie/xhr/FormData",["moxie/core/Exceptions","moxie/core/utils/Basic","moxie/file/Blob"],function(e,t,i){function n(){var e,n=[];t.extend(this,{append:function(r,o){var a=this,s=t.typeOf(o);o instanceof i?e={name:r,value:o}:"array"===s?(r+="[]",t.each(o,function(e){a.append(r,e)})):"object"===s?t.each(o,function(e,t){a.append(r+"["+t+"]",e)}):"null"===s||"undefined"===s||"number"===s&&isNaN(o)?a.append(r,"false"):n.push({name:r,value:o.toString()})},hasBlob:function(){return!!this.getBlob()},getBlob:function(){return e&&e.value||null},getBlobName:function(){return e&&e.name||null},each:function(i){t.each(n,function(e){i(e.value,e.name)}),e&&i(e.value,e.name)},destroy:function(){e=null,n=[]}})}return n}),n("moxie/xhr/XMLHttpRequest",["moxie/core/utils/Basic","moxie/core/Exceptions","moxie/core/EventTarget","moxie/core/utils/Encode","moxie/core/utils/Url","moxie/runtime/Runtime","moxie/runtime/RuntimeTarget","moxie/file/Blob","moxie/file/FileReaderSync","moxie/xhr/FormData","moxie/core/utils/Env","moxie/core/utils/Mime"],function(e,t,i,n,r,o,a,s,u,c,l,d){function m(){this.uid=e.guid("uid_")}function h(){function i(e,t){return I.hasOwnProperty(e)?1===arguments.length?l.can("define_property")?I[e]:A[e]:(l.can("define_property")?I[e]=t:A[e]=t,void 0):void 0}function u(t){function n(){R&&(R.destroy(),R=null),s.dispatchEvent("loadend"),s=null}function r(r){R.bind("LoadStart",function(e){i("readyState",h.LOADING),s.dispatchEvent("readystatechange"),s.dispatchEvent(e),L&&s.upload.dispatchEvent(e)}),R.bind("Progress",function(e){i("readyState")!==h.LOADING&&(i("readyState",h.LOADING),s.dispatchEvent("readystatechange")),s.dispatchEvent(e)}),R.bind("UploadProgress",function(e){L&&s.upload.dispatchEvent({type:"progress",lengthComputable:!1,total:e.total,loaded:e.loaded})}),R.bind("Load",function(t){i("readyState",h.DONE),i("status",Number(r.exec.call(R,"XMLHttpRequest","getStatus")||0)),i("statusText",f[i("status")]||""),i("response",r.exec.call(R,"XMLHttpRequest","getResponse",i("responseType"))),~e.inArray(i("responseType"),["text",""])?i("responseText",i("response")):"document"===i("responseType")&&i("responseXML",i("response")),U=r.exec.call(R,"XMLHttpRequest","getAllResponseHeaders"),s.dispatchEvent("readystatechange"),i("status")>0?(L&&s.upload.dispatchEvent(t),s.dispatchEvent(t)):(F=!0,s.dispatchEvent("error")),n()}),R.bind("Abort",function(e){s.dispatchEvent(e),n()}),R.bind("Error",function(e){F=!0,i("readyState",h.DONE),s.dispatchEvent("readystatechange"),M=!0,s.dispatchEvent(e),n()}),r.exec.call(R,"XMLHttpRequest","send",{url:x,method:v,async:T,user:y,password:w,headers:S,mimeType:D,encoding:O,responseType:s.responseType,withCredentials:s.withCredentials,options:k},t)}var s=this;E=(new Date).getTime(),R=new a,"string"==typeof k.required_caps&&(k.required_caps=o.parseCaps(k.required_caps)),k.required_caps=e.extend({},k.required_caps,{return_response_type:s.responseType}),t instanceof c&&(k.required_caps.send_multipart=!0),e.isEmptyObj(S)||(k.required_caps.send_custom_headers=!0),B||(k.required_caps.do_cors=!0),k.ruid?r(R.connectRuntime(k)):(R.bind("RuntimeInit",function(e,t){r(t)}),R.bind("RuntimeError",function(e,t){s.dispatchEvent("RuntimeError",t)}),R.connectRuntime(k))}function g(){i("responseText",""),i("responseXML",null),i("response",null),i("status",0),i("statusText",""),E=b=null}var x,v,y,w,E,b,R,_,A=this,I={timeout:0,readyState:h.UNSENT,withCredentials:!1,status:0,statusText:"",responseType:"",responseXML:null,responseText:null,response:null},T=!0,S={},O=null,D=null,N=!1,C=!1,L=!1,M=!1,F=!1,B=!1,P=null,H=null,k={},U="";e.extend(this,I,{uid:e.guid("uid_"),upload:new m,open:function(o,a,s,u,c){var l;if(!o||!a)throw new t.DOMException(t.DOMException.SYNTAX_ERR);if(/[\u0100-\uffff]/.test(o)||n.utf8_encode(o)!==o)throw new t.DOMException(t.DOMException.SYNTAX_ERR);if(~e.inArray(o.toUpperCase(),["CONNECT","DELETE","GET","HEAD","OPTIONS","POST","PUT","TRACE","TRACK"])&&(v=o.toUpperCase()),~e.inArray(v,["CONNECT","TRACE","TRACK"]))throw new t.DOMException(t.DOMException.SECURITY_ERR);if(a=n.utf8_encode(a),l=r.parseUrl(a),B=r.hasSameOrigin(l),x=r.resolveUrl(a),(u||c)&&!B)throw new t.DOMException(t.DOMException.INVALID_ACCESS_ERR);if(y=u||l.user,w=c||l.pass,T=s||!0,T===!1&&(i("timeout")||i("withCredentials")||""!==i("responseType")))throw new t.DOMException(t.DOMException.INVALID_ACCESS_ERR);N=!T,C=!1,S={},g.call(this),i("readyState",h.OPENED),this.dispatchEvent("readystatechange")},setRequestHeader:function(r,o){var a=["accept-charset","accept-encoding","access-control-request-headers","access-control-request-method","connection","content-length","cookie","cookie2","content-transfer-encoding","date","expect","host","keep-alive","origin","referer","te","trailer","transfer-encoding","upgrade","user-agent","via"];if(i("readyState")!==h.OPENED||C)throw new t.DOMException(t.DOMException.INVALID_STATE_ERR);if(/[\u0100-\uffff]/.test(r)||n.utf8_encode(r)!==r)throw new t.DOMException(t.DOMException.SYNTAX_ERR);return r=e.trim(r).toLowerCase(),~e.inArray(r,a)||/^(proxy\-|sec\-)/.test(r)?!1:(S[r]?S[r]+=", "+o:S[r]=o,!0)},hasRequestHeader:function(e){return e&&S[e.toLowerCase()]||!1},getAllResponseHeaders:function(){return U||""},getResponseHeader:function(t){return t=t.toLowerCase(),F||~e.inArray(t,["set-cookie","set-cookie2"])?null:U&&""!==U&&(_||(_={},e.each(U.split(/\r\n/),function(t){var i=t.split(/:\s+/);2===i.length&&(i[0]=e.trim(i[0]),_[i[0].toLowerCase()]={header:i[0],value:e.trim(i[1])})})),_.hasOwnProperty(t))?_[t].header+": "+_[t].value:null},overrideMimeType:function(n){var r,o;if(~e.inArray(i("readyState"),[h.LOADING,h.DONE]))throw new t.DOMException(t.DOMException.INVALID_STATE_ERR);if(n=e.trim(n.toLowerCase()),/;/.test(n)&&(r=n.match(/^([^;]+)(?:;\scharset\=)?(.*)$/))&&(n=r[1],r[2]&&(o=r[2])),!d.mimes[n])throw new t.DOMException(t.DOMException.SYNTAX_ERR);P=n,H=o},send:function(i,r){if(k="string"===e.typeOf(r)?{ruid:r}:r?r:{},this.readyState!==h.OPENED||C)throw new t.DOMException(t.DOMException.INVALID_STATE_ERR);if(i instanceof s)k.ruid=i.ruid,D=i.type||"application/octet-stream";else if(i instanceof c){if(i.hasBlob()){var o=i.getBlob();k.ruid=o.ruid,D=o.type||"application/octet-stream"}}else"string"==typeof i&&(O="UTF-8",D="text/plain;charset=UTF-8",i=n.utf8_encode(i));this.withCredentials||(this.withCredentials=k.required_caps&&k.required_caps.send_browser_cookies&&!B),L=!N&&this.upload.hasEventListener(),F=!1,M=!i,N||(C=!0),u.call(this,i)},abort:function(){if(F=!0,N=!1,~e.inArray(i("readyState"),[h.UNSENT,h.OPENED,h.DONE]))i("readyState",h.UNSENT);else{if(i("readyState",h.DONE),C=!1,!R)throw new t.DOMException(t.DOMException.INVALID_STATE_ERR);R.getRuntime().exec.call(R,"XMLHttpRequest","abort",M),M=!0}},destroy:function(){R&&("function"===e.typeOf(R.destroy)&&R.destroy(),R=null),this.unbindAll(),this.upload&&(this.upload.unbindAll(),this.upload=null)}}),this.handleEventProps(p.concat(["readystatechange"])),this.upload.handleEventProps(p)}var f={100:"Continue",101:"Switching Protocols",102:"Processing",200:"OK",201:"Created",202:"Accepted",203:"Non-Authoritative Information",204:"No Content",205:"Reset Content",206:"Partial Content",207:"Multi-Status",226:"IM Used",300:"Multiple Choices",301:"Moved Permanently",302:"Found",303:"See Other",304:"Not Modified",305:"Use Proxy",306:"Reserved",307:"Temporary Redirect",400:"Bad Request",401:"Unauthorized",402:"Payment Required",403:"Forbidden",404:"Not Found",405:"Method Not Allowed",406:"Not Acceptable",407:"Proxy Authentication Required",408:"Request Timeout",409:"Conflict",410:"Gone",411:"Length Required",412:"Precondition Failed",413:"Request Entity Too Large",414:"Request-URI Too Long",415:"Unsupported Media Type",416:"Requested Range Not Satisfiable",417:"Expectation Failed",422:"Unprocessable Entity",423:"Locked",424:"Failed Dependency",426:"Upgrade Required",500:"Internal Server Error",501:"Not Implemented",502:"Bad Gateway",503:"Service Unavailable",504:"Gateway Timeout",505:"HTTP Version Not Supported",506:"Variant Also Negotiates",507:"Insufficient Storage",510:"Not Extended"};m.prototype=i.instance;var p=["loadstart","progress","abort","error","load","timeout","loadend"];return h.UNSENT=0,h.OPENED=1,h.HEADERS_RECEIVED=2,h.LOADING=3,h.DONE=4,h.prototype=i.instance,h}),n("moxie/runtime/Transporter",["moxie/core/utils/Basic","moxie/core/utils/Encode","moxie/runtime/RuntimeClient","moxie/core/EventTarget"],function(e,t,i,n){function r(){function n(){l=d=0,c=this.result=null}function o(t,i){var n=this;u=i,n.bind("TransportingProgress",function(t){d=t.loaded,l>d&&-1===e.inArray(n.state,[r.IDLE,r.DONE])&&a.call(n)},999),n.bind("TransportingComplete",function(){d=l,n.state=r.DONE,c=null,n.result=u.exec.call(n,"Transporter","getAsBlob",t||"")},999),n.state=r.BUSY,n.trigger("TransportingStarted"),a.call(n)}function a(){var e,i=this,n=l-d;m>n&&(m=n),e=t.btoa(c.substr(d,m)),u.exec.call(i,"Transporter","receive",e,l)}var s,u,c,l,d,m;i.call(this),e.extend(this,{uid:e.guid("uid_"),state:r.IDLE,result:null,transport:function(t,i,r){var a=this;if(r=e.extend({chunk_size:204798},r),(s=r.chunk_size%3)&&(r.chunk_size+=3-s),m=r.chunk_size,n.call(this),c=t,l=t.length,"string"===e.typeOf(r)||r.ruid)o.call(a,i,this.connectRuntime(r));else{var u=function(e,t){a.unbind("RuntimeInit",u),o.call(a,i,t)};this.bind("RuntimeInit",u),this.connectRuntime(r)}},abort:function(){var e=this;e.state=r.IDLE,u&&(u.exec.call(e,"Transporter","clear"),e.trigger("TransportingAborted")),n.call(e)},destroy:function(){this.unbindAll(),u=null,this.disconnectRuntime(),n.call(this)}})}return r.IDLE=0,r.BUSY=1,r.DONE=2,r.prototype=n.instance,r}),n("moxie/image/Image",["moxie/core/utils/Basic","moxie/core/utils/Dom","moxie/core/Exceptions","moxie/file/FileReaderSync","moxie/xhr/XMLHttpRequest","moxie/runtime/Runtime","moxie/runtime/RuntimeClient","moxie/runtime/Transporter","moxie/core/utils/Env","moxie/core/EventTarget","moxie/file/Blob","moxie/file/File","moxie/core/utils/Encode"],function(e,t,i,n,r,o,a,s,u,c,l,d,m){function h(){function n(e){try{return e||(e=this.exec("Image","getInfo")),this.size=e.size,this.width=e.width,this.height=e.height,this.type=e.type,this.meta=e.meta,""===this.name&&(this.name=e.name),!0}catch(t){return this.trigger("error",t.code),!1}}function c(t){var n=e.typeOf(t);try{if(t instanceof h){if(!t.size)throw new i.DOMException(i.DOMException.INVALID_STATE_ERR);p.apply(this,arguments)}else if(t instanceof l){if(!~e.inArray(t.type,["image/jpeg","image/png"]))throw new i.ImageError(i.ImageError.WRONG_FORMAT);g.apply(this,arguments)}else if(-1!==e.inArray(n,["blob","file"]))c.call(this,new d(null,t),arguments[1]);else if("string"===n)"data:"===t.substr(0,5)?c.call(this,new l(null,{data:t}),arguments[1]):x.apply(this,arguments);else{if("node"!==n||"img"!==t.nodeName.toLowerCase())throw new i.DOMException(i.DOMException.TYPE_MISMATCH_ERR);c.call(this,t.src,arguments[1])}}catch(r){this.trigger("error",r.code)}}function p(t,i){var n=this.connectRuntime(t.ruid);this.ruid=n.uid,n.exec.call(this,"Image","loadFromImage",t,"undefined"===e.typeOf(i)?!0:i)}function g(t,i){function n(e){r.ruid=e.uid,e.exec.call(r,"Image","loadFromBlob",t)}var r=this;r.name=t.name||"",t.isDetached()?(this.bind("RuntimeInit",function(e,t){n(t)}),i&&"string"==typeof i.required_caps&&(i.required_caps=o.parseCaps(i.required_caps)),this.connectRuntime(e.extend({required_caps:{access_image_binary:!0,resize_image:!0}},i))):n(this.connectRuntime(t.ruid))}function x(e,t){var i,n=this;i=new r,i.open("get",e),i.responseType="blob",i.onprogress=function(e){n.trigger(e)},i.onload=function(){g.call(n,i.response,!0)},i.onerror=function(e){n.trigger(e)},i.onloadend=function(){i.destroy()},i.bind("RuntimeError",function(e,t){n.trigger("RuntimeError",t)}),i.send(null,t)}a.call(this),e.extend(this,{uid:e.guid("uid_"),ruid:null,name:"",size:0,width:0,height:0,type:"",meta:{},clone:function(){this.load.apply(this,arguments)},load:function(){c.apply(this,arguments)},resize:function(t){var n,r,o=this,a={x:0,y:0,width:o.width,height:o.height},s=e.extendIf({width:o.width,height:o.height,type:o.type||"image/jpeg",quality:90,crop:!1,fit:!0,preserveHeaders:!0,resample:"default",multipass:!0},t);try{if(!o.size)throw new i.DOMException(i.DOMException.INVALID_STATE_ERR);if(o.width>h.MAX_RESIZE_WIDTH||o.height>h.MAX_RESIZE_HEIGHT)throw new i.ImageError(i.ImageError.MAX_RESOLUTION_ERR);if(n=o.meta&&o.meta.tiff&&o.meta.tiff.Orientation||1,-1!==e.inArray(n,[5,6,7,8])){var u=s.width;s.width=s.height,s.height=u}if(s.crop){switch(r=Math.max(s.width/o.width,s.height/o.height),t.fit?(a.width=Math.min(Math.ceil(s.width/r),o.width),a.height=Math.min(Math.ceil(s.height/r),o.height),r=s.width/a.width):(a.width=Math.min(s.width,o.width),a.height=Math.min(s.height,o.height),r=1),"boolean"==typeof s.crop&&(s.crop="cc"),s.crop.toLowerCase().replace(/_/,"-")){case"rb":case"right-bottom":a.x=o.width-a.width,a.y=o.height-a.height;break;case"cb":case"center-bottom":a.x=Math.floor((o.width-a.width)/2),a.y=o.height-a.height;break;case"lb":case"left-bottom":a.x=0,a.y=o.height-a.height;break;case"lt":case"left-top":a.x=0,a.y=0;break;case"ct":case"center-top":a.x=Math.floor((o.width-a.width)/2),a.y=0;break;case"rt":case"right-top":a.x=o.width-a.width,a.y=0;break;case"rc":case"right-center":case"right-middle":a.x=o.width-a.width,a.y=Math.floor((o.height-a.height)/2);break;case"lc":case"left-center":case"left-middle":a.x=0,a.y=Math.floor((o.height-a.height)/2);break;case"cc":case"center-center":case"center-middle":default:a.x=Math.floor((o.width-a.width)/2),a.y=Math.floor((o.height-a.height)/2)}a.x=Math.max(a.x,0),a.y=Math.max(a.y,0)}else r=Math.min(s.width/o.width,s.height/o.height);this.exec("Image","resize",a,r,s)}catch(c){o.trigger("error",c.code)}},downsize:function(t){var i,n={width:this.width,height:this.height,type:this.type||"image/jpeg",quality:90,crop:!1,preserveHeaders:!0,resample:"default"};i="object"==typeof t?e.extend(n,t):e.extend(n,{width:arguments[0],height:arguments[1],crop:arguments[2],preserveHeaders:arguments[3]}),this.resize(i)},crop:function(e,t,i){this.downsize(e,t,!0,i)},getAsCanvas:function(){if(!u.can("create_canvas"))throw new i.RuntimeError(i.RuntimeError.NOT_SUPPORTED_ERR);var e=this.connectRuntime(this.ruid);return e.exec.call(this,"Image","getAsCanvas")},getAsBlob:function(e,t){if(!this.size)throw new i.DOMException(i.DOMException.INVALID_STATE_ERR);return this.exec("Image","getAsBlob",e||"image/jpeg",t||90)},getAsDataURL:function(e,t){if(!this.size)throw new i.DOMException(i.DOMException.INVALID_STATE_ERR);return this.exec("Image","getAsDataURL",e||"image/jpeg",t||90)},getAsBinaryString:function(e,t){var i=this.getAsDataURL(e,t);return m.atob(i.substring(i.indexOf("base64,")+7))},embed:function(n,r){function o(t,r){var o=this;if(u.can("create_canvas")){var l=o.getAsCanvas();if(l)return n.appendChild(l),l=null,o.destroy(),c.trigger("embedded"),void 0}var d=o.getAsDataURL(t,r);if(!d)throw new i.ImageError(i.ImageError.WRONG_FORMAT);if(u.can("use_data_uri_of",d.length))n.innerHTML='<img src="'+d+'" width="'+o.width+'" height="'+o.height+'" />',o.destroy(),c.trigger("embedded");else{var h=new s;h.bind("TransportingComplete",function(){a=c.connectRuntime(this.result.ruid),c.bind("Embedded",function(){e.extend(a.getShimContainer().style,{top:"0px",left:"0px",width:o.width+"px",height:o.height+"px"}),a=null},999),a.exec.call(c,"ImageView","display",this.result.uid,width,height),o.destroy()}),h.transport(m.atob(d.substring(d.indexOf("base64,")+7)),t,{required_caps:{display_media:!0},runtime_order:"flash,silverlight",container:n})}}var a,c=this,l=e.extend({width:this.width,height:this.height,type:this.type||"image/jpeg",quality:90},r);try{if(!(n=t.get(n)))throw new i.DOMException(i.DOMException.INVALID_NODE_TYPE_ERR);if(!this.size)throw new i.DOMException(i.DOMException.INVALID_STATE_ERR);this.width>h.MAX_RESIZE_WIDTH||this.height>h.MAX_RESIZE_HEIGHT;var d=new h;return d.bind("Resize",function(){o.call(this,l.type,l.quality)}),d.bind("Load",function(){d.downsize(l)}),this.meta.thumb&&this.meta.thumb.width>=l.width&&this.meta.thumb.height>=l.height?d.load(this.meta.thumb.data):d.clone(this,!1),d}catch(f){this.trigger("error",f.code)}},destroy:function(){this.ruid&&(this.getRuntime().exec.call(this,"Image","destroy"),this.disconnectRuntime()),this.unbindAll()}}),this.handleEventProps(f),this.bind("Load Resize",function(){return n.call(this)},999)}var f=["progress","load","error","resize","embedded"];return h.MAX_RESIZE_WIDTH=8192,h.MAX_RESIZE_HEIGHT=8192,h.prototype=c.instance,h}),n("moxie/runtime/html5/Runtime",["moxie/core/utils/Basic","moxie/core/Exceptions","moxie/runtime/Runtime","moxie/core/utils/Env"],function(e,t,i,n){function o(t){var o=this,u=i.capTest,c=i.capTrue,l=e.extend({access_binary:u(window.FileReader||window.File&&window.File.getAsDataURL),access_image_binary:function(){return o.can("access_binary")&&!!s.Image},display_media:u((n.can("create_canvas")||n.can("use_data_uri_over32kb"))&&r("moxie/image/Image")),do_cors:u(window.XMLHttpRequest&&"withCredentials"in new XMLHttpRequest),drag_and_drop:u(function(){var e=document.createElement("div");return("draggable"in e||"ondragstart"in e&&"ondrop"in e)&&("IE"!==n.browser||n.verComp(n.version,9,">"))}()),filter_by_extension:u(function(){return!("Chrome"===n.browser&&n.verComp(n.version,28,"<")||"IE"===n.browser&&n.verComp(n.version,10,"<")||"Safari"===n.browser&&n.verComp(n.version,7,"<")||"Firefox"===n.browser&&n.verComp(n.version,37,"<"))}()),return_response_headers:c,return_response_type:function(e){return"json"===e&&window.JSON?!0:n.can("return_response_type",e)},return_status_code:c,report_upload_progress:u(window.XMLHttpRequest&&(new XMLHttpRequest).upload),resize_image:function(){return o.can("access_binary")&&n.can("create_canvas")},select_file:function(){return n.can("use_fileinput")&&window.File},select_folder:function(){return o.can("select_file")&&("Chrome"===n.browser&&n.verComp(n.version,21,">=")||"Firefox"===n.browser&&n.verComp(n.version,42,">="))},select_multiple:function(){return!(!o.can("select_file")||"Safari"===n.browser&&"Windows"===n.os||"iOS"===n.os&&n.verComp(n.osVersion,"7.0.0",">")&&n.verComp(n.osVersion,"8.0.0","<"))},send_binary_string:u(window.XMLHttpRequest&&((new XMLHttpRequest).sendAsBinary||window.Uint8Array&&window.ArrayBuffer)),send_custom_headers:u(window.XMLHttpRequest),send_multipart:function(){return!!(window.XMLHttpRequest&&(new XMLHttpRequest).upload&&window.FormData)||o.can("send_binary_string")},slice_blob:u(window.File&&(File.prototype.mozSlice||File.prototype.webkitSlice||File.prototype.slice)),stream_upload:function(){return o.can("slice_blob")&&o.can("send_multipart")},summon_file_dialog:function(){return o.can("select_file")&&("Firefox"===n.browser&&n.verComp(n.version,4,">=")||"Opera"===n.browser&&n.verComp(n.version,12,">=")||"IE"===n.browser&&n.verComp(n.version,10,">=")||!!~e.inArray(n.browser,["Chrome","Safari","Edge"]))},upload_filesize:c,use_http_method:c},arguments[2]);i.call(this,t,arguments[1]||a,l),e.extend(this,{init:function(){this.trigger("Init")},destroy:function(e){return function(){e.call(o),e=o=null}}(this.destroy)}),e.extend(this.getShim(),s)}var a="html5",s={};return i.addConstructor(a,o),s}),n("moxie/runtime/html5/file/Blob",["moxie/runtime/html5/Runtime","moxie/file/Blob"],function(e,t){function i(){function e(e,t,i){var n;if(!window.File.prototype.slice)return(n=window.File.prototype.webkitSlice||window.File.prototype.mozSlice)?n.call(e,t,i):null;try{return e.slice(),e.slice(t,i)}catch(r){return e.slice(t,i-t)}}this.slice=function(){return new t(this.getRuntime().uid,e.apply(this,arguments))}}return e.Blob=i}),n("moxie/core/utils/Events",["moxie/core/utils/Basic"],function(e){function t(){this.returnValue=!1}function i(){this.cancelBubble=!0}var n={},r="moxie_"+e.guid(),o=function(o,a,s,u){var c,l;a=a.toLowerCase(),o.addEventListener?(c=s,o.addEventListener(a,c,!1)):o.attachEvent&&(c=function(){var e=window.event;e.target||(e.target=e.srcElement),e.preventDefault=t,e.stopPropagation=i,s(e)},o.attachEvent("on"+a,c)),o[r]||(o[r]=e.guid()),n.hasOwnProperty(o[r])||(n[o[r]]={}),l=n[o[r]],l.hasOwnProperty(a)||(l[a]=[]),l[a].push({func:c,orig:s,key:u})},a=function(t,i,o){var a,s;if(i=i.toLowerCase(),t[r]&&n[t[r]]&&n[t[r]][i]){a=n[t[r]][i];for(var u=a.length-1;u>=0&&(a[u].orig!==o&&a[u].key!==o||(t.removeEventListener?t.removeEventListener(i,a[u].func,!1):t.detachEvent&&t.detachEvent("on"+i,a[u].func),a[u].orig=null,a[u].func=null,a.splice(u,1),o===s));u--);if(a.length||delete n[t[r]][i],e.isEmptyObj(n[t[r]])){delete n[t[r]];try{delete t[r]}catch(c){t[r]=s}}}},s=function(t,i){t&&t[r]&&e.each(n[t[r]],function(e,n){a(t,n,i)})};return{addEvent:o,removeEvent:a,removeAllEvents:s}}),n("moxie/runtime/html5/file/FileInput",["moxie/runtime/html5/Runtime","moxie/file/File","moxie/core/utils/Basic","moxie/core/utils/Dom","moxie/core/utils/Events","moxie/core/utils/Mime","moxie/core/utils/Env"],function(e,t,i,n,r,o,a){function s(){var e,s;i.extend(this,{init:function(u){var c,l,d,m,h,f,p=this,g=p.getRuntime();e=u,d=e.accept.mimes||o.extList2mimes(e.accept,g.can("filter_by_extension")),l=g.getShimContainer(),l.innerHTML='<input id="'+g.uid+'" type="file" style="font-size:999px;opacity:0;"'+(e.multiple&&g.can("select_multiple")?"multiple":"")+(e.directory&&g.can("select_folder")?"webkitdirectory directory":"")+(d?' accept="'+d.join(",")+'"':"")+" />",c=n.get(g.uid),i.extend(c.style,{position:"absolute",top:0,left:0,width:"100%",height:"100%"}),m=n.get(e.browse_button),s=n.getStyle(m,"z-index")||"auto",g.can("summon_file_dialog")&&("static"===n.getStyle(m,"position")&&(m.style.position="relative"),r.addEvent(m,"click",function(e){var t=n.get(g.uid);t&&!t.disabled&&t.click(),e.preventDefault()},p.uid),p.bind("Refresh",function(){h=parseInt(s,10)||1,n.get(e.browse_button).style.zIndex=h,this.getRuntime().getShimContainer().style.zIndex=h-1})),f=g.can("summon_file_dialog")?m:l,r.addEvent(f,"mouseover",function(){p.trigger("mouseenter")},p.uid),r.addEvent(f,"mouseout",function(){p.trigger("mouseleave")},p.uid),r.addEvent(f,"mousedown",function(){p.trigger("mousedown")},p.uid),r.addEvent(n.get(e.container),"mouseup",function(){p.trigger("mouseup")},p.uid),c.onchange=function x(){if(p.files=[],i.each(this.files,function(i){var n="";return e.directory&&"."==i.name?!0:(i.webkitRelativePath&&(n="/"+i.webkitRelativePath.replace(/^\//,"")),i=new t(g.uid,i),i.relativePath=n,p.files.push(i),void 0)}),"IE"!==a.browser&&"IEMobile"!==a.browser)this.value="";else{var n=this.cloneNode(!0);this.parentNode.replaceChild(n,this),n.onchange=x}p.files.length&&p.trigger("change")},p.trigger({type:"ready",async:!0}),l=null},setOption:function(e,t){var i=this.getRuntime(),r=n.get(i.uid);switch(e){case"accept":if(t){var a=t.mimes||o.extList2mimes(t,i.can("filter_by_extension"));r.setAttribute("accept",a.join(","))}else r.removeAttribute("accept");break;case"directory":t&&i.can("select_folder")?(r.setAttribute("directory",""),r.setAttribute("webkitdirectory","")):(r.removeAttribute("directory"),r.removeAttribute("webkitdirectory"));break;case"multiple":t&&i.can("select_multiple")?r.setAttribute("multiple",""):r.removeAttribute("multiple")}},disable:function(e){var t,i=this.getRuntime();(t=n.get(i.uid))&&(t.disabled=!!e)},destroy:function(){var t=this.getRuntime(),i=t.getShim(),o=t.getShimContainer(),a=e&&n.get(e.container),u=e&&n.get(e.browse_button);a&&r.removeAllEvents(a,this.uid),u&&(r.removeAllEvents(u,this.uid),u.style.zIndex=s),o&&(r.removeAllEvents(o,this.uid),o.innerHTML=""),i.removeInstance(this.uid),e=o=a=u=i=null}})}return e.FileInput=s}),n("moxie/runtime/html5/file/FileDrop",["moxie/runtime/html5/Runtime","moxie/file/File","moxie/core/utils/Basic","moxie/core/utils/Dom","moxie/core/utils/Events","moxie/core/utils/Mime"],function(e,t,i,n,r,o){function a(){function e(e){if(!e.dataTransfer||!e.dataTransfer.types)return!1;var t=i.toArray(e.dataTransfer.types||[]);return-1!==i.inArray("Files",t)||-1!==i.inArray("public.file-url",t)||-1!==i.inArray("application/x-moz-file",t)}function a(e,i){if(u(e)){var n=new t(f,e);n.relativePath=i||"",p.push(n)}}function s(e){for(var t=[],n=0;n<e.length;n++)[].push.apply(t,e[n].extensions.split(/\s*,\s*/));return-1===i.inArray("*",t)?t:[]}function u(e){if(!g.length)return!0;var t=o.getFileExtension(e.name);return!t||-1!==i.inArray(t,g)}function c(e,t){var n=[];i.each(e,function(e){var t=e.webkitGetAsEntry();t&&(t.isFile?a(e.getAsFile(),t.fullPath):n.push(t))}),n.length?l(n,t):t()}function l(e,t){var n=[];i.each(e,function(e){n.push(function(t){d(e,t)})}),i.inSeries(n,function(){t()})}function d(e,t){e.isFile?e.file(function(i){a(i,e.fullPath),t()},function(){t()}):e.isDirectory?m(e,t):t()}function m(e,t){function i(e){r.readEntries(function(t){t.length?([].push.apply(n,t),i(e)):e()},e)}var n=[],r=e.createReader();i(function(){l(n,t)})}var h,f,p=[],g=[];i.extend(this,{init:function(t){var n,o=this;h=t,f=o.ruid,g=s(h.accept),n=h.container,r.addEvent(n,"dragover",function(t){e(t)&&(t.preventDefault(),t.dataTransfer.dropEffect="copy")},o.uid),r.addEvent(n,"drop",function(t){e(t)&&(t.preventDefault(),p=[],t.dataTransfer.items&&t.dataTransfer.items[0].webkitGetAsEntry?c(t.dataTransfer.items,function(){o.files=p,o.trigger("drop")}):(i.each(t.dataTransfer.files,function(e){a(e)}),o.files=p,o.trigger("drop")))},o.uid),r.addEvent(n,"dragenter",function(){o.trigger("dragenter")},o.uid),r.addEvent(n,"dragleave",function(){o.trigger("dragleave")},o.uid)},destroy:function(){r.removeAllEvents(h&&n.get(h.container),this.uid),f=p=g=h=null}})}return e.FileDrop=a}),n("moxie/runtime/html5/file/FileReader",["moxie/runtime/html5/Runtime","moxie/core/utils/Encode","moxie/core/utils/Basic"],function(e,t,i){function n(){function e(e){return t.atob(e.substring(e.indexOf("base64,")+7))}var n,r=!1;i.extend(this,{read:function(t,o){var a=this;a.result="",n=new window.FileReader,n.addEventListener("progress",function(e){a.trigger(e)}),n.addEventListener("load",function(t){a.result=r?e(n.result):n.result,a.trigger(t)}),n.addEventListener("error",function(e){a.trigger(e,n.error)}),n.addEventListener("loadend",function(e){n=null,a.trigger(e)}),"function"===i.typeOf(n[t])?(r=!1,n[t](o.getSource())):"readAsBinaryString"===t&&(r=!0,n.readAsDataURL(o.getSource()))},abort:function(){n&&n.abort()},destroy:function(){n=null}})}return e.FileReader=n}),n("moxie/runtime/html5/xhr/XMLHttpRequest",["moxie/runtime/html5/Runtime","moxie/core/utils/Basic","moxie/core/utils/Mime","moxie/core/utils/Url","moxie/file/File","moxie/file/Blob","moxie/xhr/FormData","moxie/core/Exceptions","moxie/core/utils/Env"],function(e,t,i,n,r,o,a,s,u){function c(){function e(e,t){var i,n,r=this;i=t.getBlob().getSource(),n=new window.FileReader,n.onload=function(){t.append(t.getBlobName(),new o(null,{type:i.type,data:n.result})),f.send.call(r,e,t)},n.readAsBinaryString(i)}function c(){return!window.XMLHttpRequest||"IE"===u.browser&&u.verComp(u.version,8,"<")?function(){for(var e=["Msxml2.XMLHTTP.6.0","Microsoft.XMLHTTP"],t=0;t<e.length;t++)try{return new ActiveXObject(e[t])}catch(i){}}():new window.XMLHttpRequest}function l(e){var t=e.responseXML,i=e.responseText;return"IE"===u.browser&&i&&t&&!t.documentElement&&/[^\/]+\/[^\+]+\+xml/.test(e.getResponseHeader("Content-Type"))&&(t=new window.ActiveXObject("Microsoft.XMLDOM"),t.async=!1,t.validateOnParse=!1,t.loadXML(i)),t&&("IE"===u.browser&&0!==t.parseError||!t.documentElement||"parsererror"===t.documentElement.tagName)?null:t}function d(e){var t="----moxieboundary"+(new Date).getTime(),i="--",n="\r\n",r="",a=this.getRuntime();if(!a.can("send_binary_string"))throw new s.RuntimeError(s.RuntimeError.NOT_SUPPORTED_ERR);return m.setRequestHeader("Content-Type","multipart/form-data; boundary="+t),e.each(function(e,a){r+=e instanceof o?i+t+n+'Content-Disposition: form-data; name="'+a+'"; filename="'+unescape(encodeURIComponent(e.name||"blob"))+'"'+n+"Content-Type: "+(e.type||"application/octet-stream")+n+n+e.getSource()+n:i+t+n+'Content-Disposition: form-data; name="'+a+'"'+n+n+unescape(encodeURIComponent(e))+n}),r+=i+t+i+n}var m,h,f=this;t.extend(this,{send:function(i,r){var s=this,l="Mozilla"===u.browser&&u.verComp(u.version,4,">=")&&u.verComp(u.version,7,"<"),f="Android Browser"===u.browser,p=!1;if(h=i.url.replace(/^.+?\/([\w\-\.]+)$/,"$1").toLowerCase(),m=c(),m.open(i.method,i.url,i.async,i.user,i.password),r instanceof o)r.isDetached()&&(p=!0),r=r.getSource();
  5336. else if(r instanceof a){if(r.hasBlob())if(r.getBlob().isDetached())r=d.call(s,r),p=!0;else if((l||f)&&"blob"===t.typeOf(r.getBlob().getSource())&&window.FileReader)return e.call(s,i,r),void 0;if(r instanceof a){var g=new window.FormData;r.each(function(e,t){e instanceof o?g.append(t,e.getSource()):g.append(t,e)}),r=g}}m.upload?(i.withCredentials&&(m.withCredentials=!0),m.addEventListener("load",function(e){s.trigger(e)}),m.addEventListener("error",function(e){s.trigger(e)}),m.addEventListener("progress",function(e){s.trigger(e)}),m.upload.addEventListener("progress",function(e){s.trigger({type:"UploadProgress",loaded:e.loaded,total:e.total})})):m.onreadystatechange=function(){switch(m.readyState){case 1:break;case 2:break;case 3:var e,t;try{n.hasSameOrigin(i.url)&&(e=m.getResponseHeader("Content-Length")||0),m.responseText&&(t=m.responseText.length)}catch(r){e=t=0}s.trigger({type:"progress",lengthComputable:!!e,total:parseInt(e,10),loaded:t});break;case 4:m.onreadystatechange=function(){},0===m.status?s.trigger("error"):s.trigger("load")}},t.isEmptyObj(i.headers)||t.each(i.headers,function(e,t){m.setRequestHeader(t,e)}),""!==i.responseType&&"responseType"in m&&(m.responseType="json"!==i.responseType||u.can("return_response_type","json")?i.responseType:"text"),p?m.sendAsBinary?m.sendAsBinary(r):function(){for(var e=new Uint8Array(r.length),t=0;t<r.length;t++)e[t]=255&r.charCodeAt(t);m.send(e.buffer)}():m.send(r),s.trigger("loadstart")},getStatus:function(){try{if(m)return m.status}catch(e){}return 0},getResponse:function(e){var t=this.getRuntime();try{switch(e){case"blob":var n=new r(t.uid,m.response),o=m.getResponseHeader("Content-Disposition");if(o){var a=o.match(/filename=([\'\"'])([^\1]+)\1/);a&&(h=a[2])}return n.name=h,n.type||(n.type=i.getFileMime(h)),n;case"json":return u.can("return_response_type","json")?m.response:200===m.status&&window.JSON?JSON.parse(m.responseText):null;case"document":return l(m);default:return""!==m.responseText?m.responseText:null}}catch(s){return null}},getAllResponseHeaders:function(){try{return m.getAllResponseHeaders()}catch(e){}return""},abort:function(){m&&m.abort()},destroy:function(){f=h=null}})}return e.XMLHttpRequest=c}),n("moxie/runtime/html5/utils/BinaryReader",["moxie/core/utils/Basic"],function(e){function t(e){e instanceof ArrayBuffer?i.apply(this,arguments):n.apply(this,arguments)}function i(t){var i=new DataView(t);e.extend(this,{readByteAt:function(e){return i.getUint8(e)},writeByteAt:function(e,t){i.setUint8(e,t)},SEGMENT:function(e,n,r){switch(arguments.length){case 2:return t.slice(e,e+n);case 1:return t.slice(e);case 3:if(null===r&&(r=new ArrayBuffer),r instanceof ArrayBuffer){var o=new Uint8Array(this.length()-n+r.byteLength);e>0&&o.set(new Uint8Array(t.slice(0,e)),0),o.set(new Uint8Array(r),e),o.set(new Uint8Array(t.slice(e+n)),e+r.byteLength),this.clear(),t=o.buffer,i=new DataView(t);break}default:return t}},length:function(){return t?t.byteLength:0},clear:function(){i=t=null}})}function n(t){function i(e,i,n){n=3===arguments.length?n:t.length-i-1,t=t.substr(0,i)+e+t.substr(n+i)}e.extend(this,{readByteAt:function(e){return t.charCodeAt(e)},writeByteAt:function(e,t){i(String.fromCharCode(t),e,1)},SEGMENT:function(e,n,r){switch(arguments.length){case 1:return t.substr(e);case 2:return t.substr(e,n);case 3:i(null!==r?r:"",e,n);break;default:return t}},length:function(){return t?t.length:0},clear:function(){t=null}})}return e.extend(t.prototype,{littleEndian:!1,read:function(e,t){var i,n,r;if(e+t>this.length())throw new Error("You are trying to read outside the source boundaries.");for(n=this.littleEndian?0:-8*(t-1),r=0,i=0;t>r;r++)i|=this.readByteAt(e+r)<<Math.abs(n+8*r);return i},write:function(e,t,i){var n,r;if(e>this.length())throw new Error("You are trying to write outside the source boundaries.");for(n=this.littleEndian?0:-8*(i-1),r=0;i>r;r++)this.writeByteAt(e+r,255&t>>Math.abs(n+8*r))},BYTE:function(e){return this.read(e,1)},SHORT:function(e){return this.read(e,2)},LONG:function(e){return this.read(e,4)},SLONG:function(e){var t=this.read(e,4);return t>2147483647?t-4294967296:t},CHAR:function(e){return String.fromCharCode(this.read(e,1))},STRING:function(e,t){return this.asArray("CHAR",e,t).join("")},asArray:function(e,t,i){for(var n=[],r=0;i>r;r++)n[r]=this[e](t+r);return n}}),t}),n("moxie/runtime/html5/image/JPEGHeaders",["moxie/runtime/html5/utils/BinaryReader","moxie/core/Exceptions"],function(e,t){return function i(n){var r,o,a,s=[],u=0;if(r=new e(n),65496!==r.SHORT(0))throw r.clear(),new t.ImageError(t.ImageError.WRONG_FORMAT);for(o=2;o<=r.length();)if(a=r.SHORT(o),a>=65488&&65495>=a)o+=2;else{if(65498===a||65497===a)break;u=r.SHORT(o+2)+2,a>=65505&&65519>=a&&s.push({hex:a,name:"APP"+(15&a),start:o,length:u,segment:r.SEGMENT(o,u)}),o+=u}return r.clear(),{headers:s,restore:function(t){var i,n,r;for(r=new e(t),o=65504==r.SHORT(2)?4+r.SHORT(4):2,n=0,i=s.length;i>n;n++)r.SEGMENT(o,0,s[n].segment),o+=s[n].length;return t=r.SEGMENT(),r.clear(),t},strip:function(t){var n,r,o,a;for(o=new i(t),r=o.headers,o.purge(),n=new e(t),a=r.length;a--;)n.SEGMENT(r[a].start,r[a].length,"");return t=n.SEGMENT(),n.clear(),t},get:function(e){for(var t=[],i=0,n=s.length;n>i;i++)s[i].name===e.toUpperCase()&&t.push(s[i].segment);return t},set:function(e,t){var i,n,r,o=[];for("string"==typeof t?o.push(t):o=t,i=n=0,r=s.length;r>i&&(s[i].name===e.toUpperCase()&&(s[i].segment=o[n],s[i].length=o[n].length,n++),!(n>=o.length));i++);},purge:function(){this.headers=s=[]}}}}),n("moxie/runtime/html5/image/ExifParser",["moxie/core/utils/Basic","moxie/runtime/html5/utils/BinaryReader","moxie/core/Exceptions"],function(e,i,n){function r(o){function a(i,r){var o,a,s,u,c,m,h,f,p=this,g=[],x={},v={1:"BYTE",7:"UNDEFINED",2:"ASCII",3:"SHORT",4:"LONG",5:"RATIONAL",9:"SLONG",10:"SRATIONAL"},y={BYTE:1,UNDEFINED:1,ASCII:1,SHORT:2,LONG:4,RATIONAL:8,SLONG:4,SRATIONAL:8};for(o=p.SHORT(i),a=0;o>a;a++)if(g=[],h=i+2+12*a,s=r[p.SHORT(h)],s!==t){if(u=v[p.SHORT(h+=2)],c=p.LONG(h+=2),m=y[u],!m)throw new n.ImageError(n.ImageError.INVALID_META_ERR);if(h+=4,m*c>4&&(h=p.LONG(h)+d.tiffHeader),h+m*c>=this.length())throw new n.ImageError(n.ImageError.INVALID_META_ERR);"ASCII"!==u?(g=p.asArray(u,h,c),f=1==c?g[0]:g,x[s]=l.hasOwnProperty(s)&&"object"!=typeof f?l[s][f]:f):x[s]=e.trim(p.STRING(h,c).replace(/\0$/,""))}return x}function s(e,t,i){var n,r,o,a=0;if("string"==typeof t){var s=c[e.toLowerCase()];for(var u in s)if(s[u]===t){t=u;break}}n=d[e.toLowerCase()+"IFD"],r=this.SHORT(n);for(var l=0;r>l;l++)if(o=n+12*l+2,this.SHORT(o)==t){a=o+8;break}if(!a)return!1;try{this.write(a,i,4)}catch(m){return!1}return!0}var u,c,l,d,m,h;if(i.call(this,o),c={tiff:{274:"Orientation",270:"ImageDescription",271:"Make",272:"Model",305:"Software",34665:"ExifIFDPointer",34853:"GPSInfoIFDPointer"},exif:{36864:"ExifVersion",40961:"ColorSpace",40962:"PixelXDimension",40963:"PixelYDimension",36867:"DateTimeOriginal",33434:"ExposureTime",33437:"FNumber",34855:"ISOSpeedRatings",37377:"ShutterSpeedValue",37378:"ApertureValue",37383:"MeteringMode",37384:"LightSource",37385:"Flash",37386:"FocalLength",41986:"ExposureMode",41987:"WhiteBalance",41990:"SceneCaptureType",41988:"DigitalZoomRatio",41992:"Contrast",41993:"Saturation",41994:"Sharpness"},gps:{0:"GPSVersionID",1:"GPSLatitudeRef",2:"GPSLatitude",3:"GPSLongitudeRef",4:"GPSLongitude"},thumb:{513:"JPEGInterchangeFormat",514:"JPEGInterchangeFormatLength"}},l={ColorSpace:{1:"sRGB",0:"Uncalibrated"},MeteringMode:{0:"Unknown",1:"Average",2:"CenterWeightedAverage",3:"Spot",4:"MultiSpot",5:"Pattern",6:"Partial",255:"Other"},LightSource:{1:"Daylight",2:"Fliorescent",3:"Tungsten",4:"Flash",9:"Fine weather",10:"Cloudy weather",11:"Shade",12:"Daylight fluorescent (D 5700 - 7100K)",13:"Day white fluorescent (N 4600 -5400K)",14:"Cool white fluorescent (W 3900 - 4500K)",15:"White fluorescent (WW 3200 - 3700K)",17:"Standard light A",18:"Standard light B",19:"Standard light C",20:"D55",21:"D65",22:"D75",23:"D50",24:"ISO studio tungsten",255:"Other"},Flash:{0:"Flash did not fire",1:"Flash fired",5:"Strobe return light not detected",7:"Strobe return light detected",9:"Flash fired, compulsory flash mode",13:"Flash fired, compulsory flash mode, return light not detected",15:"Flash fired, compulsory flash mode, return light detected",16:"Flash did not fire, compulsory flash mode",24:"Flash did not fire, auto mode",25:"Flash fired, auto mode",29:"Flash fired, auto mode, return light not detected",31:"Flash fired, auto mode, return light detected",32:"No flash function",65:"Flash fired, red-eye reduction mode",69:"Flash fired, red-eye reduction mode, return light not detected",71:"Flash fired, red-eye reduction mode, return light detected",73:"Flash fired, compulsory flash mode, red-eye reduction mode",77:"Flash fired, compulsory flash mode, red-eye reduction mode, return light not detected",79:"Flash fired, compulsory flash mode, red-eye reduction mode, return light detected",89:"Flash fired, auto mode, red-eye reduction mode",93:"Flash fired, auto mode, return light not detected, red-eye reduction mode",95:"Flash fired, auto mode, return light detected, red-eye reduction mode"},ExposureMode:{0:"Auto exposure",1:"Manual exposure",2:"Auto bracket"},WhiteBalance:{0:"Auto white balance",1:"Manual white balance"},SceneCaptureType:{0:"Standard",1:"Landscape",2:"Portrait",3:"Night scene"},Contrast:{0:"Normal",1:"Soft",2:"Hard"},Saturation:{0:"Normal",1:"Low saturation",2:"High saturation"},Sharpness:{0:"Normal",1:"Soft",2:"Hard"},GPSLatitudeRef:{N:"North latitude",S:"South latitude"},GPSLongitudeRef:{E:"East longitude",W:"West longitude"}},d={tiffHeader:10},m=d.tiffHeader,u={clear:this.clear},e.extend(this,{read:function(){try{return r.prototype.read.apply(this,arguments)}catch(e){throw new n.ImageError(n.ImageError.INVALID_META_ERR)}},write:function(){try{return r.prototype.write.apply(this,arguments)}catch(e){throw new n.ImageError(n.ImageError.INVALID_META_ERR)}},UNDEFINED:function(){return this.BYTE.apply(this,arguments)},RATIONAL:function(e){return this.LONG(e)/this.LONG(e+4)},SRATIONAL:function(e){return this.SLONG(e)/this.SLONG(e+4)},ASCII:function(e){return this.CHAR(e)},TIFF:function(){return h||null},EXIF:function(){var t=null;if(d.exifIFD){try{t=a.call(this,d.exifIFD,c.exif)}catch(i){return null}if(t.ExifVersion&&"array"===e.typeOf(t.ExifVersion)){for(var n=0,r="";n<t.ExifVersion.length;n++)r+=String.fromCharCode(t.ExifVersion[n]);t.ExifVersion=r}}return t},GPS:function(){var t=null;if(d.gpsIFD){try{t=a.call(this,d.gpsIFD,c.gps)}catch(i){return null}t.GPSVersionID&&"array"===e.typeOf(t.GPSVersionID)&&(t.GPSVersionID=t.GPSVersionID.join("."))}return t},thumb:function(){if(d.IFD1)try{var e=a.call(this,d.IFD1,c.thumb);if("JPEGInterchangeFormat"in e)return this.SEGMENT(d.tiffHeader+e.JPEGInterchangeFormat,e.JPEGInterchangeFormatLength)}catch(t){}return null},setExif:function(e,t){return"PixelXDimension"!==e&&"PixelYDimension"!==e?!1:s.call(this,"exif",e,t)},clear:function(){u.clear(),o=c=l=h=d=u=null}}),65505!==this.SHORT(0)||"EXIF\0"!==this.STRING(4,5).toUpperCase())throw new n.ImageError(n.ImageError.INVALID_META_ERR);if(this.littleEndian=18761==this.SHORT(m),42!==this.SHORT(m+=2))throw new n.ImageError(n.ImageError.INVALID_META_ERR);d.IFD0=d.tiffHeader+this.LONG(m+=2),h=a.call(this,d.IFD0,c.tiff),"ExifIFDPointer"in h&&(d.exifIFD=d.tiffHeader+h.ExifIFDPointer,delete h.ExifIFDPointer),"GPSInfoIFDPointer"in h&&(d.gpsIFD=d.tiffHeader+h.GPSInfoIFDPointer,delete h.GPSInfoIFDPointer),e.isEmptyObj(h)&&(h=null);var f=this.LONG(d.IFD0+12*this.SHORT(d.IFD0)+2);f&&(d.IFD1=d.tiffHeader+f)}return r.prototype=i.prototype,r}),n("moxie/runtime/html5/image/JPEG",["moxie/core/utils/Basic","moxie/core/Exceptions","moxie/runtime/html5/image/JPEGHeaders","moxie/runtime/html5/utils/BinaryReader","moxie/runtime/html5/image/ExifParser"],function(e,t,i,n,r){function o(o){function a(e){var t,i,n=0;for(e||(e=c);n<=e.length();){if(t=e.SHORT(n+=2),t>=65472&&65475>=t)return n+=5,{height:e.SHORT(n),width:e.SHORT(n+=2)};i=e.SHORT(n+=2),n+=i-2}return null}function s(){var e,t,i=d.thumb();return i&&(e=new n(i),t=a(e),e.clear(),t)?(t.data=i,t):null}function u(){d&&l&&c&&(d.clear(),l.purge(),c.clear(),m=l=d=c=null)}var c,l,d,m;if(c=new n(o),65496!==c.SHORT(0))throw new t.ImageError(t.ImageError.WRONG_FORMAT);l=new i(o);try{d=new r(l.get("app1")[0])}catch(h){}m=a.call(this),e.extend(this,{type:"image/jpeg",size:c.length(),width:m&&m.width||0,height:m&&m.height||0,setExif:function(t,i){return d?("object"===e.typeOf(t)?e.each(t,function(e,t){d.setExif(t,e)}):d.setExif(t,i),l.set("app1",d.SEGMENT()),void 0):!1},writeHeaders:function(){return arguments.length?l.restore(arguments[0]):l.restore(o)},stripHeaders:function(e){return l.strip(e)},purge:function(){u.call(this)}}),d&&(this.meta={tiff:d.TIFF(),exif:d.EXIF(),gps:d.GPS(),thumb:s()})}return o}),n("moxie/runtime/html5/image/PNG",["moxie/core/Exceptions","moxie/core/utils/Basic","moxie/runtime/html5/utils/BinaryReader"],function(e,t,i){function n(n){function r(){var e,t;return e=a.call(this,8),"IHDR"==e.type?(t=e.start,{width:s.LONG(t),height:s.LONG(t+=4)}):null}function o(){s&&(s.clear(),n=l=u=c=s=null)}function a(e){var t,i,n,r;return t=s.LONG(e),i=s.STRING(e+=4,4),n=e+=4,r=s.LONG(e+t),{length:t,type:i,start:n,CRC:r}}var s,u,c,l;s=new i(n),function(){var t=0,i=0,n=[35152,20039,3338,6666];for(i=0;i<n.length;i++,t+=2)if(n[i]!=s.SHORT(t))throw new e.ImageError(e.ImageError.WRONG_FORMAT)}(),l=r.call(this),t.extend(this,{type:"image/png",size:s.length(),width:l.width,height:l.height,purge:function(){o.call(this)}}),o.call(this)}return n}),n("moxie/runtime/html5/image/ImageInfo",["moxie/core/utils/Basic","moxie/core/Exceptions","moxie/runtime/html5/image/JPEG","moxie/runtime/html5/image/PNG"],function(e,t,i,n){return function(r){var o,a=[i,n];o=function(){for(var e=0;e<a.length;e++)try{return new a[e](r)}catch(i){}throw new t.ImageError(t.ImageError.WRONG_FORMAT)}(),e.extend(this,{type:"",size:0,width:0,height:0,setExif:function(){},writeHeaders:function(e){return e},stripHeaders:function(e){return e},purge:function(){r=null}}),e.extend(this,o),this.purge=function(){o.purge(),o=null}}}),n("moxie/runtime/html5/image/ResizerCanvas",[],function(){function e(i,n){var r=i.width,o=Math.floor(r*n),a=!1;(.5>n||n>2)&&(n=.5>n?.5:2,a=!0);var s=t(i,n);return a?e(s,o/s.width):s}function t(e,t){var i=e.width,n=e.height,r=Math.floor(i*t),o=Math.floor(n*t),a=document.createElement("canvas");return a.width=r,a.height=o,a.getContext("2d").drawImage(e,0,0,i,n,0,0,r,o),e=null,a}return{scale:e}}),n("moxie/runtime/html5/image/Image",["moxie/runtime/html5/Runtime","moxie/core/utils/Basic","moxie/core/Exceptions","moxie/core/utils/Encode","moxie/file/Blob","moxie/file/File","moxie/runtime/html5/image/ImageInfo","moxie/runtime/html5/image/ResizerCanvas","moxie/core/utils/Mime","moxie/core/utils/Env"],function(e,t,i,n,r,o,a,s,u){function c(){function e(){if(!v&&!g)throw new i.ImageError(i.DOMException.INVALID_STATE_ERR);return v||g}function c(){var t=e();return"canvas"==t.nodeName.toLowerCase()?t:(v=document.createElement("canvas"),v.width=t.width,v.height=t.height,v.getContext("2d").drawImage(t,0,0),v)}function l(e){return n.atob(e.substring(e.indexOf("base64,")+7))}function d(e,t){return"data:"+(t||"")+";base64,"+n.btoa(e)}function m(e){var t=this;g=new Image,g.onerror=function(){p.call(this),t.trigger("error",i.ImageError.WRONG_FORMAT)},g.onload=function(){t.trigger("load")},g.src="data:"==e.substr(0,5)?e:d(e,w.type)}function h(e,t){var n,r=this;return window.FileReader?(n=new FileReader,n.onload=function(){t(this.result)},n.onerror=function(){r.trigger("error",i.ImageError.WRONG_FORMAT)},n.readAsDataURL(e),void 0):t(e.getAsDataURL())}function f(e,i){var n=Math.PI/180,r=document.createElement("canvas"),o=r.getContext("2d"),a=e.width,s=e.height;switch(t.inArray(i,[5,6,7,8])>-1?(r.width=s,r.height=a):(r.width=a,r.height=s),i){case 2:o.translate(a,0),o.scale(-1,1);break;case 3:o.translate(a,s),o.rotate(180*n);break;case 4:o.translate(0,s),o.scale(1,-1);break;case 5:o.rotate(90*n),o.scale(1,-1);break;case 6:o.rotate(90*n),o.translate(0,-s);break;case 7:o.rotate(90*n),o.translate(a,-s),o.scale(-1,1);break;case 8:o.rotate(-90*n),o.translate(-a,0)}return o.drawImage(e,0,0,a,s),r}function p(){x&&(x.purge(),x=null),y=g=v=w=null,b=!1}var g,x,v,y,w,E=this,b=!1,R=!0;t.extend(this,{loadFromBlob:function(e){var t=this,n=t.getRuntime(),r=arguments.length>1?arguments[1]:!0;if(!n.can("access_binary"))throw new i.RuntimeError(i.RuntimeError.NOT_SUPPORTED_ERR);return w=e,e.isDetached()?(y=e.getSource(),m.call(this,y),void 0):(h.call(this,e.getSource(),function(e){r&&(y=l(e)),m.call(t,e)}),void 0)},loadFromImage:function(e,t){this.meta=e.meta,w=new o(null,{name:e.name,size:e.size,type:e.type}),m.call(this,t?y=e.getAsBinaryString():e.getAsDataURL())},getInfo:function(){var t,i=this.getRuntime();return!x&&y&&i.can("access_image_binary")&&(x=new a(y)),t={width:e().width||0,height:e().height||0,type:w.type||u.getFileMime(w.name),size:y&&y.length||w.size||0,name:w.name||"",meta:null},R&&(t.meta=x&&x.meta||this.meta||{},!t.meta||!t.meta.thumb||t.meta.thumb.data instanceof r||(t.meta.thumb.data=new r(null,{type:"image/jpeg",data:t.meta.thumb.data}))),t},resize:function(t,i,n){var r=document.createElement("canvas");if(r.width=t.width,r.height=t.height,r.getContext("2d").drawImage(e(),t.x,t.y,t.width,t.height,0,0,r.width,r.height),v=s.scale(r,i),R=n.preserveHeaders,!R){var o=this.meta&&this.meta.tiff&&this.meta.tiff.Orientation||1;v=f(v,o)}this.width=v.width,this.height=v.height,b=!0,this.trigger("Resize")},getAsCanvas:function(){return v||(v=c()),v.id=this.uid+"_canvas",v},getAsBlob:function(e,t){return e!==this.type?(b=!0,new o(null,{name:w.name||"",type:e,data:E.getAsDataURL(e,t)})):new o(null,{name:w.name||"",type:e,data:E.getAsBinaryString(e,t)})},getAsDataURL:function(e){var t=arguments[1]||90;if(!b)return g.src;if(c(),"image/jpeg"!==e)return v.toDataURL("image/png");try{return v.toDataURL("image/jpeg",t/100)}catch(i){return v.toDataURL("image/jpeg")}},getAsBinaryString:function(e,t){if(!b)return y||(y=l(E.getAsDataURL(e,t))),y;if("image/jpeg"!==e)y=l(E.getAsDataURL(e,t));else{var i;t||(t=90),c();try{i=v.toDataURL("image/jpeg",t/100)}catch(n){i=v.toDataURL("image/jpeg")}y=l(i),x&&(y=x.stripHeaders(y),R&&(x.meta&&x.meta.exif&&x.setExif({PixelXDimension:this.width,PixelYDimension:this.height}),y=x.writeHeaders(y)),x.purge(),x=null)}return b=!1,y},destroy:function(){E=null,p.call(this),this.getRuntime().getShim().removeInstance(this.uid)}})}return e.Image=c}),n("moxie/runtime/flash/Runtime",["moxie/core/utils/Basic","moxie/core/utils/Env","moxie/core/utils/Dom","moxie/core/Exceptions","moxie/runtime/Runtime"],function(e,t,i,n,o){function a(){var e;try{e=navigator.plugins["Shockwave Flash"],e=e.description}catch(t){try{e=new ActiveXObject("ShockwaveFlash.ShockwaveFlash").GetVariable("$version")}catch(i){e="0.0"}}return e=e.match(/\d+/g),parseFloat(e[0]+"."+e[1])}function s(e){var n=i.get(e);n&&"OBJECT"==n.nodeName&&("IE"===t.browser?(n.style.display="none",function r(){4==n.readyState?u(e):setTimeout(r,10)}()):n.parentNode.removeChild(n))}function u(e){var t=i.get(e);if(t){for(var n in t)"function"==typeof t[n]&&(t[n]=null);t.parentNode.removeChild(t)}}function c(u){var c,m=this;u=e.extend({swf_url:t.swf_url},u),o.call(this,u,l,{access_binary:function(e){return e&&"browser"===m.mode},access_image_binary:function(e){return e&&"browser"===m.mode},display_media:o.capTest(r("moxie/image/Image")),do_cors:o.capTrue,drag_and_drop:!1,report_upload_progress:function(){return"client"===m.mode},resize_image:o.capTrue,return_response_headers:!1,return_response_type:function(t){return"json"===t&&window.JSON?!0:!e.arrayDiff(t,["","text","document"])||"browser"===m.mode},return_status_code:function(t){return"browser"===m.mode||!e.arrayDiff(t,[200,404])},select_file:o.capTrue,select_multiple:o.capTrue,send_binary_string:function(e){return e&&"browser"===m.mode},send_browser_cookies:function(e){return e&&"browser"===m.mode},send_custom_headers:function(e){return e&&"browser"===m.mode},send_multipart:o.capTrue,slice_blob:function(e){return e&&"browser"===m.mode},stream_upload:function(e){return e&&"browser"===m.mode},summon_file_dialog:!1,upload_filesize:function(t){return e.parseSizeStr(t)<=2097152||"client"===m.mode},use_http_method:function(t){return!e.arrayDiff(t,["GET","POST"])}},{access_binary:function(e){return e?"browser":"client"},access_image_binary:function(e){return e?"browser":"client"},report_upload_progress:function(e){return e?"browser":"client"},return_response_type:function(t){return e.arrayDiff(t,["","text","json","document"])?"browser":["client","browser"]},return_status_code:function(t){return e.arrayDiff(t,[200,404])?"browser":["client","browser"]},send_binary_string:function(e){return e?"browser":"client"},send_browser_cookies:function(e){return e?"browser":"client"},send_custom_headers:function(e){return e?"browser":"client"},slice_blob:function(e){return e?"browser":"client"},stream_upload:function(e){return e?"client":"browser"},upload_filesize:function(t){return e.parseSizeStr(t)>=2097152?"client":"browser"}},"client"),a()<11.3&&(this.mode=!1),e.extend(this,{getShim:function(){return i.get(this.uid)},shimExec:function(e,t){var i=[].slice.call(arguments,2);return m.getShim().exec(this.uid,e,t,i)},init:function(){var i,r,o;o=this.getShimContainer(),e.extend(o.style,{position:"absolute",top:"-8px",left:"-8px",width:"9px",height:"9px",overflow:"hidden"}),i='<object id="'+this.uid+'" type="application/x-shockwave-flash" data="'+u.swf_url+'" ',"IE"===t.browser&&(i+='classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" '),i+='width="100%" height="100%" style="outline:0"><param name="movie" value="'+u.swf_url+'" />'+'<param name="flashvars" value="uid='+escape(this.uid)+"&target="+t.global_event_dispatcher+'" />'+'<param name="wmode" value="transparent" />'+'<param name="allowscriptaccess" value="always" />'+"</object>","IE"===t.browser?(r=document.createElement("div"),o.appendChild(r),r.outerHTML=i,r=o=null):o.innerHTML=i,c=setTimeout(function(){m&&!m.initialized&&m.trigger("Error",new n.RuntimeError(n.RuntimeError.NOT_INIT_ERR))},5e3)},destroy:function(e){return function(){s(m.uid),e.call(m),clearTimeout(c),u=c=e=m=null}}(this.destroy)},d)}var l="flash",d={};return o.addConstructor(l,c),d}),n("moxie/runtime/flash/file/Blob",["moxie/runtime/flash/Runtime","moxie/file/Blob"],function(e,t){var i={slice:function(e,i,n,r){var o=this.getRuntime();return 0>i?i=Math.max(e.size+i,0):i>0&&(i=Math.min(i,e.size)),0>n?n=Math.max(e.size+n,0):n>0&&(n=Math.min(n,e.size)),e=o.shimExec.call(this,"Blob","slice",i,n,r||""),e&&(e=new t(o.uid,e)),e}};return e.Blob=i}),n("moxie/runtime/flash/file/FileInput",["moxie/runtime/flash/Runtime","moxie/file/File","moxie/core/utils/Basic"],function(e,t,i){var n={init:function(e){var n=this,r=this.getRuntime();this.bind("Change",function(){var e=r.shimExec.call(n,"FileInput","getFiles");n.files=[],i.each(e,function(e){n.files.push(new t(r.uid,e))})},999),this.getRuntime().shimExec.call(this,"FileInput","init",{accept:e.accept,multiple:e.multiple}),this.trigger("ready")}};return e.FileInput=n}),n("moxie/runtime/flash/file/FileReader",["moxie/runtime/flash/Runtime","moxie/core/utils/Encode"],function(e,t){function i(e,i){switch(i){case"readAsText":return t.atob(e,"utf8");case"readAsBinaryString":return t.atob(e);case"readAsDataURL":return e}return null}var n={read:function(e,t){var n=this;return n.result="","readAsDataURL"===e&&(n.result="data:"+(t.type||"")+";base64,"),n.bind("Progress",function(t,r){r&&(n.result+=i(r,e))},999),n.getRuntime().shimExec.call(this,"FileReader","readAsBase64",t.uid)}};return e.FileReader=n}),n("moxie/runtime/flash/file/FileReaderSync",["moxie/runtime/flash/Runtime","moxie/core/utils/Encode"],function(e,t){function i(e,i){switch(i){case"readAsText":return t.atob(e,"utf8");case"readAsBinaryString":return t.atob(e);case"readAsDataURL":return e}return null}var n={read:function(e,t){var n,r=this.getRuntime();return(n=r.shimExec.call(this,"FileReaderSync","readAsBase64",t.uid))?("readAsDataURL"===e&&(n="data:"+(t.type||"")+";base64,"+n),i(n,e,t.type)):null}};return e.FileReaderSync=n}),n("moxie/runtime/flash/runtime/Transporter",["moxie/runtime/flash/Runtime","moxie/file/Blob"],function(e,t){var i={getAsBlob:function(e){var i=this.getRuntime(),n=i.shimExec.call(this,"Transporter","getAsBlob",e);return n?new t(i.uid,n):null}};return e.Transporter=i}),n("moxie/runtime/flash/xhr/XMLHttpRequest",["moxie/runtime/flash/Runtime","moxie/core/utils/Basic","moxie/file/Blob","moxie/file/File","moxie/file/FileReaderSync","moxie/runtime/flash/file/FileReaderSync","moxie/xhr/FormData","moxie/runtime/Transporter","moxie/runtime/flash/runtime/Transporter"],function(e,t,i,n,r,o,a,s){var u={send:function(e,n){function r(){e.transport=l.mode,l.shimExec.call(c,"XMLHttpRequest","send",e,n)}function o(e,t){l.shimExec.call(c,"XMLHttpRequest","appendBlob",e,t.uid),n=null,r()}function u(e,t){var i=new s;i.bind("TransportingComplete",function(){t(this.result)}),i.transport(e.getSource(),e.type,{ruid:l.uid})}var c=this,l=c.getRuntime();if(t.isEmptyObj(e.headers)||t.each(e.headers,function(e,t){l.shimExec.call(c,"XMLHttpRequest","setRequestHeader",t,e.toString())}),n instanceof a){var d;if(n.each(function(e,t){e instanceof i?d=t:l.shimExec.call(c,"XMLHttpRequest","append",t,e)}),n.hasBlob()){var m=n.getBlob();m.isDetached()?u(m,function(e){m.destroy(),o(d,e)}):o(d,m)}else n=null,r()}else n instanceof i?n.isDetached()?u(n,function(e){n.destroy(),n=e.uid,r()}):(n=n.uid,r()):r()},getResponse:function(e){var i,o,a=this.getRuntime();if(o=a.shimExec.call(this,"XMLHttpRequest","getResponseAsBlob")){if(o=new n(a.uid,o),"blob"===e)return o;try{if(i=new r,~t.inArray(e,["","text"]))return i.readAsText(o);if("json"===e&&window.JSON)return JSON.parse(i.readAsText(o))}finally{o.destroy()}}return null},abort:function(){var e=this.getRuntime();e.shimExec.call(this,"XMLHttpRequest","abort"),this.dispatchEvent("readystatechange"),this.dispatchEvent("abort")}};return e.XMLHttpRequest=u}),n("moxie/runtime/flash/image/Image",["moxie/runtime/flash/Runtime","moxie/core/utils/Basic","moxie/runtime/Transporter","moxie/file/Blob","moxie/file/FileReaderSync"],function(e,t,i,n,r){var o={loadFromBlob:function(e){function t(e){r.shimExec.call(n,"Image","loadFromBlob",e.uid),n=r=null}var n=this,r=n.getRuntime();if(e.isDetached()){var o=new i;o.bind("TransportingComplete",function(){t(o.result.getSource())}),o.transport(e.getSource(),e.type,{ruid:r.uid})}else t(e.getSource())},loadFromImage:function(e){var t=this.getRuntime();return t.shimExec.call(this,"Image","loadFromImage",e.uid)},getInfo:function(){var e=this.getRuntime(),t=e.shimExec.call(this,"Image","getInfo");return!t.meta||!t.meta.thumb||t.meta.thumb.data instanceof n||(t.meta.thumb.data=new n(e.uid,t.meta.thumb.data)),t},getAsBlob:function(e,t){var i=this.getRuntime(),r=i.shimExec.call(this,"Image","getAsBlob",e,t);return r?new n(i.uid,r):null},getAsDataURL:function(){var e,t=this.getRuntime(),i=t.Image.getAsBlob.apply(this,arguments);return i?(e=new r,e.readAsDataURL(i)):null}};return e.Image=o}),n("moxie/runtime/silverlight/Runtime",["moxie/core/utils/Basic","moxie/core/utils/Env","moxie/core/utils/Dom","moxie/core/Exceptions","moxie/runtime/Runtime"],function(e,t,i,n,o){function a(e){var t,i,n,r,o,a=!1,s=null,u=0;try{try{s=new ActiveXObject("AgControl.AgControl"),s.IsVersionSupported(e)&&(a=!0),s=null}catch(c){var l=navigator.plugins["Silverlight Plug-In"];if(l){for(t=l.description,"1.0.30226.2"===t&&(t="2.0.30226.2"),i=t.split(".");i.length>3;)i.pop();for(;i.length<4;)i.push(0);for(n=e.split(".");n.length>4;)n.pop();do r=parseInt(n[u],10),o=parseInt(i[u],10),u++;while(u<n.length&&r===o);o>=r&&!isNaN(r)&&(a=!0)}}}catch(d){a=!1}return a}function s(s){var l,d=this;s=e.extend({xap_url:t.xap_url},s),o.call(this,s,u,{access_binary:o.capTrue,access_image_binary:o.capTrue,display_media:o.capTest(r("moxie/image/Image")),do_cors:o.capTrue,drag_and_drop:!1,report_upload_progress:o.capTrue,resize_image:o.capTrue,return_response_headers:function(e){return e&&"client"===d.mode},return_response_type:function(e){return"json"!==e?!0:!!window.JSON},return_status_code:function(t){return"client"===d.mode||!e.arrayDiff(t,[200,404])},select_file:o.capTrue,select_multiple:o.capTrue,send_binary_string:o.capTrue,send_browser_cookies:function(e){return e&&"browser"===d.mode},send_custom_headers:function(e){return e&&"client"===d.mode},send_multipart:o.capTrue,slice_blob:o.capTrue,stream_upload:!0,summon_file_dialog:!1,upload_filesize:o.capTrue,use_http_method:function(t){return"client"===d.mode||!e.arrayDiff(t,["GET","POST"])}},{return_response_headers:function(e){return e?"client":"browser"},return_status_code:function(t){return e.arrayDiff(t,[200,404])?"client":["client","browser"]},send_browser_cookies:function(e){return e?"browser":"client"},send_custom_headers:function(e){return e?"client":"browser"},use_http_method:function(t){return e.arrayDiff(t,["GET","POST"])?"client":["client","browser"]}}),a("2.0.31005.0")&&"Opera"!==t.browser||(this.mode=!1),e.extend(this,{getShim:function(){return i.get(this.uid).content.Moxie},shimExec:function(e,t){var i=[].slice.call(arguments,2);return d.getShim().exec(this.uid,e,t,i)},init:function(){var e;e=this.getShimContainer(),e.innerHTML='<object id="'+this.uid+'" data="data:application/x-silverlight," type="application/x-silverlight-2" width="100%" height="100%" style="outline:none;">'+'<param name="source" value="'+s.xap_url+'"/>'+'<param name="background" value="Transparent"/>'+'<param name="windowless" value="true"/>'+'<param name="enablehtmlaccess" value="true"/>'+'<param name="initParams" value="uid='+this.uid+",target="+t.global_event_dispatcher+'"/>'+"</object>",l=setTimeout(function(){d&&!d.initialized&&d.trigger("Error",new n.RuntimeError(n.RuntimeError.NOT_INIT_ERR))},"Windows"!==t.OS?1e4:5e3)},destroy:function(e){return function(){e.call(d),clearTimeout(l),s=l=e=d=null}}(this.destroy)},c)}var u="silverlight",c={};return o.addConstructor(u,s),c}),n("moxie/runtime/silverlight/file/Blob",["moxie/runtime/silverlight/Runtime","moxie/core/utils/Basic","moxie/runtime/flash/file/Blob"],function(e,t,i){return e.Blob=t.extend({},i)}),n("moxie/runtime/silverlight/file/FileInput",["moxie/runtime/silverlight/Runtime","moxie/file/File","moxie/core/utils/Basic"],function(e,t,i){function n(e){for(var t="",i=0;i<e.length;i++)t+=(""!==t?"|":"")+e[i].title+" | *."+e[i].extensions.replace(/,/g,";*.");return t}var r={init:function(e){var r=this,o=this.getRuntime();this.bind("Change",function(){var e=o.shimExec.call(r,"FileInput","getFiles");r.files=[],i.each(e,function(e){r.files.push(new t(o.uid,e))})},999),o.shimExec.call(this,"FileInput","init",n(e.accept),e.multiple),this.trigger("ready")},setOption:function(e,t){"accept"==e&&(t=n(t)),this.getRuntime().shimExec.call(this,"FileInput","setOption",e,t)}};return e.FileInput=r}),n("moxie/runtime/silverlight/file/FileDrop",["moxie/runtime/silverlight/Runtime","moxie/core/utils/Dom","moxie/core/utils/Events"],function(e,t,i){var n={init:function(){var e,n=this,r=n.getRuntime();return e=r.getShimContainer(),i.addEvent(e,"dragover",function(e){e.preventDefault(),e.stopPropagation(),e.dataTransfer.dropEffect="copy"},n.uid),i.addEvent(e,"dragenter",function(e){e.preventDefault();var i=t.get(r.uid).dragEnter(e);i&&e.stopPropagation()},n.uid),i.addEvent(e,"drop",function(e){e.preventDefault();var i=t.get(r.uid).dragDrop(e);i&&e.stopPropagation()},n.uid),r.shimExec.call(this,"FileDrop","init")}};return e.FileDrop=n}),n("moxie/runtime/silverlight/file/FileReader",["moxie/runtime/silverlight/Runtime","moxie/core/utils/Basic","moxie/runtime/flash/file/FileReader"],function(e,t,i){return e.FileReader=t.extend({},i)}),n("moxie/runtime/silverlight/file/FileReaderSync",["moxie/runtime/silverlight/Runtime","moxie/core/utils/Basic","moxie/runtime/flash/file/FileReaderSync"],function(e,t,i){return e.FileReaderSync=t.extend({},i)
  5337. }),n("moxie/runtime/silverlight/runtime/Transporter",["moxie/runtime/silverlight/Runtime","moxie/core/utils/Basic","moxie/runtime/flash/runtime/Transporter"],function(e,t,i){return e.Transporter=t.extend({},i)}),n("moxie/runtime/silverlight/xhr/XMLHttpRequest",["moxie/runtime/silverlight/Runtime","moxie/core/utils/Basic","moxie/runtime/flash/xhr/XMLHttpRequest","moxie/runtime/silverlight/file/FileReaderSync","moxie/runtime/silverlight/runtime/Transporter"],function(e,t,i){return e.XMLHttpRequest=t.extend({},i)}),n("moxie/runtime/silverlight/image/Image",["moxie/runtime/silverlight/Runtime","moxie/core/utils/Basic","moxie/file/Blob","moxie/runtime/flash/image/Image"],function(e,t,i,n){return e.Image=t.extend({},n,{getInfo:function(){var e=this.getRuntime(),n=["tiff","exif","gps","thumb"],r={meta:{}},o=e.shimExec.call(this,"Image","getInfo");return o.meta&&(t.each(n,function(e){var t,i,n,a,s=o.meta[e];if(s&&s.keys)for(r.meta[e]={},i=0,n=s.keys.length;n>i;i++)t=s.keys[i],a=s[t],a&&(/^(\d|[1-9]\d+)$/.test(a)?a=parseInt(a,10):/^\d*\.\d+$/.test(a)&&(a=parseFloat(a)),r.meta[e][t]=a)}),!r.meta||!r.meta.thumb||r.meta.thumb.data instanceof i||(r.meta.thumb.data=new i(e.uid,r.meta.thumb.data))),r.width=parseInt(o.width,10),r.height=parseInt(o.height,10),r.size=parseInt(o.size,10),r.type=o.type,r.name=o.name,r},resize:function(e,t,i){this.getRuntime().shimExec.call(this,"Image","resize",e.x,e.y,e.width,e.height,t,i.preserveHeaders,i.resample)}})}),n("moxie/runtime/html4/Runtime",["moxie/core/utils/Basic","moxie/core/Exceptions","moxie/runtime/Runtime","moxie/core/utils/Env"],function(e,t,i,n){function o(t){var o=this,u=i.capTest,c=i.capTrue;i.call(this,t,a,{access_binary:u(window.FileReader||window.File&&File.getAsDataURL),access_image_binary:!1,display_media:u((n.can("create_canvas")||n.can("use_data_uri_over32kb"))&&r("moxie/image/Image")),do_cors:!1,drag_and_drop:!1,filter_by_extension:u(function(){return!("Chrome"===n.browser&&n.verComp(n.version,28,"<")||"IE"===n.browser&&n.verComp(n.version,10,"<")||"Safari"===n.browser&&n.verComp(n.version,7,"<")||"Firefox"===n.browser&&n.verComp(n.version,37,"<"))}()),resize_image:function(){return s.Image&&o.can("access_binary")&&n.can("create_canvas")},report_upload_progress:!1,return_response_headers:!1,return_response_type:function(t){return"json"===t&&window.JSON?!0:!!~e.inArray(t,["text","document",""])},return_status_code:function(t){return!e.arrayDiff(t,[200,404])},select_file:function(){return n.can("use_fileinput")},select_multiple:!1,send_binary_string:!1,send_custom_headers:!1,send_multipart:!0,slice_blob:!1,stream_upload:function(){return o.can("select_file")},summon_file_dialog:function(){return o.can("select_file")&&("Firefox"===n.browser&&n.verComp(n.version,4,">=")||"Opera"===n.browser&&n.verComp(n.version,12,">=")||"IE"===n.browser&&n.verComp(n.version,10,">=")||!!~e.inArray(n.browser,["Chrome","Safari"]))},upload_filesize:c,use_http_method:function(t){return!e.arrayDiff(t,["GET","POST"])}}),e.extend(this,{init:function(){this.trigger("Init")},destroy:function(e){return function(){e.call(o),e=o=null}}(this.destroy)}),e.extend(this.getShim(),s)}var a="html4",s={};return i.addConstructor(a,o),s}),n("moxie/runtime/html4/file/FileInput",["moxie/runtime/html4/Runtime","moxie/file/File","moxie/core/utils/Basic","moxie/core/utils/Dom","moxie/core/utils/Events","moxie/core/utils/Mime","moxie/core/utils/Env"],function(e,t,i,n,r,o,a){function s(){function e(){var o,c,d,m,h,f,p=this,g=p.getRuntime();f=i.guid("uid_"),o=g.getShimContainer(),s&&(d=n.get(s+"_form"),d&&i.extend(d.style,{top:"100%"})),m=document.createElement("form"),m.setAttribute("id",f+"_form"),m.setAttribute("method","post"),m.setAttribute("enctype","multipart/form-data"),m.setAttribute("encoding","multipart/form-data"),i.extend(m.style,{overflow:"hidden",position:"absolute",top:0,left:0,width:"100%",height:"100%"}),h=document.createElement("input"),h.setAttribute("id",f),h.setAttribute("type","file"),h.setAttribute("accept",l.join(",")),i.extend(h.style,{fontSize:"999px",opacity:0}),m.appendChild(h),o.appendChild(m),i.extend(h.style,{position:"absolute",top:0,left:0,width:"100%",height:"100%"}),"IE"===a.browser&&a.verComp(a.version,10,"<")&&i.extend(h.style,{filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0)"}),h.onchange=function(){var i;if(this.value){if(this.files){if(i=this.files[0],0===i.size)return m.parentNode.removeChild(m),void 0}else i={name:this.value};i=new t(g.uid,i),this.onchange=function(){},e.call(p),p.files=[i],h.setAttribute("id",i.uid),m.setAttribute("id",i.uid+"_form"),p.trigger("change"),h=m=null}},g.can("summon_file_dialog")&&(c=n.get(u.browse_button),r.removeEvent(c,"click",p.uid),r.addEvent(c,"click",function(e){h&&!h.disabled&&h.click(),e.preventDefault()},p.uid)),s=f,o=d=c=null}var s,u,c,l=[];i.extend(this,{init:function(t){var i,a=this,s=a.getRuntime();u=t,l=t.accept.mimes||o.extList2mimes(t.accept,s.can("filter_by_extension")),i=s.getShimContainer(),function(){var e,o,l;e=n.get(t.browse_button),c=n.getStyle(e,"z-index")||"auto",s.can("summon_file_dialog")&&("static"===n.getStyle(e,"position")&&(e.style.position="relative"),a.bind("Refresh",function(){o=parseInt(c,10)||1,n.get(u.browse_button).style.zIndex=o,this.getRuntime().getShimContainer().style.zIndex=o-1})),l=s.can("summon_file_dialog")?e:i,r.addEvent(l,"mouseover",function(){a.trigger("mouseenter")},a.uid),r.addEvent(l,"mouseout",function(){a.trigger("mouseleave")},a.uid),r.addEvent(l,"mousedown",function(){a.trigger("mousedown")},a.uid),r.addEvent(n.get(t.container),"mouseup",function(){a.trigger("mouseup")},a.uid),e=null}(),e.call(this),i=null,a.trigger({type:"ready",async:!0})},setOption:function(e,t){var i,r=this.getRuntime();"accept"==e&&(l=t.mimes||o.extList2mimes(t,r.can("filter_by_extension"))),i=n.get(s),i&&i.setAttribute("accept",l.join(","))},disable:function(e){var t;(t=n.get(s))&&(t.disabled=!!e)},destroy:function(){var e=this.getRuntime(),t=e.getShim(),i=e.getShimContainer(),o=u&&n.get(u.container),a=u&&n.get(u.browse_button);o&&r.removeAllEvents(o,this.uid),a&&(r.removeAllEvents(a,this.uid),a.style.zIndex=c),i&&(r.removeAllEvents(i,this.uid),i.innerHTML=""),t.removeInstance(this.uid),s=l=u=i=o=a=t=null}})}return e.FileInput=s}),n("moxie/runtime/html4/file/FileReader",["moxie/runtime/html4/Runtime","moxie/runtime/html5/file/FileReader"],function(e,t){return e.FileReader=t}),n("moxie/runtime/html4/xhr/XMLHttpRequest",["moxie/runtime/html4/Runtime","moxie/core/utils/Basic","moxie/core/utils/Dom","moxie/core/utils/Url","moxie/core/Exceptions","moxie/core/utils/Events","moxie/file/Blob","moxie/xhr/FormData"],function(e,t,i,n,r,o,a,s){function u(){function e(e){var t,n,r,a,s=this,u=!1;if(l){if(t=l.id.replace(/_iframe$/,""),n=i.get(t+"_form")){for(r=n.getElementsByTagName("input"),a=r.length;a--;)switch(r[a].getAttribute("type")){case"hidden":r[a].parentNode.removeChild(r[a]);break;case"file":u=!0}r=[],u||n.parentNode.removeChild(n),n=null}setTimeout(function(){o.removeEvent(l,"load",s.uid),l.parentNode&&l.parentNode.removeChild(l);var t=s.getRuntime().getShimContainer();t.children.length||t.parentNode.removeChild(t),t=l=null,e()},1)}}var u,c,l;t.extend(this,{send:function(d,m){function h(){var i=y.getShimContainer()||document.body,r=document.createElement("div");r.innerHTML='<iframe id="'+f+'_iframe" name="'+f+'_iframe" src="javascript:&quot;&quot;" style="display:none"></iframe>',l=r.firstChild,i.appendChild(l),o.addEvent(l,"load",function(){var i;try{i=l.contentWindow.document||l.contentDocument||window.frames[l.id].document,/^4(0[0-9]|1[0-7]|2[2346])\s/.test(i.title)?u=i.title.replace(/^(\d+).*$/,"$1"):(u=200,c=t.trim(i.body.innerHTML),v.trigger({type:"progress",loaded:c.length,total:c.length}),x&&v.trigger({type:"uploadprogress",loaded:x.size||1025,total:x.size||1025}))}catch(r){if(!n.hasSameOrigin(d.url))return e.call(v,function(){v.trigger("error")}),void 0;u=404}e.call(v,function(){v.trigger("load")})},v.uid)}var f,p,g,x,v=this,y=v.getRuntime();if(u=c=null,m instanceof s&&m.hasBlob()){if(x=m.getBlob(),f=x.uid,g=i.get(f),p=i.get(f+"_form"),!p)throw new r.DOMException(r.DOMException.NOT_FOUND_ERR)}else f=t.guid("uid_"),p=document.createElement("form"),p.setAttribute("id",f+"_form"),p.setAttribute("method",d.method),p.setAttribute("enctype","multipart/form-data"),p.setAttribute("encoding","multipart/form-data"),y.getShimContainer().appendChild(p);p.setAttribute("target",f+"_iframe"),m instanceof s&&m.each(function(e,i){if(e instanceof a)g&&g.setAttribute("name",i);else{var n=document.createElement("input");t.extend(n,{type:"hidden",name:i,value:e}),g?p.insertBefore(n,g):p.appendChild(n)}}),p.setAttribute("action",d.url),h(),p.submit(),v.trigger("loadstart")},getStatus:function(){return u},getResponse:function(e){if("json"===e&&"string"===t.typeOf(c)&&window.JSON)try{return JSON.parse(c.replace(/^\s*<pre[^>]*>/,"").replace(/<\/pre>\s*$/,""))}catch(i){return null}return c},abort:function(){var t=this;l&&l.contentWindow&&(l.contentWindow.stop?l.contentWindow.stop():l.contentWindow.document.execCommand?l.contentWindow.document.execCommand("Stop"):l.src="about:blank"),e.call(this,function(){t.dispatchEvent("abort")})}})}return e.XMLHttpRequest=u}),n("moxie/runtime/html4/image/Image",["moxie/runtime/html4/Runtime","moxie/runtime/html5/image/Image"],function(e,t){return e.Image=t}),a(["moxie/core/utils/Basic","moxie/core/utils/Encode","moxie/core/utils/Env","moxie/core/Exceptions","moxie/core/utils/Dom","moxie/core/EventTarget","moxie/runtime/Runtime","moxie/runtime/RuntimeClient","moxie/file/Blob","moxie/core/I18n","moxie/core/utils/Mime","moxie/file/FileInput","moxie/file/File","moxie/file/FileDrop","moxie/file/FileReader","moxie/core/utils/Url","moxie/runtime/RuntimeTarget","moxie/xhr/FormData","moxie/xhr/XMLHttpRequest","moxie/runtime/Transporter","moxie/image/Image","moxie/core/utils/Events","moxie/runtime/html5/image/ResizerCanvas"])}(this)});
  5338. define("../libs/plupload/js/moxie.min", function(){});
  5339. /**
  5340. * Plupload - multi-runtime File Uploader
  5341. * v2.2.1
  5342. *
  5343. * Copyright 2013, Moxiecode Systems AB
  5344. * Released under GPL License.
  5345. *
  5346. * License: http://www.plupload.com/license
  5347. * Contributing: http://www.plupload.com/contributing
  5348. *
  5349. * Date: 2016-11-23
  5350. */
  5351. !function(e,t){var i=function(){var e={};return t.apply(e,arguments),e.plupload};"function"==typeof define&&define.amd?define("plupload",["./moxie"],i):"object"==typeof module&&module.exports?module.exports=i(require("./moxie")):e.plupload=i(e.moxie)}(this||window,function(e){!function(e,t,i){function n(e){function t(e,t,i){var r={chunks:"slice_blob",jpgresize:"send_binary_string",pngresize:"send_binary_string",progress:"report_upload_progress",multi_selection:"select_multiple",dragdrop:"drag_and_drop",drop_element:"drag_and_drop",headers:"send_custom_headers",urlstream_upload:"send_binary_string",canSendBinary:"send_binary",triggerDialog:"summon_file_dialog"};r[e]?n[r[e]]=t:i||(n[e]=t)}var i=e.required_features,n={};return"string"==typeof i?l.each(i.split(/\s*,\s*/),function(e){t(e,!0)}):"object"==typeof i?l.each(i,function(e,i){t(i,e)}):i===!0&&(e.chunk_size>0&&(n.slice_blob=!0),l.isEmptyObj(e.resize)&&e.multipart||(n.send_binary_string=!0),l.each(e,function(e,i){t(i,!!e,!0)})),n}var r=window.setTimeout,s={},a=t.core.utils,o=t.runtime.Runtime,l={VERSION:"2.2.1",STOPPED:1,STARTED:2,QUEUED:1,UPLOADING:2,FAILED:4,DONE:5,GENERIC_ERROR:-100,HTTP_ERROR:-200,IO_ERROR:-300,SECURITY_ERROR:-400,INIT_ERROR:-500,FILE_SIZE_ERROR:-600,FILE_EXTENSION_ERROR:-601,FILE_DUPLICATE_ERROR:-602,IMAGE_FORMAT_ERROR:-700,MEMORY_ERROR:-701,IMAGE_DIMENSIONS_ERROR:-702,mimeTypes:a.Mime.mimes,ua:a.Env,typeOf:a.Basic.typeOf,extend:a.Basic.extend,guid:a.Basic.guid,getAll:function(e){var t,i=[];"array"!==l.typeOf(e)&&(e=[e]);for(var n=e.length;n--;)t=l.get(e[n]),t&&i.push(t);return i.length?i:null},get:a.Dom.get,each:a.Basic.each,getPos:a.Dom.getPos,getSize:a.Dom.getSize,xmlEncode:function(e){var t={"<":"lt",">":"gt","&":"amp",'"':"quot","'":"#39"},i=/[<>&\"\']/g;return e?(""+e).replace(i,function(e){return t[e]?"&"+t[e]+";":e}):e},toArray:a.Basic.toArray,inArray:a.Basic.inArray,inSeries:a.Basic.inSeries,addI18n:t.core.I18n.addI18n,translate:t.core.I18n.translate,sprintf:a.Basic.sprintf,isEmptyObj:a.Basic.isEmptyObj,hasClass:a.Dom.hasClass,addClass:a.Dom.addClass,removeClass:a.Dom.removeClass,getStyle:a.Dom.getStyle,addEvent:a.Events.addEvent,removeEvent:a.Events.removeEvent,removeAllEvents:a.Events.removeAllEvents,cleanName:function(e){var t,i;for(i=[/[\300-\306]/g,"A",/[\340-\346]/g,"a",/\307/g,"C",/\347/g,"c",/[\310-\313]/g,"E",/[\350-\353]/g,"e",/[\314-\317]/g,"I",/[\354-\357]/g,"i",/\321/g,"N",/\361/g,"n",/[\322-\330]/g,"O",/[\362-\370]/g,"o",/[\331-\334]/g,"U",/[\371-\374]/g,"u"],t=0;t<i.length;t+=2)e=e.replace(i[t],i[t+1]);return e=e.replace(/\s+/g,"_"),e=e.replace(/[^a-z0-9_\-\.]+/gi,"")},buildUrl:function(e,t){var i="";return l.each(t,function(e,t){i+=(i?"&":"")+encodeURIComponent(t)+"="+encodeURIComponent(e)}),i&&(e+=(e.indexOf("?")>0?"&":"?")+i),e},formatSize:function(e){function t(e,t){return Math.round(e*Math.pow(10,t))/Math.pow(10,t)}if(e===i||/\D/.test(e))return l.translate("N/A");var n=Math.pow(1024,4);return e>n?t(e/n,1)+" "+l.translate("tb"):e>(n/=1024)?t(e/n,1)+" "+l.translate("gb"):e>(n/=1024)?t(e/n,1)+" "+l.translate("mb"):e>1024?Math.round(e/1024)+" "+l.translate("kb"):e+" "+l.translate("b")},parseSize:a.Basic.parseSizeStr,predictRuntime:function(e,t){var i,n;return i=new l.Uploader(e),n=o.thatCan(i.getOption().required_features,t||e.runtimes),i.destroy(),n},addFileFilter:function(e,t){s[e]=t}};l.addFileFilter("mime_types",function(e,t,i){e.length&&!e.regexp.test(t.name)?(this.trigger("Error",{code:l.FILE_EXTENSION_ERROR,message:l.translate("File extension error."),file:t}),i(!1)):i(!0)}),l.addFileFilter("max_file_size",function(e,t,i){var n;e=l.parseSize(e),t.size!==n&&e&&t.size>e?(this.trigger("Error",{code:l.FILE_SIZE_ERROR,message:l.translate("File size error."),file:t}),i(!1)):i(!0)}),l.addFileFilter("prevent_duplicates",function(e,t,i){if(e)for(var n=this.files.length;n--;)if(t.name===this.files[n].name&&t.size===this.files[n].size)return this.trigger("Error",{code:l.FILE_DUPLICATE_ERROR,message:l.translate("Duplicate file error."),file:t}),i(!1),void 0;i(!0)}),l.Uploader=function(e){function a(){var e,t,i=0;if(this.state==l.STARTED){for(t=0;t<T.length;t++)e||T[t].status!=l.QUEUED?i++:(e=T[t],this.trigger("BeforeUpload",e)&&(e.status=l.UPLOADING,this.trigger("UploadFile",e)));i==T.length&&(this.state!==l.STOPPED&&(this.state=l.STOPPED,this.trigger("StateChanged")),this.trigger("UploadComplete",T))}}function u(e){e.percent=e.size>0?Math.ceil(100*(e.loaded/e.size)):100,d()}function d(){var e,t;for(w.reset(),e=0;e<T.length;e++)t=T[e],t.size!==i?(w.size+=t.origSize,w.loaded+=t.loaded*t.origSize/t.size):w.size=i,t.status==l.DONE?w.uploaded++:t.status==l.FAILED?w.failed++:w.queued++;w.size===i?w.percent=T.length>0?Math.ceil(100*(w.uploaded/T.length)):0:(w.bytesPerSec=Math.ceil(w.loaded/((+new Date-S||1)/1e3)),w.percent=w.size>0?Math.ceil(100*(w.loaded/w.size)):0)}function c(){var e=A[0]||P[0];return e?e.getRuntime().uid:!1}function f(e,t){if(e.ruid){var i=o.getInfo(e.ruid);if(i)return i.can(t)}return!1}function p(){this.bind("FilesAdded FilesRemoved",function(e){e.trigger("QueueChanged"),e.refresh()}),this.bind("CancelUpload",y),this.bind("BeforeUpload",m),this.bind("UploadFile",E),this.bind("UploadProgress",v),this.bind("StateChanged",b),this.bind("QueueChanged",d),this.bind("Error",z),this.bind("FileUploaded",R),this.bind("Destroy",O)}function g(e,i){var n=this,r=0,s=[],a={runtime_order:e.runtimes,required_caps:e.required_features,preferred_caps:F,swf_url:e.flash_swf_url,xap_url:e.silverlight_xap_url};l.each(e.runtimes.split(/\s*,\s*/),function(t){e[t]&&(a[t]=e[t])}),e.browse_button&&l.each(e.browse_button,function(i){s.push(function(s){var u=new t.file.FileInput(l.extend({},a,{accept:e.filters.mime_types,name:e.file_data_name,multiple:e.multi_selection,container:e.container,browse_button:i}));u.onready=function(){var e=o.getInfo(this.ruid);l.extend(n.features,{chunks:e.can("slice_blob"),multipart:e.can("send_multipart"),multi_selection:e.can("select_multiple")}),r++,A.push(this),s()},u.onchange=function(){n.addFile(this.files)},u.bind("mouseenter mouseleave mousedown mouseup",function(t){U||(e.browse_button_hover&&("mouseenter"===t.type?l.addClass(i,e.browse_button_hover):"mouseleave"===t.type&&l.removeClass(i,e.browse_button_hover)),e.browse_button_active&&("mousedown"===t.type?l.addClass(i,e.browse_button_active):"mouseup"===t.type&&l.removeClass(i,e.browse_button_active)))}),u.bind("mousedown",function(){n.trigger("Browse")}),u.bind("error runtimeerror",function(){u=null,s()}),u.init()})}),e.drop_element&&l.each(e.drop_element,function(e){s.push(function(i){var s=new t.file.FileDrop(l.extend({},a,{drop_zone:e}));s.onready=function(){var e=o.getInfo(this.ruid);l.extend(n.features,{chunks:e.can("slice_blob"),multipart:e.can("send_multipart"),dragdrop:e.can("drag_and_drop")}),r++,P.push(this),i()},s.ondrop=function(){n.addFile(this.files)},s.bind("error runtimeerror",function(){s=null,i()}),s.init()})}),l.inSeries(s,function(){"function"==typeof i&&i(r)})}function h(e,n,r){var s=new t.image.Image;try{s.onload=function(){return n.width>this.width&&n.height>this.height&&n.quality===i&&n.preserve_headers&&!n.crop?(this.destroy(),r(e)):(s.downsize(n.width,n.height,n.crop,n.preserve_headers),void 0)},s.onresize=function(){r(this.getAsBlob(e.type,n.quality)),this.destroy()},s.onerror=function(){r(e)},s.load(e)}catch(a){r(e)}}function _(e,i,r){function s(e,i,n){var r=I[e];switch(e){case"max_file_size":"max_file_size"===e&&(I.max_file_size=I.filters.max_file_size=i);break;case"chunk_size":(i=l.parseSize(i))&&(I[e]=i,I.send_file_name=!0);break;case"multipart":I[e]=i,i||(I.send_file_name=!0);break;case"unique_names":I[e]=i,i&&(I.send_file_name=!0);break;case"filters":"array"===l.typeOf(i)&&(i={mime_types:i}),n?l.extend(I.filters,i):I.filters=i,i.mime_types&&("string"===l.typeOf(i.mime_types)&&(i.mime_types=t.core.utils.Mime.mimes2extList(i.mime_types)),i.mime_types.regexp=function(e){var t=[];return l.each(e,function(e){l.each(e.extensions.split(/,/),function(e){/^\s*\*\s*$/.test(e)?t.push("\\.*"):t.push("\\."+e.replace(new RegExp("["+"/^$.*+?|()[]{}\\".replace(/./g,"\\$&")+"]","g"),"\\$&"))})}),new RegExp("("+t.join("|")+")$","i")}(i.mime_types),I.filters.mime_types=i.mime_types);break;case"resize":I.resize=i?l.extend({preserve_headers:!0,crop:!1},i):!1;break;case"prevent_duplicates":I.prevent_duplicates=I.filters.prevent_duplicates=!!i;break;case"container":case"browse_button":case"drop_element":i="container"===e?l.get(i):l.getAll(i);case"runtimes":case"multi_selection":case"flash_swf_url":case"silverlight_xap_url":I[e]=i,n||(u=!0);break;default:I[e]=i}n||a.trigger("OptionChanged",e,i,r)}var a=this,u=!1;"object"==typeof e?l.each(e,function(e,t){s(t,e,r)}):s(e,i,r),r?(I.required_features=n(l.extend({},I)),F=n(l.extend({},I,{required_features:!0}))):u&&(a.trigger("Destroy"),g.call(a,I,function(e){e?(a.runtime=o.getInfo(c()).type,a.trigger("Init",{runtime:a.runtime}),a.trigger("PostInit")):a.trigger("Error",{code:l.INIT_ERROR,message:l.translate("Init error.")})}))}function m(e,t){if(e.settings.unique_names){var i=t.name.match(/\.([^.]+)$/),n="part";i&&(n=i[1]),t.target_name=t.id+"."+n}}function E(e,i){function n(){d-->0?r(s,1e3):(i.loaded=p,e.trigger("Error",{code:l.HTTP_ERROR,message:l.translate("HTTP Error."),file:i,response:D.responseText,status:D.status,responseHeaders:D.getAllResponseHeaders()}))}function s(){var f,g,h,_={};i.status===l.UPLOADING&&e.state!==l.STOPPED&&(e.settings.send_file_name&&(_.name=i.target_name||i.name),u&&c.chunks&&a.size>u?(h=Math.min(u,a.size-p),f=a.slice(p,p+h)):(h=a.size,f=a),u&&c.chunks&&(e.settings.send_chunk_number?(_.chunk=Math.ceil(p/u),_.chunks=Math.ceil(a.size/u)):(_.offset=p,_.total=a.size)),D=new t.xhr.XMLHttpRequest,D.upload&&(D.upload.onprogress=function(t){i.loaded=Math.min(i.size,p+t.loaded),e.trigger("UploadProgress",i)}),D.onload=function(){return D.status>=400?(n(),void 0):(d=e.settings.max_retries,h<a.size?(f.destroy(),p+=h,i.loaded=Math.min(p,a.size),e.trigger("ChunkUploaded",i,{offset:i.loaded,total:a.size,response:D.responseText,status:D.status,responseHeaders:D.getAllResponseHeaders()}),"Android Browser"===l.ua.browser&&e.trigger("UploadProgress",i)):i.loaded=i.size,f=g=null,!p||p>=a.size?(i.size!=i.origSize&&(a.destroy(),a=null),e.trigger("UploadProgress",i),i.status=l.DONE,e.trigger("FileUploaded",i,{response:D.responseText,status:D.status,responseHeaders:D.getAllResponseHeaders()})):r(s,1),void 0)},D.onerror=function(){n()},D.onloadend=function(){this.destroy(),D=null},e.settings.multipart&&c.multipart?(D.open("post",o,!0),l.each(e.settings.headers,function(e,t){D.setRequestHeader(t,e)}),g=new t.xhr.FormData,l.each(l.extend(_,e.settings.multipart_params),function(e,t){g.append(t,e)}),g.append(e.settings.file_data_name,f),D.send(g,{runtime_order:e.settings.runtimes,required_caps:e.settings.required_features,preferred_caps:F,swf_url:e.settings.flash_swf_url,xap_url:e.settings.silverlight_xap_url})):(o=l.buildUrl(e.settings.url,l.extend(_,e.settings.multipart_params)),D.open("post",o,!0),l.each(e.settings.headers,function(e,t){D.setRequestHeader(t,e)}),D.hasRequestHeader("Content-Type")||D.setRequestHeader("Content-Type","application/octet-stream"),D.send(f,{runtime_order:e.settings.runtimes,required_caps:e.settings.required_features,preferred_caps:F,swf_url:e.settings.flash_swf_url,xap_url:e.settings.silverlight_xap_url})))}var a,o=e.settings.url,u=e.settings.chunk_size,d=e.settings.max_retries,c=e.features,p=0;i.loaded&&(p=i.loaded=u?u*Math.floor(i.loaded/u):0),a=i.getSource(),!l.isEmptyObj(e.settings.resize)&&f(a,"send_binary_string")&&-1!==l.inArray(a.type,["image/jpeg","image/png"])?h.call(this,a,e.settings.resize,function(e){a=e,i.size=e.size,s()}):s()}function v(e,t){u(t)}function b(e){if(e.state==l.STARTED)S=+new Date;else if(e.state==l.STOPPED)for(var t=e.files.length-1;t>=0;t--)e.files[t].status==l.UPLOADING&&(e.files[t].status=l.QUEUED,d())}function y(){D&&D.abort()}function R(e){d(),r(function(){a.call(e)},1)}function z(e,t){t.code===l.INIT_ERROR?e.destroy():t.code===l.HTTP_ERROR&&(t.file.status=l.FAILED,u(t.file),e.state==l.STARTED&&(e.trigger("CancelUpload"),r(function(){a.call(e)},1)))}function O(e){e.stop(),l.each(T,function(e){e.destroy()}),T=[],A.length&&(l.each(A,function(e){e.destroy()}),A=[]),P.length&&(l.each(P,function(e){e.destroy()}),P=[]),F={},U=!1,S=D=null,w.reset()}var I,S,w,D,x=l.guid(),T=[],F={},A=[],P=[],U=!1;I={runtimes:o.order,max_retries:0,chunk_size:0,multipart:!0,multi_selection:!0,file_data_name:"file",flash_swf_url:"js/Moxie.swf",silverlight_xap_url:"js/Moxie.xap",filters:{mime_types:[],prevent_duplicates:!1,max_file_size:0},resize:!1,send_file_name:!0,send_chunk_number:!0},_.call(this,e,null,!0),w=new l.QueueProgress,l.extend(this,{id:x,uid:x,state:l.STOPPED,features:{},runtime:null,files:T,settings:I,total:w,init:function(){var e,t,i=this;return e=i.getOption("preinit"),"function"==typeof e?e(i):l.each(e,function(e,t){i.bind(t,e)}),p.call(i),l.each(["container","browse_button","drop_element"],function(e){return null===i.getOption(e)?(t={code:l.INIT_ERROR,message:l.sprintf(l.translate("%s specified, but cannot be found."),e)},!1):void 0}),t?i.trigger("Error",t):I.browse_button||I.drop_element?(g.call(i,I,function(e){var t=i.getOption("init");"function"==typeof t?t(i):l.each(t,function(e,t){i.bind(t,e)}),e?(i.runtime=o.getInfo(c()).type,i.trigger("Init",{runtime:i.runtime}),i.trigger("PostInit")):i.trigger("Error",{code:l.INIT_ERROR,message:l.translate("Init error.")})}),void 0):i.trigger("Error",{code:l.INIT_ERROR,message:l.translate("You must specify either browse_button or drop_element.")})},setOption:function(e,t){_.call(this,e,t,!this.runtime)},getOption:function(e){return e?I[e]:I},refresh:function(){A.length&&l.each(A,function(e){e.trigger("Refresh")}),this.trigger("Refresh")},start:function(){this.state!=l.STARTED&&(this.state=l.STARTED,this.trigger("StateChanged"),a.call(this))},stop:function(){this.state!=l.STOPPED&&(this.state=l.STOPPED,this.trigger("StateChanged"),this.trigger("CancelUpload"))},disableBrowse:function(){U=arguments[0]!==i?arguments[0]:!0,A.length&&l.each(A,function(e){e.disable(U)}),this.trigger("DisableBrowse",U)},getFile:function(e){var t;for(t=T.length-1;t>=0;t--)if(T[t].id===e)return T[t]},addFile:function(e,i){function n(e,t){var i=[];l.each(u.settings.filters,function(t,n){s[n]&&i.push(function(i){s[n].call(u,t,e,function(e){i(!e)})})}),l.inSeries(i,t)}function a(e){var s=l.typeOf(e);if(e instanceof t.file.File){if(!e.ruid&&!e.isDetached()){if(!o)return!1;e.ruid=o,e.connectRuntime(o)}a(new l.File(e))}else e instanceof t.file.Blob?(a(e.getSource()),e.destroy()):e instanceof l.File?(i&&(e.name=i),d.push(function(t){n(e,function(i){i||(T.push(e),f.push(e),u.trigger("FileFiltered",e)),r(t,1)})})):-1!==l.inArray(s,["file","blob"])?a(new t.file.File(null,e)):"node"===s&&"filelist"===l.typeOf(e.files)?l.each(e.files,a):"array"===s&&(i=null,l.each(e,a))}var o,u=this,d=[],f=[];o=c(),a(e),d.length&&l.inSeries(d,function(){f.length&&u.trigger("FilesAdded",f)})},removeFile:function(e){for(var t="string"==typeof e?e:e.id,i=T.length-1;i>=0;i--)if(T[i].id===t)return this.splice(i,1)[0]},splice:function(e,t){var n=T.splice(e===i?0:e,t===i?T.length:t),r=!1;return this.state==l.STARTED&&(l.each(n,function(e){return e.status===l.UPLOADING?(r=!0,!1):void 0}),r&&this.stop()),this.trigger("FilesRemoved",n),l.each(n,function(e){e.destroy()}),r&&this.start(),n},dispatchEvent:function(e){var t,i;if(e=e.toLowerCase(),t=this.hasEventListener(e)){t.sort(function(e,t){return t.priority-e.priority}),i=[].slice.call(arguments),i.shift(),i.unshift(this);for(var n=0;n<t.length;n++)if(t[n].fn.apply(t[n].scope,i)===!1)return!1}return!0},bind:function(e,t,i,n){l.Uploader.prototype.bind.call(this,e,t,n,i)},destroy:function(){this.trigger("Destroy"),I=w=null,this.unbindAll()}})},l.Uploader.prototype=t.core.EventTarget.instance,l.File=function(){function e(e){l.extend(this,{id:l.guid(),name:e.name||e.fileName,type:e.type||"",size:e.size||e.fileSize,origSize:e.size||e.fileSize,loaded:0,percent:0,status:l.QUEUED,lastModifiedDate:e.lastModifiedDate||(new Date).toLocaleString(),getNative:function(){var e=this.getSource().getSource();return-1!==l.inArray(l.typeOf(e),["blob","file"])?e:null},getSource:function(){return t[this.id]?t[this.id]:null},destroy:function(){var e=this.getSource();e&&(e.destroy(),delete t[this.id])}}),t[this.id]=e}var t={};return e}(),l.QueueProgress=function(){var e=this;e.size=0,e.loaded=0,e.uploaded=0,e.failed=0,e.queued=0,e.percent=0,e.bytesPerSec=0,e.reset=function(){e.size=e.loaded=e.uploaded=e.failed=e.queued=e.percent=e.bytesPerSec=0}},e.plupload=l}(this,e)});
  5352. define('upload',['jquery', 'bootstrap', 'plupload', 'template'], function ($, undefined, Plupload, Template) {
  5353. var Upload = {
  5354. list: {},
  5355. config: {
  5356. container: document.body,
  5357. classname: '.plupload:not([initialized])',
  5358. previewtpl: '<li class="col-xs-3"><a href="<%=fullurl%>" data-url="<%=url%>" target="_blank" class="thumbnail"><img src="<%=fullurl%>" onerror="this.src=\'https://tool.fastadmin.net/icon/\'+\'<%=fullurl%>\'.split(\'.\').pop()+\'.png\';this.onerror=null;" class="img-responsive"></a><a href="javascript:;" class="btn btn-danger btn-xs btn-trash"><i class="fa fa-trash"></i></a></li>',
  5359. },
  5360. events: {
  5361. onInit: function (up) {
  5362. //修复少数安卓浏览器无法上传图片的Bug
  5363. var input = $("input[type=file]", $(up.settings.button).next());
  5364. if (input && input.prop("accept").match(/image\/jpeg/)) {
  5365. input.prop("accept", "image/jpg," + input.prop("accept"));
  5366. }
  5367. },
  5368. //初始化完成
  5369. onPostInit: function (up) {
  5370. },
  5371. //文件添加成功后
  5372. onFileAdded: function (up, files) {
  5373. var button = up.settings.button;
  5374. $(button).data("bakup-html", $(button).html());
  5375. var maxcount = $(button).data("maxcount");
  5376. var input_id = $(button).data("input-id") ? $(button).data("input-id") : "";
  5377. maxcount = typeof maxcount !== "undefined" ? maxcount : 0;
  5378. if (maxcount > 0 && input_id) {
  5379. var inputObj = $("#" + input_id);
  5380. if (inputObj.size() > 0) {
  5381. var value = $.trim(inputObj.val());
  5382. var nums = value === '' ? 0 : value.split(/\,/).length;
  5383. var remains = maxcount - nums;
  5384. if (files.length > remains) {
  5385. for (var i = 0; i < files.length; i++) {
  5386. up.removeFile(files[i]);
  5387. }
  5388. Toastr.error(__('You can upload up to %d file%s', remains));
  5389. return false;
  5390. }
  5391. }
  5392. }
  5393. //添加后立即上传
  5394. setTimeout(function () {
  5395. up.start();
  5396. }, 1);
  5397. },
  5398. //上传进行中的回调
  5399. onUploadProgress: function (up, file) {
  5400. },
  5401. //上传之前的回调
  5402. onBeforeUpload: function (up, file) {
  5403. },
  5404. //上传成功的回调
  5405. onUploadSuccess: function (up, ret) {
  5406. var button = up.settings.button;
  5407. var onUploadSuccess = up.settings.onUploadSuccess;
  5408. var data = typeof ret.data !== 'undefined' ? ret.data : null;
  5409. //上传成功后回调
  5410. if (button) {
  5411. //如果有文本框则填充
  5412. var input_id = $(button).data("input-id") ? $(button).data("input-id") : "";
  5413. if (input_id) {
  5414. var urlArr = [];
  5415. var inputObj = $("#" + input_id);
  5416. if ($(button).data("multiple") && inputObj.val() !== "") {
  5417. urlArr.push(inputObj.val());
  5418. }
  5419. urlArr.push(data.url);
  5420. inputObj.val(urlArr.join(",")).trigger("change");
  5421. }
  5422. //如果有回调函数
  5423. var onDomUploadSuccess = $(button).data("upload-success");
  5424. if (onDomUploadSuccess) {
  5425. if (typeof onDomUploadSuccess !== 'function' && typeof Upload.api.custom[onDomUploadSuccess] === 'function') {
  5426. onDomUploadSuccess = Upload.api.custom[onDomUploadSuccess];
  5427. }
  5428. if (typeof onDomUploadSuccess === 'function') {
  5429. var result = onDomUploadSuccess.call(button, data, ret);
  5430. if (result === false)
  5431. return;
  5432. }
  5433. }
  5434. }
  5435. if (typeof onUploadSuccess === 'function') {
  5436. var result = onUploadSuccess.call(button, data, ret);
  5437. if (result === false)
  5438. return;
  5439. }
  5440. },
  5441. //上传错误的回调
  5442. onUploadError: function (up, ret) {
  5443. var button = up.settings.button;
  5444. var onUploadError = up.settings.onUploadError;
  5445. var data = typeof ret.data !== 'undefined' ? ret.data : null;
  5446. if (button) {
  5447. var onDomUploadError = $(button).data("upload-error");
  5448. if (onDomUploadError) {
  5449. if (typeof onDomUploadError !== 'function' && typeof Upload.api.custom[onDomUploadError] === 'function') {
  5450. onDomUploadError = Upload.api.custom[onDomUploadError];
  5451. }
  5452. if (typeof onDomUploadError === 'function') {
  5453. var result = onDomUploadError.call(button, data, ret);
  5454. if (result === false)
  5455. return;
  5456. }
  5457. }
  5458. }
  5459. if (typeof onUploadError === 'function') {
  5460. var result = onUploadError.call(button, data, ret);
  5461. if (result === false) {
  5462. return;
  5463. }
  5464. }
  5465. Toastr.error(ret.msg + "(code:" + ret.code + ")");
  5466. },
  5467. //服务器响应数据后
  5468. onUploadResponse: function (response) {
  5469. try {
  5470. var ret = typeof response === 'object' ? response : JSON.parse(response);
  5471. if (!ret.hasOwnProperty('code')) {
  5472. $.extend(ret, {code: -2, msg: response, data: null});
  5473. }
  5474. } catch (e) {
  5475. var ret = {code: -1, msg: e.message, data: null};
  5476. }
  5477. return ret;
  5478. },
  5479. //上传全部结束后
  5480. onUploadComplete: function (up, files) {
  5481. var button = up.settings.button;
  5482. var onUploadComplete = up.settings.onUploadComplete;
  5483. if (button) {
  5484. var onDomUploadComplete = $(button).data("upload-complete");
  5485. if (onDomUploadComplete) {
  5486. if (typeof onDomUploadComplete !== 'function' && typeof Upload.api.custom[onDomUploadComplete] === 'function') {
  5487. onDomUploadComplete = Upload.api.custom[onDomUploadComplete];
  5488. }
  5489. if (typeof onDomUploadComplete === 'function') {
  5490. var result = onDomUploadComplete.call(button, files);
  5491. if (result === false)
  5492. return;
  5493. }
  5494. }
  5495. }
  5496. if (typeof onUploadComplete === 'function') {
  5497. var result = onUploadComplete.call(button, files);
  5498. if (result === false) {
  5499. return;
  5500. }
  5501. }
  5502. }
  5503. },
  5504. api: {
  5505. //Plupload上传
  5506. plupload: function (element, onUploadSuccess, onUploadError, onUploadComplete) {
  5507. element = typeof element === 'undefined' ? Upload.config.classname : element;
  5508. $(element, Upload.config.container).each(function () {
  5509. if ($(this).attr("initialized")) {
  5510. return true;
  5511. }
  5512. $(this).attr("initialized", true);
  5513. var that = this;
  5514. var id = $(this).prop("id");
  5515. var url = $(this).data("url");
  5516. var maxsize = $(this).data("maxsize");
  5517. var mimetype = $(this).data("mimetype");
  5518. var multipart = $(this).data("multipart");
  5519. var multiple = $(this).data("multiple");
  5520. //填充ID
  5521. var input_id = $(that).data("input-id") ? $(that).data("input-id") : "";
  5522. //预览ID
  5523. var preview_id = $(that).data("preview-id") ? $(that).data("preview-id") : "";
  5524. //上传URL
  5525. url = url ? url : Config.upload.uploadurl;
  5526. url = Fast.api.fixurl(url);
  5527. //最大可上传文件大小
  5528. maxsize = typeof maxsize !== "undefined" ? maxsize : Config.upload.maxsize;
  5529. //文件类型
  5530. mimetype = typeof mimetype !== "undefined" ? mimetype : Config.upload.mimetype;
  5531. //请求的表单参数
  5532. multipart = typeof multipart !== "undefined" ? multipart : Config.upload.multipart;
  5533. //是否支持批量上传
  5534. multiple = typeof multiple !== "undefined" ? multiple : Config.upload.multiple;
  5535. var mimetypeArr = new Array();
  5536. //支持后缀和Mimetype格式,以,分隔
  5537. if (mimetype && mimetype !== "*" && mimetype.indexOf("/") === -1) {
  5538. var tempArr = mimetype.split(',');
  5539. for (var i = 0; i < tempArr.length; i++) {
  5540. mimetypeArr.push({title: __('Files'), extensions: tempArr[i]});
  5541. }
  5542. mimetype = mimetypeArr;
  5543. }
  5544. //生成Plupload实例
  5545. Upload.list[id] = new Plupload.Uploader({
  5546. runtimes: 'html5,flash,silverlight,html4',
  5547. multi_selection: multiple, //是否允许多选批量上传
  5548. browse_button: id, // 浏览按钮的ID
  5549. container: $(this).parent().get(0), //取按钮的上级元素
  5550. flash_swf_url: '/assets/libs/plupload/js/Moxie.swf',
  5551. silverlight_xap_url: '/assets/libs/plupload/js/Moxie.xap',
  5552. drop_element: [id, $(this).data("input-id")],
  5553. filters: {
  5554. max_file_size: maxsize,
  5555. mime_types: mimetype,
  5556. },
  5557. url: url,
  5558. multipart_params: $.isArray(multipart) ? {} : multipart,
  5559. init: {
  5560. PostInit: Upload.events.onPostInit,
  5561. FilesAdded: Upload.events.onFileAdded,
  5562. BeforeUpload: Upload.events.onBeforeUpload,
  5563. UploadProgress: function (up, file) {
  5564. var button = up.settings.button;
  5565. $(button).prop("disabled", true).html("<i class='fa fa-upload'></i> " + __('Upload') + file.percent + "%");
  5566. Upload.events.onUploadProgress(up, file);
  5567. },
  5568. FileUploaded: function (up, file, info) {
  5569. var button = up.settings.button;
  5570. //还原按钮文字及状态
  5571. $(button).prop("disabled", false).html($(button).data("bakup-html"));
  5572. var ret = Upload.events.onUploadResponse(info.response, info, up, file);
  5573. file.ret = ret;
  5574. if (ret.code === 1) {
  5575. Upload.events.onUploadSuccess(up, ret, file);
  5576. } else {
  5577. Upload.events.onUploadError(up, ret, file);
  5578. }
  5579. },
  5580. UploadComplete: Upload.events.onUploadComplete,
  5581. Error: function (up, err) {
  5582. var button = up.settings.button;
  5583. $(button).prop("disabled", false).html($(button).data("bakup-html"));
  5584. var ret = {code: err.code, msg: err.message, data: null};
  5585. Upload.events.onUploadError(up, ret);
  5586. }
  5587. },
  5588. onUploadSuccess: onUploadSuccess,
  5589. onUploadError: onUploadError,
  5590. onUploadComplete: onUploadComplete,
  5591. button: that
  5592. });
  5593. //拖动排序
  5594. if (preview_id && multiple) {
  5595. require(['dragsort'], function () {
  5596. $("#" + preview_id).dragsort({
  5597. dragSelector: "li a:not(.btn-trash)",
  5598. dragEnd: function () {
  5599. $("#" + preview_id).trigger("fa.preview.change");
  5600. },
  5601. placeHolderTemplate: '<li class="col-xs-3"></li>'
  5602. });
  5603. });
  5604. }
  5605. if (preview_id && input_id) {
  5606. $(document.body).on("keyup change", "#" + input_id, function () {
  5607. var inputStr = $("#" + input_id).val();
  5608. var inputArr = inputStr.split(/\,/);
  5609. $("#" + preview_id).empty();
  5610. var tpl = $("#" + preview_id).data("template") ? $("#" + preview_id).data("template") : "";
  5611. $.each(inputArr, function (i, j) {
  5612. if (!j) {
  5613. return true;
  5614. }
  5615. var data = {url: j, fullurl: Fast.api.cdnurl(j), data: $(that).data()};
  5616. var html = tpl ? Template(tpl, data) : Template.render(Upload.config.previewtpl, data);
  5617. $("#" + preview_id).append(html);
  5618. });
  5619. });
  5620. $("#" + input_id).trigger("change");
  5621. }
  5622. if (preview_id) {
  5623. // 监听事件
  5624. $(document.body).on("fa.preview.change", "#" + preview_id, function () {
  5625. var urlArr = new Array();
  5626. $("#" + preview_id + " [data-url]").each(function (i, j) {
  5627. urlArr.push($(this).data("url"));
  5628. });
  5629. if (input_id) {
  5630. $("#" + input_id).val(urlArr.join(","));
  5631. }
  5632. });
  5633. // 移除按钮事件
  5634. $(document.body).on("click", "#" + preview_id + " .btn-trash", function () {
  5635. $(this).closest("li").remove();
  5636. $("#" + preview_id).trigger("fa.preview.change");
  5637. });
  5638. }
  5639. if (input_id) {
  5640. //粘贴上传
  5641. $("body").on('paste', "#" + input_id, function (event) {
  5642. var that = this;
  5643. var image, pasteEvent;
  5644. pasteEvent = event.originalEvent;
  5645. if (pasteEvent.clipboardData && pasteEvent.clipboardData.items) {
  5646. image = Upload.api.getImageFromClipboard(pasteEvent);
  5647. if (image) {
  5648. event.preventDefault();
  5649. var button = $(".plupload[data-input-id='" + $(that).attr("id") + "']");
  5650. Upload.api.send(image, function (data) {
  5651. var urlArr = [];
  5652. if (button && button.data("multiple") && $(that).val() !== '') {
  5653. urlArr.push($(that).val());
  5654. }
  5655. urlArr.push(data.url);
  5656. $(that).val(urlArr.join(",")).trigger("change");
  5657. });
  5658. }
  5659. }
  5660. });
  5661. //拖拽上传
  5662. $("body").on('drop', "#" + input_id, function (event) {
  5663. var that = this;
  5664. var images, pasteEvent;
  5665. pasteEvent = event.originalEvent;
  5666. if (pasteEvent.dataTransfer && pasteEvent.dataTransfer.files) {
  5667. images = Upload.api.getImageFromDrop(pasteEvent);
  5668. if (images.length > 0) {
  5669. event.preventDefault();
  5670. var button = $(".plupload[data-input-id='" + $(that).attr("id") + "']");
  5671. $.each(images, function (i, image) {
  5672. Upload.api.send(image, function (data) {
  5673. var urlArr = [];
  5674. if (button && button.data("multiple") && $(that).val() !== '') {
  5675. urlArr.push($(that).val());
  5676. }
  5677. urlArr.push(data.url);
  5678. $(that).val(urlArr.join(",")).trigger("change");
  5679. });
  5680. });
  5681. }
  5682. }
  5683. });
  5684. }
  5685. Upload.list[id].init();
  5686. });
  5687. },
  5688. // AJAX异步上传
  5689. send: function (file, onUploadSuccess, onUploadError, onUploadComplete) {
  5690. var index = Layer.msg(__('Uploading'), {offset: 't', time: 0});
  5691. var id = Plupload.guid();
  5692. var _onPostInit = Upload.events.onPostInit;
  5693. Upload.events.onPostInit = function () {
  5694. // 当加载完成后添加文件并上传
  5695. Upload.list[id].addFile(file);
  5696. //Upload.list[id].start();
  5697. };
  5698. $('<button type="button" id="' + id + '" class="btn btn-danger hidden plupload" />').appendTo("body");
  5699. $("#" + id).data("upload-complete", function (files) {
  5700. Upload.events.onPostInit = _onPostInit;
  5701. Layer.close(index);
  5702. });
  5703. Upload.api.plupload("#" + id, onUploadSuccess, onUploadError, onUploadComplete);
  5704. },
  5705. custom: {
  5706. //自定义上传完成回调
  5707. afteruploadcallback: function (response) {
  5708. console.log(this, response);
  5709. alert("Custom Callback,Response URL:" + response.url);
  5710. },
  5711. },
  5712. getImageFromClipboard: function (data) {
  5713. var i, item;
  5714. i = 0;
  5715. while (i < data.clipboardData.items.length) {
  5716. item = data.clipboardData.items[i];
  5717. if (item.type.indexOf("image") !== -1) {
  5718. return item.getAsFile() || false;
  5719. }
  5720. i++;
  5721. }
  5722. return false;
  5723. },
  5724. getImageFromDrop: function (data) {
  5725. var i, item, images;
  5726. i = 0;
  5727. images = [];
  5728. while (i < data.dataTransfer.files.length) {
  5729. item = data.dataTransfer.files[i];
  5730. if (item.type.indexOf("image") !== -1) {
  5731. images.push(item);
  5732. }
  5733. i++;
  5734. }
  5735. return images;
  5736. }
  5737. }
  5738. }
  5739. ;
  5740. return Upload;
  5741. });
  5742. /*! nice-validator 1.1.4
  5743. * (c) 2012-2018 Jony Zhang <niceue@live.com>, MIT Licensed
  5744. * https://github.com/niceue/nice-validator
  5745. */
  5746. ;(function(factory) {
  5747. typeof module === 'object' && module.exports ? module.exports = factory( require( 'jquery' ) ) :
  5748. typeof define === 'function' && define.amd ? define('validator-core',['jquery'], factory) :
  5749. factory(jQuery);
  5750. }(function($, undefined) {
  5751. 'use strict';
  5752. var NS = 'validator',
  5753. CLS_NS = '.' + NS,
  5754. CLS_NS_RULE = '.rule',
  5755. CLS_NS_FIELD = '.field',
  5756. CLS_NS_FORM = '.form',
  5757. CLS_WRAPPER = 'nice-' + NS,
  5758. CLS_MSG_BOX = 'msg-box',
  5759. ARIA_INVALID = 'aria-invalid',
  5760. DATA_RULE = 'data-rule',
  5761. DATA_MSG = 'data-msg',
  5762. DATA_TIP = 'data-tip',
  5763. DATA_OK = 'data-ok',
  5764. DATA_TIMELY = 'data-timely',
  5765. DATA_TARGET = 'data-target',
  5766. DATA_DISPLAY = 'data-display',
  5767. DATA_MUST = 'data-must',
  5768. NOVALIDATE = 'novalidate',
  5769. INPUT_SELECTOR = ':verifiable',
  5770. rRules = /(&)?(!)?\b(\w+)(?:\[\s*(.*?\]?)\s*\]|\(\s*(.*?\)?)\s*\))?\s*(;|\|)?/g,
  5771. rRule = /(\w+)(?:\[\s*(.*?\]?)\s*\]|\(\s*(.*?\)?)\s*\))?/,
  5772. rDisplay = /(?:([^:;\(\[]*):)?(.*)/,
  5773. rDoubleBytes = /[^\x00-\xff]/g,
  5774. rPos = /top|right|bottom|left/,
  5775. rAjaxType = /(?:(cors|jsonp):)?(?:(post|get):)?(.+)/i,
  5776. rUnsafe = /[<>'"`\\]|&#x?\d+[A-F]?;?|%3[A-F]/gmi,
  5777. noop = $.noop,
  5778. proxy = $.proxy,
  5779. trim = $.trim,
  5780. isFunction = $.isFunction,
  5781. isString = function(s) {
  5782. return typeof s === 'string';
  5783. },
  5784. isObject = function(o) {
  5785. return o && Object.prototype.toString.call(o) === '[object Object]';
  5786. },
  5787. isIE = document.documentMode || +(navigator.userAgent.match(/MSIE (\d+)/) && RegExp.$1),
  5788. attr = function(el, key, value) {
  5789. if (!el || !el.tagName) return null;
  5790. if (value !== undefined) {
  5791. if (value === null) el.removeAttribute(key);
  5792. else el.setAttribute(key, '' + value);
  5793. } else {
  5794. return el.getAttribute(key);
  5795. }
  5796. },
  5797. novalidateonce,
  5798. preinitialized = {},
  5799. defaults = {
  5800. debug: 0,
  5801. theme: 'default',
  5802. ignore: '',
  5803. focusInvalid: true,
  5804. focusCleanup: false,
  5805. stopOnError: false,
  5806. beforeSubmit: null,
  5807. valid: null,
  5808. invalid: null,
  5809. validation: null,
  5810. formClass: 'n-default',
  5811. validClass: 'n-valid',
  5812. invalidClass: 'n-invalid',
  5813. bindClassTo: null
  5814. },
  5815. fieldDefaults = {
  5816. timely: 1,
  5817. display: null,
  5818. target: null,
  5819. ignoreBlank: false,
  5820. showOk: true,
  5821. // Translate ajax response to validation result
  5822. dataFilter: function (data) {
  5823. if ( isString(data) || ( isObject(data) && ('error' in data || 'ok' in data) ) ) {
  5824. return data;
  5825. }
  5826. },
  5827. msgMaker: function(opt) {
  5828. var html;
  5829. html = '<span role="alert" class="msg-wrap n-'+ opt.type + '">' + opt.arrow;
  5830. if (opt.result) {
  5831. $.each(opt.result, function(i, obj){
  5832. html += '<span class="n-'+ obj.type +'">' + opt.icon + '<span class="n-msg">' + obj.msg + '</span></span>';
  5833. });
  5834. } else {
  5835. html += opt.icon + '<span class="n-msg">' + opt.msg + '</span>';
  5836. }
  5837. html += '</span>';
  5838. return html;
  5839. },
  5840. msgWrapper: 'span',
  5841. msgArrow: '',
  5842. msgIcon: '<span class="n-icon"></span>',
  5843. msgClass: 'n-right',
  5844. msgStyle: '',
  5845. msgShow: null,
  5846. msgHide: null
  5847. },
  5848. themes = {};
  5849. /** jQuery Plugin
  5850. * @param {Object} options
  5851. debug {Boolean} 0 Whether to enable debug mode
  5852. timely {Number} 1 Whether to enable timely validation
  5853. theme {String} 'default' Theme name
  5854. stopOnError {Boolean} false Whether to stop validate when found an error input
  5855. focusCleanup {Boolean} false Whether to clean up the field message when focus the field
  5856. focusInvalid {Boolean} true Whether to focus the field that is invalid
  5857. ignoreBlank {Boolean} false When the field has no value, whether to ignore validation
  5858. ignore {jqSelector} '' Ignored fields (Using jQuery selector)
  5859. beforeSubmit {Function} Do something before submit form
  5860. dataFilter {Function} Convert ajax results
  5861. valid {Function} Triggered when the form is valid
  5862. invalid {Function} Triggered when the form is invalid
  5863. validClass {String} 'n-valid' Add this class name to a valid field
  5864. invalidClass {String} 'n-invalid' Add this class name to a invalid field
  5865. bindClassTo {jqSelector} ':verifiable' Which element should the className binding to
  5866. display {Function} Callback function to get dynamic display
  5867. target {Function} Callback function to get dynamic target
  5868. msgShow {Function} Trigger this callback when show message
  5869. msgHide {Function} Trigger this callback when hide message
  5870. msgWrapper {String} 'span' Message wrapper tag name
  5871. msgMaker {Function} Callback function to make message HTML
  5872. msgArrow {String} Message arrow template
  5873. msgIcon {String} Message icon template
  5874. msgStyle {String} Custom message css style
  5875. msgClass {String} Additional added to the message class names
  5876. formClass {String} Additional added to the form class names
  5877. messages {Object} Custom messages for the current instance
  5878. rules {Object} Custom rules for the current instance
  5879. fields {Object} Field validation configuration
  5880. {String} key name|#id
  5881. {String|Object} value Rule string or an object which can pass more arguments
  5882. fields[key][rule] {String} Rule string
  5883. fields[key][display] {String|Function}
  5884. fields[key][tip] {String} Custom tip message
  5885. fields[key][ok] {String} Custom success message
  5886. fields[key][msg] {Object} Custom error message
  5887. fields[key][msgStyle] {String} Custom message style
  5888. fields[key][msgClass] {String} A className which added to message placeholder element
  5889. fields[key][msgWrapper] {String} Tag name of the message placeholder element
  5890. fields[key][msgMaker] {Function} A function to custom message HTML
  5891. fields[key][dataFilter] {Function} A function to convert ajax results
  5892. fields[key][valid] {Function} A function triggered when field is valid
  5893. fields[key][invalid] {Function} A function triggered when field is invalid
  5894. fields[key][must] {Boolean} If set true, we always check the field even has remote checking
  5895. fields[key][timely] {Boolean} Whether to enable timely validation
  5896. fields[key][target] {jqSelector} Define placement of a message
  5897. */
  5898. $.fn.validator = function(options) {
  5899. var that = this,
  5900. args = arguments;
  5901. if (that.is(INPUT_SELECTOR)) return that;
  5902. if (!that.is('form')) that = this.find('form');
  5903. if (!that.length) that = this;
  5904. that.each(function() {
  5905. var instance = $(this).data(NS);
  5906. if (instance) {
  5907. if ( isString(options) ) {
  5908. if ( options.charAt(0) === '_' ) return;
  5909. instance[options].apply(instance, [].slice.call(args, 1));
  5910. }
  5911. else if (options) {
  5912. instance._reset(true);
  5913. instance._init(this, options);
  5914. }
  5915. } else {
  5916. new Validator(this, options);
  5917. }
  5918. });
  5919. return this;
  5920. };
  5921. // Validate a field, or an area
  5922. $.fn.isValid = function(callback, hideMsg) {
  5923. var me = _getInstance(this[0]),
  5924. hasCallback = isFunction(callback),
  5925. ret, opt;
  5926. if (!me) return true;
  5927. if (!hasCallback && hideMsg === undefined) hideMsg = callback;
  5928. me.checkOnly = !!hideMsg;
  5929. opt = me.options;
  5930. ret = me._multiValidate(
  5931. this.is(INPUT_SELECTOR) ? this : this.find(INPUT_SELECTOR),
  5932. function(isValid){
  5933. if (!isValid && opt.focusInvalid && !me.checkOnly) {
  5934. // navigate to the error element
  5935. me.$el.find('[' + ARIA_INVALID + ']:first').focus();
  5936. }
  5937. if (hasCallback) {
  5938. if (callback.length) {
  5939. callback(isValid);
  5940. } else if (isValid) {
  5941. callback();
  5942. }
  5943. }
  5944. me.checkOnly = false;
  5945. }
  5946. );
  5947. // If you pass a callback, we maintain the jQuery object chain
  5948. return hasCallback ? this : ret;
  5949. };
  5950. $.extend($.expr.pseudos || $.expr[':'], {
  5951. // A faster selector than ":input:not(:submit,:button,:reset,:image,:disabled,[contenteditable])"
  5952. verifiable: function(elem) {
  5953. var name = elem.nodeName.toLowerCase();
  5954. return ( name === 'input' && !({submit: 1, button: 1, reset: 1, image: 1})[elem.type] ||
  5955. name === 'select' ||
  5956. name === 'textarea' ||
  5957. elem.contentEditable === 'true'
  5958. ) && !elem.disabled;
  5959. },
  5960. // any value, but not only whitespace
  5961. filled: function(elem) {
  5962. return !!trim($(elem).val());
  5963. }
  5964. });
  5965. /**
  5966. * Creates a new Validator
  5967. *
  5968. * @class
  5969. * @param {Element} element - form element
  5970. * @param {Object} options - options for validator
  5971. */
  5972. function Validator(element, options) {
  5973. var me = this;
  5974. if ( !(me instanceof Validator) ) {
  5975. return new Validator(element, options);
  5976. }
  5977. if (Validator.pending) {
  5978. $(window).on('validatorready', init);
  5979. } else {
  5980. init();
  5981. }
  5982. function init() {
  5983. me.$el = $(element);
  5984. if (me.$el.length) {
  5985. me._init(me.$el[0], options);
  5986. }
  5987. else if (isString(element)) {
  5988. preinitialized[element] = options;
  5989. }
  5990. }
  5991. }
  5992. Validator.prototype = {
  5993. _init: function(element, options) {
  5994. var me = this,
  5995. opt, themeOpt, dataOpt;
  5996. // Initialization options
  5997. if ( isFunction(options) ) {
  5998. options = {
  5999. valid: options
  6000. };
  6001. }
  6002. options = me._opt = options || {};
  6003. dataOpt = attr(element, 'data-'+ NS +'-option');
  6004. dataOpt = me._dataOpt = dataOpt && dataOpt.charAt(0) === '{' ? (new Function('return ' + dataOpt))() : {};
  6005. themeOpt = me._themeOpt = themes[ options.theme || dataOpt.theme || defaults.theme ];
  6006. opt = me.options = $.extend({}, defaults, fieldDefaults, themeOpt, me.options, options, dataOpt);
  6007. me.rules = new Rules(opt.rules, true);
  6008. me.messages = new Messages(opt.messages, true);
  6009. me.Field = _createFieldFactory(me);
  6010. me.elements = me.elements || {};
  6011. me.deferred = {};
  6012. me.errors = {};
  6013. me.fields = {};
  6014. // Initialization fields
  6015. me._initFields(opt.fields);
  6016. // Initialization events and make a cache
  6017. if ( !me.$el.data(NS) ) {
  6018. me.$el.data(NS, me).addClass(CLS_WRAPPER +' '+ opt.formClass)
  6019. .on('form-submit-validate', function(e, a, $form, opts, veto) {
  6020. me.vetoed = veto.veto = !me.isValid;
  6021. me.ajaxFormOptions = opts;
  6022. })
  6023. .on('submit'+ CLS_NS +' validate'+ CLS_NS, proxy(me, '_submit'))
  6024. .on('reset'+ CLS_NS, proxy(me, '_reset'))
  6025. .on('showmsg'+ CLS_NS, proxy(me, '_showmsg'))
  6026. .on('hidemsg'+ CLS_NS, proxy(me, '_hidemsg'))
  6027. .on('focusin'+ CLS_NS + ' click'+ CLS_NS, INPUT_SELECTOR, proxy(me, '_focusin'))
  6028. .on('focusout'+ CLS_NS +' validate'+ CLS_NS, INPUT_SELECTOR, proxy(me, '_focusout'))
  6029. .on('keyup'+ CLS_NS +' input'+ CLS_NS + ' compositionstart compositionend', INPUT_SELECTOR, proxy(me, '_focusout'))
  6030. .on('click'+ CLS_NS, ':radio,:checkbox', 'click', proxy(me, '_focusout'))
  6031. .on('change'+ CLS_NS, 'select,input[type="file"]', 'change', proxy(me, '_focusout'));
  6032. // cache the novalidate attribute value
  6033. me._NOVALIDATE = attr(element, NOVALIDATE);
  6034. // Initialization is complete, stop off default HTML5 form validation
  6035. // If use "jQuery.attr('novalidate')" in IE7 will complain: "SCRIPT3: Member not found."
  6036. attr(element, NOVALIDATE, NOVALIDATE);
  6037. }
  6038. // Display all messages in target container
  6039. if ( isString(opt.target) ) {
  6040. me.$el.find(opt.target).addClass('msg-container');
  6041. }
  6042. },
  6043. // Guess whether the form use ajax submit
  6044. _guessAjax: function(form) {
  6045. var me = this;
  6046. if ( !(me.isAjaxSubmit = !!me.options.valid) ) {
  6047. // if there is a "valid.form" event
  6048. var events = ($._data || $.data)(form, 'events');
  6049. me.isAjaxSubmit = issetEvent(events, 'valid', 'form') || issetEvent(events, 'submit', 'form-plugin');
  6050. }
  6051. function issetEvent(events, name, namespace) {
  6052. return !!(
  6053. events && events[name]
  6054. && $.map(events[name], function(e){
  6055. return ~e.namespace.indexOf(namespace) ? 1 : null;
  6056. }).length )
  6057. }
  6058. },
  6059. _initFields: function(fields) {
  6060. var me = this, k, arr, i,
  6061. clear = fields === null;
  6062. // Processing field information
  6063. if (clear) fields = me.fields;
  6064. if ( isObject(fields) ) {
  6065. for (k in fields) {
  6066. if (~k.indexOf(',')) {
  6067. arr = k.split(',');
  6068. i = arr.length;
  6069. while (i--) {
  6070. initField(trim(arr[i]), fields[k]);
  6071. }
  6072. } else {
  6073. initField(k, fields[k]);
  6074. }
  6075. }
  6076. }
  6077. // Parsing DOM rules
  6078. me.$el.find(INPUT_SELECTOR).each(function() {
  6079. me._parse(this);
  6080. });
  6081. function initField(k, v) {
  6082. // delete a field from settings
  6083. if ( v === null || clear ) {
  6084. var el = me.elements[k];
  6085. if (el) me._resetElement(el, true);
  6086. delete me.fields[k];
  6087. } else {
  6088. me.fields[k] = new me.Field(k, isString(v) ? {rule: v} : v, me.fields[k]);
  6089. }
  6090. }
  6091. },
  6092. // Parsing a field
  6093. _parse: function(el) {
  6094. var me = this,
  6095. field,
  6096. key = el.name,
  6097. display,
  6098. timely,
  6099. dataRule = attr(el, DATA_RULE);
  6100. dataRule && attr(el, DATA_RULE, null);
  6101. // If the field has passed the key as id mode, or it doesn't has a name
  6102. if ( el.id && (
  6103. ('#' + el.id in me.fields) ||
  6104. !key ||
  6105. // If dataRule and element are diffrent from old's, we use ID mode.
  6106. (dataRule !== null && (field = me.fields[key]) && dataRule !== field.rule && el.id !== field.key)
  6107. )
  6108. ) {
  6109. key = '#' + el.id;
  6110. }
  6111. // Generate id
  6112. if (!key) {
  6113. key = '#' + (el.id = 'N' + String(Math.random()).slice(-12));
  6114. }
  6115. field = me.getField(key, true);
  6116. // The priority of passing parameter by DOM is higher than by JS.
  6117. field.rule = dataRule || field.rule;
  6118. if (display = attr(el, DATA_DISPLAY)) {
  6119. field.display = display;
  6120. }
  6121. if (field.rule) {
  6122. if ( attr(el, DATA_MUST) !== null || /\b(?:match|checked)\b/.test(field.rule) ) {
  6123. field.must = true;
  6124. }
  6125. if ( /\brequired\b/.test(field.rule) ) {
  6126. field.required = true;
  6127. }
  6128. if (timely = attr(el, DATA_TIMELY)) {
  6129. field.timely = +timely;
  6130. } else if (field.timely > 3) {
  6131. attr(el, DATA_TIMELY, field.timely);
  6132. }
  6133. me._parseRule(field);
  6134. field.old = {};
  6135. }
  6136. if ( isString(field.target) ) {
  6137. attr(el, DATA_TARGET, field.target);
  6138. }
  6139. if ( isString(field.tip) ) {
  6140. attr(el, DATA_TIP, field.tip);
  6141. }
  6142. return me.fields[key] = field;
  6143. },
  6144. // Parsing field rules
  6145. _parseRule: function(field) {
  6146. var arr = rDisplay.exec(field.rule);
  6147. if (!arr) return;
  6148. // current rule index
  6149. field._i = 0;
  6150. if (arr[1]) {
  6151. field.display = arr[1];
  6152. }
  6153. if (arr[2]) {
  6154. field._rules = [];
  6155. arr[2].replace(rRules, function(){
  6156. var args = arguments;
  6157. args[4] = args[4] || args[5];
  6158. field._rules.push({
  6159. and: args[1] === '&',
  6160. not: args[2] === '!',
  6161. or: args[6] === '|',
  6162. method: args[3],
  6163. params: args[4] ? $.map( args[4].split(', '), trim ) : undefined
  6164. });
  6165. });
  6166. }
  6167. },
  6168. // Verify a zone
  6169. _multiValidate: function($inputs, doneCallback){
  6170. var me = this,
  6171. opt = me.options;
  6172. me.hasError = false;
  6173. if (opt.ignore) {
  6174. $inputs = $inputs.not(opt.ignore);
  6175. }
  6176. $inputs.each(function() {
  6177. me._validate(this);
  6178. if (me.hasError && opt.stopOnError) {
  6179. // stop the validation
  6180. return false;
  6181. }
  6182. });
  6183. // Need to wait for all fields validation complete, especially asynchronous validation
  6184. if (doneCallback) {
  6185. me.validating = true;
  6186. $.when.apply(
  6187. null,
  6188. $.map(me.deferred, function(v){return v;})
  6189. ).done(function(){
  6190. doneCallback.call(me, !me.hasError);
  6191. me.validating = false;
  6192. });
  6193. }
  6194. // If the form does not contain asynchronous validation, the return value is correct.
  6195. // Otherwise, you should detect form validation result through "doneCallback".
  6196. return !$.isEmptyObject(me.deferred) ? undefined : !me.hasError;
  6197. },
  6198. // Validate the whole form
  6199. _submit: function(e) {
  6200. var me = this,
  6201. opt = me.options,
  6202. form = e.target,
  6203. canSubmit = e.type === 'submit' && form.tagName === 'FORM' && !e.isDefaultPrevented();
  6204. e.preventDefault();
  6205. if (
  6206. novalidateonce && ~(novalidateonce = false) ||
  6207. // Prevent duplicate submission
  6208. me.submiting ||
  6209. // Receive the "validate" event only from the form.
  6210. e.type === 'validate' && me.$el[0] !== form ||
  6211. // trigger the beforeSubmit callback.
  6212. isFunction(opt.beforeSubmit) && opt.beforeSubmit.call(me, form) === false
  6213. ) {
  6214. return;
  6215. }
  6216. if (me.isAjaxSubmit === undefined) {
  6217. me._guessAjax(form);
  6218. }
  6219. me._debug('log', '\n<<< event: ' + e.type);
  6220. me._reset();
  6221. me.submiting = true;
  6222. me._multiValidate(
  6223. me.$el.find(INPUT_SELECTOR),
  6224. function(isValid){
  6225. var ret = (isValid || opt.debug === 2) ? 'valid' : 'invalid',
  6226. errors;
  6227. if (!isValid) {
  6228. if (opt.focusInvalid) {
  6229. // navigate to the error element
  6230. me.$el.find('[' + ARIA_INVALID + ']:first').focus();
  6231. }
  6232. errors = $.map(me.errors, function(err){return err;});
  6233. }
  6234. // releasing submit
  6235. me.submiting = false;
  6236. me.isValid = isValid;
  6237. // trigger callback and event
  6238. isFunction(opt[ret]) && opt[ret].call(me, form, errors);
  6239. me.$el.trigger(ret + CLS_NS_FORM, [form, errors]);
  6240. me._debug('log', '>>> ' + ret);
  6241. if (!isValid) return;
  6242. // For jquery.form plugin
  6243. if (me.vetoed) {
  6244. $(form).ajaxSubmit(me.ajaxFormOptions);
  6245. }
  6246. else if (canSubmit && !me.isAjaxSubmit) {
  6247. document.createElement('form').submit.call(form);
  6248. }
  6249. }
  6250. );
  6251. },
  6252. _reset: function(e) {
  6253. var me = this;
  6254. me.errors = {};
  6255. if (e) {
  6256. me.reseting = true;
  6257. me.$el.find(INPUT_SELECTOR).each( function(){
  6258. me._resetElement(this);
  6259. });
  6260. delete me.reseting;
  6261. }
  6262. },
  6263. _resetElement: function(el, all) {
  6264. this._setClass(el, null);
  6265. this.hideMsg(el);
  6266. },
  6267. // Handle events: "focusin/click"
  6268. _focusin: function(e) {
  6269. var me = this,
  6270. opt = me.options,
  6271. el = e.target,
  6272. timely,
  6273. msg;
  6274. if ( me.validating || ( e.type==='click' && document.activeElement === el ) ) {
  6275. return;
  6276. }
  6277. if (opt.focusCleanup) {
  6278. if ( attr(el, ARIA_INVALID) === 'true' ) {
  6279. me._setClass(el, null);
  6280. me.hideMsg(el);
  6281. }
  6282. }
  6283. msg = attr(el, DATA_TIP);
  6284. if (msg) {
  6285. me.showMsg(el, {
  6286. type: 'tip',
  6287. msg: msg
  6288. });
  6289. } else {
  6290. if (attr(el, DATA_RULE)) {
  6291. me._parse(el);
  6292. }
  6293. if (timely = attr(el, DATA_TIMELY)) {
  6294. if ( timely === 8 || timely === 9 ) {
  6295. me._focusout(e);
  6296. }
  6297. }
  6298. }
  6299. },
  6300. // Handle events: "focusout/validate/keyup/click/change/input/compositionstart/compositionend"
  6301. _focusout: function(e) {
  6302. var me = this,
  6303. opt = me.options,
  6304. el = e.target,
  6305. etype = e.type,
  6306. etype0,
  6307. focusin = etype === 'focusin',
  6308. special = etype === 'validate',
  6309. elem,
  6310. field,
  6311. old,
  6312. value,
  6313. timestamp,
  6314. key, specialKey,
  6315. timely,
  6316. timer = 0;
  6317. if (etype === 'compositionstart') {
  6318. me.pauseValidate = true;
  6319. }
  6320. if (etype === 'compositionend') {
  6321. me.pauseValidate = false;
  6322. }
  6323. if (me.pauseValidate) {
  6324. return;
  6325. }
  6326. // For checkbox and radio
  6327. elem = el.name && _checkable(el) ? me.$el.find('input[name="'+ el.name +'"]').get(0) : el;
  6328. // Get field
  6329. if (!(field = me.getField(elem)) || !field.rule) {
  6330. return;
  6331. }
  6332. // Cache event type
  6333. etype0 = field._e;
  6334. field._e = etype;
  6335. timely = field.timely;
  6336. if (!special) {
  6337. if (!timely || (_checkable(el) && etype !== 'click')) {
  6338. return;
  6339. }
  6340. value = field.getValue();
  6341. // not validate field unless fill a value
  6342. if ( field.ignoreBlank && !value && !focusin ) {
  6343. me.hideMsg(el);
  6344. return;
  6345. }
  6346. if ( etype === 'focusout' ) {
  6347. if (etype0 === 'change') {
  6348. return;
  6349. }
  6350. if ( timely === 2 || timely === 8 ) {
  6351. old = field.old;
  6352. if (value && old) {
  6353. if (field.isValid && !old.showOk) {
  6354. me.hideMsg(el);
  6355. } else {
  6356. me._makeMsg(el, field, old);
  6357. }
  6358. } else {
  6359. return;
  6360. }
  6361. }
  6362. }
  6363. else {
  6364. if ( timely < 2 && !e.data ) {
  6365. return;
  6366. }
  6367. // mark timestamp to reduce the frequency of the received event
  6368. timestamp = +new Date();
  6369. if ( timestamp - (el._ts || 0) < 100 ) {
  6370. return;
  6371. }
  6372. el._ts = timestamp;
  6373. // handle keyup
  6374. if ( etype === 'keyup' ) {
  6375. if (etype0 === 'input') {
  6376. return;
  6377. }
  6378. key = e.keyCode;
  6379. specialKey = {
  6380. 8: 1, // Backspace
  6381. 9: 1, // Tab
  6382. 16: 1, // Shift
  6383. 32: 1, // Space
  6384. 46: 1 // Delete
  6385. };
  6386. // only gets focus, no validation
  6387. if ( key === 9 && !value ) {
  6388. return;
  6389. }
  6390. // do not validate, if triggered by these keys
  6391. if ( key < 48 && !specialKey[key] ) {
  6392. return;
  6393. }
  6394. }
  6395. if ( !focusin ) {
  6396. // keyboard events, reducing the frequency of validation
  6397. timer = timely <100 ? (etype === 'click' || el.tagName === 'SELECT') ? 0 : 400 : timely;
  6398. }
  6399. }
  6400. }
  6401. // if the current field is ignored
  6402. if ( opt.ignore && $(el).is(opt.ignore) ) {
  6403. return;
  6404. }
  6405. clearTimeout(field._t);
  6406. if (timer) {
  6407. field._t = setTimeout(function() {
  6408. me._validate(el, field);
  6409. }, timer);
  6410. } else {
  6411. if (special) field.old = {};
  6412. me._validate(el, field);
  6413. }
  6414. },
  6415. _setClass: function(el, isValid) {
  6416. var $el = $(el), opt = this.options;
  6417. if (opt.bindClassTo) {
  6418. $el = $el.closest(opt.bindClassTo);
  6419. }
  6420. $el.removeClass( opt.invalidClass + ' ' + opt.validClass );
  6421. if (isValid !== null) {
  6422. $el.addClass( isValid ? opt.validClass : opt.invalidClass );
  6423. }
  6424. },
  6425. _showmsg: function(e, type, msg) {
  6426. var me = this,
  6427. el = e.target;
  6428. if ( me.$el.is(el) ) {
  6429. if (isObject(type)) {
  6430. me.showMsg(type)
  6431. }
  6432. else if ( type === 'tip' ) {
  6433. me.$el.find(INPUT_SELECTOR +'['+ DATA_TIP +']', el).each(function(){
  6434. me.showMsg(this, {type: type, msg: msg});
  6435. });
  6436. }
  6437. }
  6438. else {
  6439. me.showMsg(el, {type: type, msg: msg});
  6440. }
  6441. },
  6442. _hidemsg: function(e) {
  6443. var $el = $(e.target);
  6444. if ( $el.is(INPUT_SELECTOR) ) {
  6445. this.hideMsg($el);
  6446. }
  6447. },
  6448. // Validated a field
  6449. _validatedField: function(el, field, ret) {
  6450. var me = this,
  6451. opt = me.options,
  6452. isValid = field.isValid = ret.isValid = !!ret.isValid,
  6453. callback = isValid ? 'valid' : 'invalid';
  6454. ret.key = field.key;
  6455. ret.ruleName = field._r;
  6456. ret.id = el.id;
  6457. ret.value = field.value;
  6458. me.elements[field.key] = ret.element = el;
  6459. me.isValid = me.$el[0].isValid = isValid ? me.isFormValid() : isValid;
  6460. if (isValid) {
  6461. ret.type = 'ok';
  6462. } else {
  6463. if (me.submiting) {
  6464. me.errors[field.key] = ret.msg;
  6465. }
  6466. me.hasError = true;
  6467. }
  6468. // cache result
  6469. field.old = ret;
  6470. // trigger callback
  6471. isFunction(field[callback]) && field[callback].call(me, el, ret);
  6472. isFunction(opt.validation) && opt.validation.call(me, el, ret);
  6473. // trigger event
  6474. $(el).attr( ARIA_INVALID, isValid ? null : true )
  6475. .trigger( callback + CLS_NS_FIELD, [ret, me] );
  6476. me.$el.triggerHandler('validation', [ret, me]);
  6477. if (me.checkOnly) return;
  6478. // set className
  6479. me._setClass(el, ret.skip || ret.type === 'tip' ? null : isValid);
  6480. me._makeMsg.apply(me, arguments);
  6481. },
  6482. _makeMsg: function(el, field, ret) {
  6483. // show or hide the message
  6484. if (field.msgMaker) {
  6485. ret = $.extend({}, ret);
  6486. if (field._e === 'focusin') {
  6487. ret.type = 'tip';
  6488. }
  6489. this[ ret.showOk || ret.msg || ret.type === 'tip' ? 'showMsg' : 'hideMsg' ](el, ret, field);
  6490. }
  6491. },
  6492. // Validated a rule
  6493. _validatedRule: function(el, field, ret, msgOpt) {
  6494. field = field || me.getField(el);
  6495. msgOpt = msgOpt || {};
  6496. var me = this,
  6497. msg,
  6498. rule,
  6499. method = field._r,
  6500. timely = field.timely,
  6501. special = timely === 9 || timely === 8,
  6502. transfer,
  6503. temp,
  6504. isValid = false;
  6505. // use null to break validation from a field
  6506. if (ret === null) {
  6507. me._validatedField(el, field, {isValid: true, skip: true});
  6508. field._i = 0;
  6509. return;
  6510. }
  6511. else if (ret === undefined) {
  6512. transfer = true;
  6513. }
  6514. else if (ret === true || ret === '') {
  6515. isValid = true;
  6516. }
  6517. else if (isString(ret)) {
  6518. msg = ret;
  6519. }
  6520. else if (isObject(ret)) {
  6521. if (ret.error) {
  6522. msg = ret.error;
  6523. } else {
  6524. msg = ret.ok;
  6525. isValid = true;
  6526. }
  6527. }
  6528. else {
  6529. isValid = !!ret
  6530. }
  6531. rule = field._rules[field._i];
  6532. if (rule.not) {
  6533. msg = undefined;
  6534. isValid = method === 'required' || !isValid;
  6535. }
  6536. if (rule.or) {
  6537. if (isValid) {
  6538. while ( field._i < field._rules.length && field._rules[field._i].or ) {
  6539. field._i++;
  6540. }
  6541. } else {
  6542. transfer = true;
  6543. }
  6544. }
  6545. else if (rule.and) {
  6546. if (!field.isValid) transfer = true;
  6547. }
  6548. if (transfer) {
  6549. isValid = true;
  6550. }
  6551. // message analysis, and throw rule level event
  6552. else {
  6553. if (isValid) {
  6554. if (field.showOk !== false) {
  6555. temp = attr(el, DATA_OK);
  6556. msg = temp === null ? isString(field.ok) ? field.ok : msg : temp;
  6557. if (!isString(msg) && isString(field.showOk)) {
  6558. msg = field.showOk;
  6559. }
  6560. if (isString(msg)) {
  6561. msgOpt.showOk = isValid;
  6562. }
  6563. }
  6564. }
  6565. if (!isValid || special) {
  6566. /* rule message priority:
  6567. 1. custom DOM message
  6568. 2. custom field message;
  6569. 3. global defined message;
  6570. 4. rule returned message;
  6571. 5. default message;
  6572. */
  6573. msg = (_getDataMsg(el, field, msg || rule.msg || me.messages[method]) || me.messages.fallback).replace(/\{0\|?([^\}]*)\}/, function(m, defaultDisplay){
  6574. return me._getDisplay(el, field.display) || defaultDisplay || me.messages[0];
  6575. });
  6576. }
  6577. if (!isValid) field.isValid = isValid;
  6578. msgOpt.msg = msg;
  6579. $(el).trigger( (isValid ? 'valid' : 'invalid') + CLS_NS_RULE, [method, msg]);
  6580. }
  6581. if (special && (!transfer || rule.and)) {
  6582. if (!isValid && !field._m) field._m = msg;
  6583. field._v = field._v || [];
  6584. field._v.push({
  6585. type: isValid ? !transfer ? 'ok' : 'tip' : 'error',
  6586. msg: msg || rule.msg
  6587. });
  6588. }
  6589. me._debug('log', ' ' + field._i + ': ' + method + ' => ' + (isValid || msg));
  6590. // the current rule has passed, continue to validate
  6591. if ( (isValid || special) && field._i < field._rules.length - 1) {
  6592. field._i++;
  6593. me._checkRule(el, field);
  6594. }
  6595. // field was invalid, or all fields was valid
  6596. else {
  6597. field._i = 0;
  6598. if (special) {
  6599. msgOpt.isValid = field.isValid;
  6600. msgOpt.result = field._v;
  6601. msgOpt.msg = field._m || '';
  6602. if (!field.value && (field._e === 'focusin')) {
  6603. msgOpt.type = 'tip';
  6604. }
  6605. } else {
  6606. msgOpt.isValid = isValid;
  6607. }
  6608. me._validatedField(el, field, msgOpt);
  6609. delete field._m;
  6610. delete field._v;
  6611. }
  6612. },
  6613. // Verify a rule form a field
  6614. _checkRule: function(el, field) {
  6615. var me = this,
  6616. ret,
  6617. fn,
  6618. old,
  6619. key = field.key,
  6620. rule = field._rules[field._i],
  6621. method = rule.method,
  6622. params = rule.params;
  6623. // request has been sent, wait it
  6624. if (me.submiting && me.deferred[key]) {
  6625. return;
  6626. }
  6627. old = field.old;
  6628. field._r = method;
  6629. if (old && !field.must && !rule.must && rule.result !== undefined &&
  6630. old.ruleName === method && old.id === el.id &&
  6631. field.value && old.value === field.value )
  6632. {
  6633. // get result from cache
  6634. ret = rule.result;
  6635. }
  6636. else {
  6637. // get result from current rule
  6638. fn = _getDataRule(el, method) || me.rules[method] || noop;
  6639. ret = fn.call(field, el, params, field);
  6640. if (fn.msg) rule.msg = fn.msg;
  6641. }
  6642. // asynchronous validation
  6643. if (isObject(ret) && isFunction(ret.then)) {
  6644. me.deferred[key] = ret;
  6645. // whether the field valid is unknown
  6646. field.isValid = undefined;
  6647. // show loading message
  6648. !me.checkOnly && me.showMsg(el, {
  6649. type: 'loading',
  6650. msg: me.messages.loading
  6651. }, field);
  6652. // waiting to parse the response data
  6653. ret.then(
  6654. function(d, textStatus, jqXHR) {
  6655. var data = trim(jqXHR.responseText),
  6656. result,
  6657. dataFilter = field.dataFilter;
  6658. // detect if data is json or jsonp format
  6659. if (/jsonp?/.test(this.dataType)) {
  6660. data = d;
  6661. } else if (data.charAt(0) === '{') {
  6662. data = $.parseJSON(data);
  6663. }
  6664. // filter data
  6665. result = dataFilter.call(this, data, field);
  6666. if (result === undefined) result = dataFilter.call(this, data.data, field);
  6667. rule.data = this.data;
  6668. rule.result = field.old ? result : undefined;
  6669. me._validatedRule(el, field, result);
  6670. },
  6671. function(jqXHR, textStatus){
  6672. me._validatedRule(el, field, me.messages[textStatus] || textStatus);
  6673. }
  6674. ).always(function(){
  6675. delete me.deferred[key];
  6676. });
  6677. }
  6678. // other result
  6679. else {
  6680. me._validatedRule(el, field, ret);
  6681. }
  6682. },
  6683. // Processing the validation
  6684. _validate: function(el, field) {
  6685. var me = this;
  6686. // doesn't validate the element that has "disabled" or "novalidate" attribute
  6687. if ( el.disabled || attr(el, NOVALIDATE) !== null ) {
  6688. return;
  6689. }
  6690. field = field || me.getField(el);
  6691. if (!field) return;
  6692. if (!field._rules) me._parse(el);
  6693. if (!field._rules) return;
  6694. me._debug('info', field.key);
  6695. field.isValid = true;
  6696. field.element = el;
  6697. // Cache the value
  6698. field.value = field.getValue();
  6699. // if the field is not required, and that has a blank value
  6700. if (!field.required && !field.must && !field.value) {
  6701. if (!_checkable(el)) {
  6702. me._validatedField(el, field, {isValid: true});
  6703. return true;
  6704. }
  6705. }
  6706. me._checkRule(el, field);
  6707. return field.isValid;
  6708. },
  6709. _debug: function(type, messages) {
  6710. if (window.console && this.options.debug) {
  6711. console[type](messages);
  6712. }
  6713. },
  6714. /**
  6715. * Detecting whether the value of an element that matches a rule
  6716. *
  6717. * @method test
  6718. * @param {Element} el - input element
  6719. * @param {String} rule - rule name
  6720. */
  6721. test: function(el, rule) {
  6722. var me = this,
  6723. ret,
  6724. parts = rRule.exec(rule),
  6725. field,
  6726. method,
  6727. params;
  6728. if (parts) {
  6729. method = parts[1];
  6730. if (method in me.rules) {
  6731. params = parts[2] || parts[3];
  6732. params = params ? params.split(', ') : undefined;
  6733. field = me.getField(el, true);
  6734. field._r = method;
  6735. field.value = field.getValue();
  6736. ret = me.rules[method].call(field, el, params);
  6737. }
  6738. }
  6739. return ret === true || ret === undefined || ret === null;
  6740. },
  6741. _getDisplay: function(el, str) {
  6742. return !isString(str) ? isFunction(str) ? str.call(this, el) : '' : str;
  6743. },
  6744. _getMsgOpt: function(obj, field) {
  6745. var opt = field ? field : this.options;
  6746. return $.extend({
  6747. type: 'error',
  6748. pos: _getPos(opt.msgClass),
  6749. target: opt.target,
  6750. wrapper: opt.msgWrapper,
  6751. style: opt.msgStyle,
  6752. cls: opt.msgClass,
  6753. arrow: opt.msgArrow,
  6754. icon: opt.msgIcon
  6755. }, isString(obj) ? {msg: obj} : obj);
  6756. },
  6757. _getMsgDOM: function(el, msgOpt) {
  6758. var $el = $(el), $msgbox, datafor, tgt, container;
  6759. if ( $el.is(INPUT_SELECTOR) ) {
  6760. tgt = msgOpt.target || attr(el, DATA_TARGET);
  6761. if (tgt) {
  6762. tgt = !isFunction(tgt) ? tgt.charAt(0) === '#' ? $(tgt) : this.$el.find(tgt) : tgt.call(this, el);
  6763. if (tgt.length) {
  6764. if ( tgt.is(INPUT_SELECTOR) ) {
  6765. $el = tgt
  6766. el = tgt.get(0);
  6767. } else if ( tgt.hasClass(CLS_MSG_BOX) ) {
  6768. $msgbox = tgt;
  6769. } else {
  6770. container = tgt;
  6771. }
  6772. }
  6773. }
  6774. if (!$msgbox) {
  6775. datafor = (!_checkable(el) || !el.name) && el.id ? el.id : el.name;
  6776. $msgbox = (container || this.$el).find(msgOpt.wrapper + '.' + CLS_MSG_BOX + '[for="' + datafor + '"]');
  6777. }
  6778. } else {
  6779. $msgbox = $el;
  6780. }
  6781. // Create new message box
  6782. if (!msgOpt.hide && !$msgbox.length) {
  6783. $msgbox = $('<'+ msgOpt.wrapper + '>').attr({
  6784. 'class': CLS_MSG_BOX + (msgOpt.cls ? ' ' + msgOpt.cls : ''),
  6785. 'style': msgOpt.style || undefined,
  6786. 'for': datafor
  6787. });
  6788. if (container) {
  6789. $msgbox.appendTo(container);
  6790. } else {
  6791. if ( _checkable(el) ) {
  6792. var $parent = $el.parent();
  6793. $msgbox.appendTo( $parent.is('label') ? $parent.parent() : $parent );
  6794. } else {
  6795. $msgbox[!msgOpt.pos || msgOpt.pos === 'right' ? 'insertAfter' : 'insertBefore']($el);
  6796. }
  6797. }
  6798. }
  6799. return $msgbox;
  6800. },
  6801. /**
  6802. * Show validation message
  6803. *
  6804. * @method showMsg
  6805. * @param {Element} el - input element
  6806. * @param {Object} msgOpt
  6807. */
  6808. showMsg: function(el, msgOpt, /*INTERNAL*/ field) {
  6809. if (!el) return;
  6810. var me = this,
  6811. opt = me.options,
  6812. msgShow,
  6813. msgMaker,
  6814. temp,
  6815. $msgbox;
  6816. if (isObject(el) && !el.jquery && !msgOpt) {
  6817. $.each(el, function(key, msg) {
  6818. var el = me.elements[key] || me.$el.find(_key2selector(key))[0];
  6819. me.showMsg(el, msg);
  6820. });
  6821. return;
  6822. }
  6823. if ($(el).is(INPUT_SELECTOR)) {
  6824. field = field || me.getField(el);
  6825. }
  6826. if (!(msgMaker = (field || opt).msgMaker)) {
  6827. return;
  6828. }
  6829. msgOpt = me._getMsgOpt(msgOpt, field);
  6830. el = (el.name && _checkable(el) ? me.$el.find('input[name="'+ el.name +'"]') : $(el)).get(0);
  6831. // ok or tip
  6832. if (!msgOpt.msg && msgOpt.type !== 'error') {
  6833. temp = attr(el, 'data-' + msgOpt.type);
  6834. if (temp !== null) msgOpt.msg = temp;
  6835. }
  6836. if ( !isString(msgOpt.msg) ) {
  6837. return;
  6838. }
  6839. $msgbox = me._getMsgDOM(el, msgOpt);
  6840. !rPos.test($msgbox[0].className) && $msgbox.addClass(msgOpt.cls);
  6841. if ( isIE === 6 && msgOpt.pos === 'bottom' ) {
  6842. $msgbox[0].style.marginTop = $(el).outerHeight() + 'px';
  6843. }
  6844. $msgbox.html( msgMaker.call(me, msgOpt) )[0].style.display = '';
  6845. if (isFunction(msgShow = field && field.msgShow || opt.msgShow)) {
  6846. msgShow.call(me, $msgbox, msgOpt.type);
  6847. }
  6848. },
  6849. /**
  6850. * Hide validation message
  6851. *
  6852. * @method hideMsg
  6853. * @param {Element} el - input element
  6854. * @param {Object} msgOpt optional
  6855. */
  6856. hideMsg: function(el, msgOpt, /*INTERNAL*/ field) {
  6857. var me = this,
  6858. opt = me.options,
  6859. msgHide,
  6860. $msgbox;
  6861. el = $(el).get(0);
  6862. if ($(el).is(INPUT_SELECTOR)) {
  6863. field = field || me.getField(el);
  6864. if (field) {
  6865. if (field.isValid || me.reseting) attr(el, ARIA_INVALID, null);
  6866. }
  6867. }
  6868. msgOpt = me._getMsgOpt(msgOpt, field);
  6869. msgOpt.hide = true;
  6870. $msgbox = me._getMsgDOM(el, msgOpt);
  6871. if (!$msgbox.length) return;
  6872. if ( isFunction(msgHide = field && field.msgHide || opt.msgHide) ) {
  6873. msgHide.call(me, $msgbox, msgOpt.type);
  6874. } else {
  6875. $msgbox[0].style.display = 'none';
  6876. $msgbox[0].innerHTML = '';
  6877. }
  6878. },
  6879. /**
  6880. * Get field information
  6881. *
  6882. * @method getField
  6883. * @param {Element} - input element
  6884. * @return {Object} field
  6885. */
  6886. getField: function(el, must) {
  6887. var me = this,
  6888. key,
  6889. field;
  6890. if (isString(el)) {
  6891. key = el;
  6892. el = undefined;
  6893. } else {
  6894. if (attr(el, DATA_RULE)) {
  6895. return me._parse(el);
  6896. }
  6897. if (el.id && '#' + el.id in me.fields || !el.name) {
  6898. key = '#' + el.id;
  6899. } else {
  6900. key = el.name;
  6901. }
  6902. }
  6903. if ( (field = me.fields[key]) || must && (field = new me.Field(key)) ) {
  6904. field.element = el;
  6905. }
  6906. return field;
  6907. },
  6908. /**
  6909. * Config a field
  6910. *
  6911. * @method: setField
  6912. * @param {String} key
  6913. * @param {Object} obj
  6914. */
  6915. setField: function(key, obj) {
  6916. var fields = {};
  6917. if (!key) return;
  6918. // update this field
  6919. if (isString(key)) {
  6920. fields[key] = obj;
  6921. }
  6922. // update fields
  6923. else {
  6924. fields = key;
  6925. }
  6926. this._initFields(fields);
  6927. },
  6928. /**
  6929. * Detecting whether the form is valid
  6930. *
  6931. * @method isFormValid
  6932. * @return {Boolean}
  6933. */
  6934. isFormValid: function() {
  6935. var fields = this.fields, k, field;
  6936. for (k in fields) {
  6937. field = fields[k];
  6938. if (!field._rules || !field.required && !field.must && !field.value) continue;
  6939. if (!field.isValid) return false;
  6940. }
  6941. return true;
  6942. },
  6943. /**
  6944. * Prevent submission form
  6945. *
  6946. * @method holdSubmit
  6947. * @param {Boolean} hold - If set to false, will release the hold
  6948. */
  6949. holdSubmit: function(hold) {
  6950. this.submiting = hold === undefined || hold;
  6951. },
  6952. /**
  6953. * Clean validation messages
  6954. *
  6955. * @method cleanUp
  6956. */
  6957. cleanUp: function() {
  6958. this._reset(1);
  6959. },
  6960. /**
  6961. * Destroy the validation
  6962. *
  6963. * @method destroy
  6964. */
  6965. destroy: function() {
  6966. this._reset(1);
  6967. this.$el.off(CLS_NS).removeData(NS);
  6968. attr(this.$el[0], NOVALIDATE, this._NOVALIDATE);
  6969. }
  6970. };
  6971. /**
  6972. * Create Field Factory
  6973. *
  6974. * @class
  6975. * @param {Object} context
  6976. * @return {Function} Factory
  6977. */
  6978. function _createFieldFactory(context) {
  6979. function FieldFactory() {
  6980. var options = this.options;
  6981. for (var i in options) {
  6982. if (i in fieldDefaults) this[i] = options[i];
  6983. }
  6984. $.extend(this, {
  6985. _valHook: function() {
  6986. return this.element.contentEditable === 'true' ? 'text' : 'val';
  6987. },
  6988. getValue: function() {
  6989. var elem = this.element;
  6990. if (elem.type === 'number' && elem.validity && elem.validity.badInput) {
  6991. return 'NaN';
  6992. }
  6993. return $(elem)[this._valHook()]();
  6994. },
  6995. setValue: function(value) {
  6996. $(this.element)[this._valHook()](this.value = value);
  6997. },
  6998. // Get a range of validation messages
  6999. getRangeMsg: function(value, params, suffix) {
  7000. if (!params) return;
  7001. var me = this,
  7002. msg = me.messages[me._r] || '',
  7003. result,
  7004. p = params[0].split('~'),
  7005. e = params[1] === 'false',
  7006. a = p[0],
  7007. b = p[1],
  7008. c = 'rg',
  7009. args = [''],
  7010. isNumber = trim(value) && +value === +value;
  7011. function compare(large, small) {
  7012. return !e ? large >= small : large > small;
  7013. }
  7014. if (p.length === 2) {
  7015. if (a && b) {
  7016. if (isNumber && compare(value, +a) && compare(+b, value)) {
  7017. result = true;
  7018. }
  7019. args = args.concat(p);
  7020. c = e ? 'gtlt' : 'rg';
  7021. }
  7022. else if (a && !b) {
  7023. if (isNumber && compare(value, +a)) {
  7024. result = true;
  7025. }
  7026. args.push(a);
  7027. c = e ? 'gt' : 'gte';
  7028. }
  7029. else if (!a && b) {
  7030. if (isNumber && compare(+b, value)) {
  7031. result = true;
  7032. }
  7033. args.push(b);
  7034. c = e ? 'lt' : 'lte';
  7035. }
  7036. }
  7037. else {
  7038. if (value === +a) {
  7039. result = true;
  7040. }
  7041. args.push(a);
  7042. c = 'eq';
  7043. }
  7044. if (msg) {
  7045. if (suffix && msg[c + suffix]) {
  7046. c += suffix;
  7047. }
  7048. args[0] = msg[c];
  7049. }
  7050. return result || me._rules && ( me._rules[me._i].msg = me.renderMsg.apply(null, args) );
  7051. },
  7052. // Render message template
  7053. renderMsg: function() {
  7054. var args = arguments,
  7055. tpl = args[0],
  7056. i = args.length;
  7057. if (!tpl) return;
  7058. while (--i) {
  7059. tpl = tpl.replace('{' + i + '}', args[i]);
  7060. }
  7061. return tpl;
  7062. }
  7063. });
  7064. }
  7065. function Field(key, obj, oldField) {
  7066. this.key = key;
  7067. this.validator = context;
  7068. $.extend(this, oldField, obj);
  7069. }
  7070. FieldFactory.prototype = context;
  7071. Field.prototype = new FieldFactory();
  7072. return Field;
  7073. }
  7074. /**
  7075. * Create Rules
  7076. *
  7077. * @class
  7078. * @param {Object} obj rules
  7079. * @param {Object} context context
  7080. */
  7081. function Rules(obj, context) {
  7082. if (!isObject(obj)) return;
  7083. var k, that = context ? context === true ? this : context : Rules.prototype;
  7084. for (k in obj) {
  7085. if (_checkRuleName(k)) {
  7086. that[k] = _getRule(obj[k]);
  7087. }
  7088. }
  7089. }
  7090. /**
  7091. * Create Messages
  7092. *
  7093. * @class
  7094. * @param {Object} obj rules
  7095. * @param {Object} context context
  7096. */
  7097. function Messages(obj, context) {
  7098. if (!isObject(obj)) return;
  7099. var k, that = context ? context === true ? this : context : Messages.prototype;
  7100. for (k in obj) {
  7101. that[k] = obj[k];
  7102. }
  7103. }
  7104. // Rule converted factory
  7105. function _getRule(fn) {
  7106. switch ($.type(fn)) {
  7107. case 'function':
  7108. return fn;
  7109. case 'array':
  7110. var f = function() {
  7111. return fn[0].test(this.value) || fn[1] || false;
  7112. };
  7113. f.msg = fn[1];
  7114. return f;
  7115. case 'regexp':
  7116. return function() {
  7117. return fn.test(this.value);
  7118. };
  7119. }
  7120. }
  7121. // Get instance by an element
  7122. function _getInstance(el) {
  7123. var wrap, k, options;
  7124. if (!el || !el.tagName) return;
  7125. switch (el.tagName) {
  7126. case 'INPUT':
  7127. case 'SELECT':
  7128. case 'TEXTAREA':
  7129. case 'BUTTON':
  7130. case 'FIELDSET':
  7131. wrap = el.form || $(el).closest('.' + CLS_WRAPPER);
  7132. break;
  7133. case 'FORM':
  7134. wrap = el;
  7135. break;
  7136. default:
  7137. wrap = $(el).closest('.' + CLS_WRAPPER);
  7138. }
  7139. for (k in preinitialized) {
  7140. if ($(wrap).is(k)) {
  7141. options = preinitialized[k];
  7142. break;
  7143. }
  7144. }
  7145. return $(wrap).data(NS) || $(wrap)[NS](options).data(NS);
  7146. }
  7147. // Get custom rules on the node
  7148. function _getDataRule(el, method) {
  7149. var fn = trim(attr(el, DATA_RULE + '-' + method));
  7150. if ( fn && (fn = new Function('return ' + fn)()) ) {
  7151. return _getRule(fn);
  7152. }
  7153. }
  7154. // Get custom messages on the node
  7155. function _getDataMsg(el, field, m) {
  7156. var msg = field.msg,
  7157. item = field._r;
  7158. if ( isObject(msg) ) msg = msg[item];
  7159. if ( !isString(msg) ) {
  7160. msg = attr(el, DATA_MSG + '-' + item) || attr(el, DATA_MSG) || ( m ? isString(m) ? m : m[item] : '');
  7161. }
  7162. return msg;
  7163. }
  7164. // Get message position
  7165. function _getPos(str) {
  7166. var pos;
  7167. if (str) pos = rPos.exec(str);
  7168. return pos && pos[0];
  7169. }
  7170. // Check whether the element is checkbox or radio
  7171. function _checkable(el) {
  7172. return el.tagName === 'INPUT' && el.type === 'checkbox' || el.type === 'radio';
  7173. }
  7174. // Parse date string to timestamp
  7175. function _parseDate(str) {
  7176. return Date.parse(str.replace(/\.|\-/g, '/'));
  7177. }
  7178. // Rule name only allows alphanumeric characters and underscores
  7179. function _checkRuleName(name) {
  7180. return /^\w+$/.test(name);
  7181. }
  7182. // Translate field key to jQuery selector.
  7183. function _key2selector(key) {
  7184. var isID = key.charAt(0) === '#';
  7185. key = key.replace(/([:.{(|)}/\[\]])/g, '\\$1');
  7186. return isID ? key : '[name="'+ key +'"]:first';
  7187. }
  7188. // Fixed a issue cause by refresh page in IE.
  7189. $(window).on('beforeunload', function(){
  7190. this.focus();
  7191. });
  7192. $(document)
  7193. .on('click', ':submit', function(){
  7194. var input = this, attrNode;
  7195. if (!input.form) return;
  7196. // Shim for "formnovalidate"
  7197. attrNode = input.getAttributeNode('formnovalidate');
  7198. if (attrNode && attrNode.nodeValue !== null || attr(input, NOVALIDATE)!== null) {
  7199. novalidateonce = true;
  7200. }
  7201. })
  7202. // Automatic initializing form validation
  7203. .on('focusin submit validate', 'form,.'+CLS_WRAPPER, function(e) {
  7204. if ( attr(this, NOVALIDATE) !== null ) return;
  7205. var $form = $(this), me;
  7206. if ( !$form.data(NS) && (me = _getInstance(this)) ) {
  7207. if ( !$.isEmptyObject(me.fields) ) {
  7208. // Execute event handler
  7209. if (e.type === 'focusin') {
  7210. me._focusin(e);
  7211. } else {
  7212. me._submit(e);
  7213. }
  7214. } else {
  7215. attr(this, NOVALIDATE, NOVALIDATE);
  7216. $form.off(CLS_NS).removeData(NS);
  7217. }
  7218. }
  7219. });
  7220. new Messages({
  7221. fallback: 'This field is not valid.',
  7222. loading: 'Validating...'
  7223. });
  7224. // Built-in rules (global)
  7225. new Rules({
  7226. /**
  7227. * required
  7228. *
  7229. * @example:
  7230. required
  7231. required(jqSelector)
  7232. required(anotherRule)
  7233. required(not, -1)
  7234. required(from, .contact)
  7235. */
  7236. required: function(element, params) {
  7237. var me = this,
  7238. val = trim(me.value),
  7239. isValid = true;
  7240. if (params) {
  7241. if ( params.length === 1 ) {
  7242. if ( !_checkRuleName(params[0]) ) {
  7243. if (!val && !$(params[0], me.$el).length ) {
  7244. return null;
  7245. }
  7246. }
  7247. else if ( me.rules[params[0]] ) {
  7248. if ( !val && !me.test(element, params[0]) ) {
  7249. return null;
  7250. }
  7251. }
  7252. }
  7253. else if ( params[0] === 'not' ) {
  7254. $.each(params.slice(1), function() {
  7255. return (isValid = val !== trim(this));
  7256. });
  7257. }
  7258. else if ( params[0] === 'from' ) {
  7259. var $elements = me.$el.find(params[1]),
  7260. VALIDATED = '_validated_',
  7261. ret;
  7262. isValid = $elements.filter(function(){
  7263. var field = me.getField(this);
  7264. return field && !!trim(field.getValue());
  7265. }).length >= (params[2] || 1);
  7266. if (isValid) {
  7267. if (!val) ret = null;
  7268. } else {
  7269. ret = _getDataMsg($elements[0], me) || false;
  7270. }
  7271. if ( !$(element).data(VALIDATED) ) {
  7272. $elements.data(VALIDATED, 1).each(function(){
  7273. if (element !== this) {
  7274. me._validate(this);
  7275. }
  7276. }).removeData(VALIDATED);
  7277. }
  7278. return ret;
  7279. }
  7280. }
  7281. return isValid && !!val;
  7282. },
  7283. /**
  7284. * integer
  7285. *
  7286. * @example:
  7287. integer
  7288. integer[+]
  7289. integer[+0]
  7290. integer[-]
  7291. integer[-0]
  7292. */
  7293. integer: function(element, params) {
  7294. var re, z = '0|',
  7295. p = '[1-9]\\d*',
  7296. key = params ? params[0] : '*';
  7297. switch (key) {
  7298. case '+':
  7299. re = p;
  7300. break;
  7301. case '-':
  7302. re = '-' + p;
  7303. break;
  7304. case '+0':
  7305. re = z + p;
  7306. break;
  7307. case '-0':
  7308. re = z + '-' + p;
  7309. break;
  7310. default:
  7311. re = z + '-?' + p;
  7312. }
  7313. re = '^(?:' + re + ')$';
  7314. return new RegExp(re).test(this.value) || (this.messages.integer && this.messages.integer[key]);
  7315. },
  7316. /**
  7317. * match another field
  7318. *
  7319. * @example:
  7320. match[password] Match the password field (two values ​​must be the same)
  7321. match[eq, password] Ditto
  7322. match[neq, count] The value must be not equal to the value of the count field
  7323. match[lt, count] The value must be less than the value of the count field
  7324. match[lte, count] The value must be less than or equal to the value of the count field
  7325. match[gt, count] The value must be greater than the value of the count field
  7326. match[gte, count] The value must be greater than or equal to the value of the count field
  7327. match[gte, startDate, date]
  7328. match[gte, startTime, time]
  7329. **/
  7330. match: function(element, params) {
  7331. if (!params) return;
  7332. var me = this,
  7333. isValid = true,
  7334. a, b,
  7335. key, msg, type = 'eq', parser,
  7336. selector2, elem2, field2;
  7337. if (params.length === 1) {
  7338. key = params[0];
  7339. } else {
  7340. type = params[0];
  7341. key = params[1];
  7342. }
  7343. selector2 = _key2selector(key);
  7344. elem2 = me.$el.find(selector2)[0];
  7345. // If the compared field is not exist
  7346. if (!elem2) return;
  7347. field2 = me.getField(elem2);
  7348. a = me.value;
  7349. b = field2.getValue();
  7350. if (!me._match) {
  7351. me.$el.on('valid'+CLS_NS_FIELD+CLS_NS, selector2, function(){
  7352. $(element).trigger('validate');
  7353. });
  7354. me._match = field2._match = 1;
  7355. }
  7356. // If both fields are blank
  7357. if (!me.required && a === '' && b === '') {
  7358. return null;
  7359. }
  7360. parser = params[2];
  7361. if (parser) {
  7362. if (/^date(time)?$/i.test(parser)) {
  7363. a = _parseDate(a);
  7364. b = _parseDate(b);
  7365. } else if (parser === 'time') {
  7366. a = +a.replace(/:/g, '');
  7367. b = +b.replace(/:/g, '');
  7368. }
  7369. }
  7370. // If the compared field is incorrect, we only ensure that this field is correct.
  7371. if (type !== 'eq' && !isNaN(+a) && isNaN(+b)) {
  7372. return true;
  7373. }
  7374. switch (type) {
  7375. case 'lt':
  7376. isValid = +a < +b; break;
  7377. case 'lte':
  7378. isValid = +a <= +b; break;
  7379. case 'gte':
  7380. isValid = +a >= +b; break;
  7381. case 'gt':
  7382. isValid = +a > +b; break;
  7383. case 'neq':
  7384. isValid = a !== b; break;
  7385. default:
  7386. isValid = a === b;
  7387. }
  7388. return isValid || (
  7389. isObject(me.messages.match)
  7390. && me.messages.match[type].replace( '{1}', me._getDisplay( elem2, field2.display || key ) )
  7391. );
  7392. },
  7393. /**
  7394. * range numbers
  7395. *
  7396. * @example:
  7397. range[0~99] Number 0-99
  7398. range[0~] Number greater than or equal to 0
  7399. range[~100] Number less than or equal to 100
  7400. **/
  7401. range: function(element, params) {
  7402. return this.getRangeMsg(this.value, params);
  7403. },
  7404. /**
  7405. * how many checkbox or radio inputs that checked
  7406. *
  7407. * @example:
  7408. checked; no empty, same to required
  7409. checked[1~3] 1-3 items
  7410. checked[1~] greater than 1 item
  7411. checked[~3] less than 3 items
  7412. checked[3] 3 items
  7413. **/
  7414. checked: function(element, params) {
  7415. if ( !_checkable(element) ) return;
  7416. var me = this,
  7417. elem, count;
  7418. if (element.name) {
  7419. count = me.$el.find('input[name="' + element.name + '"]').filter(function() {
  7420. var el = this;
  7421. if (!elem && _checkable(el)) elem = el;
  7422. return !el.disabled && el.checked;
  7423. }).length;
  7424. } else {
  7425. elem = element;
  7426. count = elem.checked;
  7427. }
  7428. if (params) {
  7429. return me.getRangeMsg(count, params);
  7430. } else {
  7431. return !!count || _getDataMsg(elem, me, '') || me.messages.required || false;
  7432. }
  7433. },
  7434. /**
  7435. * length of a characters (You can pass the second parameter "true", will calculate the length in bytes)
  7436. *
  7437. * @example:
  7438. length[6~16] 6-16 characters
  7439. length[6~] Greater than 6 characters
  7440. length[~16] Less than 16 characters
  7441. length[~16, true] Less than 16 characters, non-ASCII characters calculating two-character
  7442. **/
  7443. length: function(element, params) {
  7444. var value = this.value,
  7445. len = (params[1] === 'true' ? value.replace(rDoubleBytes, 'xx') : value).length;
  7446. return this.getRangeMsg(len, params, (params[1] ? '_2' : ''));
  7447. },
  7448. /**
  7449. * remote validation
  7450. *
  7451. * @description
  7452. * remote([get:]url [, name1, [name2 ...]]);
  7453. * Adaptation three kinds of results (Front for the successful, followed by a failure):
  7454. 1. text:
  7455. '' 'Error Message'
  7456. 2. json:
  7457. {"ok": ""} {"error": "Error Message"}
  7458. 3. json wrapper:
  7459. {"status": 1, "data": {"ok": ""}} {"status": 1, "data": {"error": "Error Message"}}
  7460. * @example
  7461. The simplest: remote(path/to/server);
  7462. With parameters: remote(path/to/server, name1, name2, ...);
  7463. By GET: remote(get:path/to/server, name1, name2, ...);
  7464. Name proxy: remote(path/to/server, name1, proxyname2:name2, proxyname3:#id3, ...)
  7465. Query String remote(path/to/server, foo=1&bar=2, name1, name2, ...)
  7466. CORS remote(cors:path/to/server)
  7467. JSONP remote(jsonp:path/to/server)
  7468. */
  7469. remote: function(element, params) {
  7470. if (!params) return;
  7471. var me = this,
  7472. arr = rAjaxType.exec(params[0]),
  7473. rule = me._rules[me._i],
  7474. data = {},
  7475. queryString = '',
  7476. url = arr[3],
  7477. type = arr[2] || 'POST', // GET / POST
  7478. rType = (arr[1]||'').toLowerCase(), // CORS / JSONP
  7479. dataType;
  7480. rule.must = true;
  7481. data[element.name] = me.value;
  7482. // There are extra fields
  7483. if (params[1]) {
  7484. $.map(params.slice(1), function(name) {
  7485. var arr, key;
  7486. if (~name.indexOf('=')) {
  7487. queryString += '&' + name;
  7488. } else {
  7489. arr = name.split(':');
  7490. name = trim(arr[0]);
  7491. key = trim(arr[1]) || name;
  7492. data[ name ] = me.$el.find( _key2selector(key) ).val();
  7493. }
  7494. });
  7495. }
  7496. data = $.param(data) + queryString;
  7497. if (!me.must && rule.data && rule.data === data) {
  7498. return rule.result;
  7499. }
  7500. // Cross-domain request, force jsonp dataType
  7501. if (rType !== 'cors' && /^https?:/.test(url) && !~url.indexOf(location.host)) {
  7502. dataType = 'jsonp';
  7503. }
  7504. // Asynchronous validation need return jqXHR objects
  7505. return $.ajax({
  7506. url: url,
  7507. type: type,
  7508. data: data,
  7509. dataType: dataType
  7510. });
  7511. },
  7512. /**
  7513. * filter characters, direct filtration without prompting error (support custom regular expressions)
  7514. *
  7515. * @example
  7516. * filter filtering unsafe characters
  7517. * filter(regexp) filtering the "regexp" matched characters
  7518. */
  7519. filter: function(element, params) {
  7520. var value = this.value,
  7521. temp = value.replace( params ? (new RegExp('[' + params[0] + ']', 'gm')) : rUnsafe, '' );
  7522. if (temp !== value) this.setValue(temp);
  7523. }
  7524. });
  7525. /**
  7526. * Config global options
  7527. *
  7528. * @static config
  7529. * @param {Object} options
  7530. */
  7531. Validator.config = function(key, value) {
  7532. if (isObject(key)) {
  7533. $.each(key, _config);
  7534. }
  7535. else if (isString(key)) {
  7536. _config(key, value);
  7537. }
  7538. function _config(k, o) {
  7539. if (k === 'rules') {
  7540. new Rules(o);
  7541. }
  7542. else if (k === 'messages') {
  7543. new Messages(o);
  7544. }
  7545. else if (k in fieldDefaults) {
  7546. fieldDefaults[k] = o;
  7547. }
  7548. else {
  7549. defaults[k] = o;
  7550. }
  7551. }
  7552. };
  7553. /**
  7554. * Config themes
  7555. *
  7556. * @static setTheme
  7557. * @param {String|Object} name
  7558. * @param {Object} obj
  7559. * @example
  7560. .setTheme( themeName, themeOptions )
  7561. .setTheme( multiThemes )
  7562. */
  7563. Validator.setTheme = function(name, obj) {
  7564. if ( isObject(name) ) {
  7565. $.extend(true, themes, name);
  7566. }
  7567. else if ( isString(name) && isObject(obj) ) {
  7568. themes[name] = $.extend(themes[name], obj);
  7569. }
  7570. };
  7571. /**
  7572. * Resource loader
  7573. *
  7574. * @static load
  7575. * @param {String} str
  7576. * @example
  7577. .load('local=zh-CN') // load: local/zh-CN.js and jquery.validator.css
  7578. .load('local=zh-CN&css=') // load: local/zh-CN.js
  7579. .load('local&css') // load: local/en.js (set <html lang="en">) and jquery.validator.css
  7580. .load('local') // dito
  7581. */
  7582. Validator.load = function(str) {
  7583. if (!str) return;
  7584. var doc = document,
  7585. params = {},
  7586. node = doc.scripts[0],
  7587. dir, el, ONLOAD;
  7588. str.replace(/([^?=&]+)=([^&#]*)/g, function(m, key, value){
  7589. params[key] = value;
  7590. });
  7591. dir = params.dir || Validator.dir;
  7592. if (!Validator.css && params.css !== '') {
  7593. el = doc.createElement('link');
  7594. el.rel = 'stylesheet';
  7595. el.href = Validator.css = dir + 'jquery.validator.css';
  7596. node.parentNode.insertBefore(el, node);
  7597. }
  7598. if (!Validator.local && ~str.indexOf('local') && params.local !== '') {
  7599. Validator.local = (params.local || doc.documentElement.lang || 'en').replace('_','-');
  7600. Validator.pending = 1;
  7601. el = doc.createElement('script');
  7602. el.src = dir + 'local/' + Validator.local + '.js';
  7603. ONLOAD = 'onload' in el ? 'onload' : 'onreadystatechange';
  7604. el[ONLOAD] = function() {
  7605. if (!el.readyState || /loaded|complete/.test(el.readyState)) {
  7606. el = el[ONLOAD] = null;
  7607. delete Validator.pending;
  7608. $(window).triggerHandler('validatorready');
  7609. }
  7610. };
  7611. node.parentNode.insertBefore(el, node);
  7612. }
  7613. };
  7614. // Auto loading resources
  7615. (function(){
  7616. var scripts = document.scripts,
  7617. i = scripts.length, node, arr,
  7618. re = /(.*validator(?:\.min)?.js)(\?.*(?:local|css|dir)(?:=[\w\-]*)?)?/;
  7619. while (i-- && !arr) {
  7620. node = scripts[i];
  7621. arr = (node.hasAttribute ? node.src : node.getAttribute('src',4)||'').match(re);
  7622. }
  7623. if (!arr) return;
  7624. Validator.dir = arr[1].split('/').slice(0, -1).join('/')+'/';
  7625. Validator.load(arr[2]);
  7626. })();
  7627. return $[NS] = Validator;
  7628. }));
  7629. /*********************************
  7630. * Themes, rules, and i18n support
  7631. * Locale: Chinese; 中文
  7632. *********************************/
  7633. (function(factory) {
  7634. typeof module === "object" && module.exports ? module.exports = factory( require( "jquery" ) ) :
  7635. typeof define === 'function' && define.amd ? define('validator-lang',['jquery'], factory) :
  7636. factory(jQuery);
  7637. }(function($) {
  7638. /* Global configuration
  7639. */
  7640. $.validator.config({
  7641. //stopOnError: true,
  7642. //focusCleanup: true,
  7643. //theme: 'yellow_right',
  7644. //timely: 2,
  7645. // Custom rules
  7646. rules: {
  7647. digits: [/^\d+$/, "请填写数字"]
  7648. ,letters: [/^[a-z]+$/i, "请填写字母"]
  7649. ,date: [/^\d{4}-\d{2}-\d{2}$/, "请填写有效的日期,格式:yyyy-mm-dd"]
  7650. ,time: [/^([01]\d|2[0-3])(:[0-5]\d){1,2}$/, "请填写有效的时间,00:00到23:59之间"]
  7651. ,email: [/^[\w\+\-]+(\.[\w\+\-]+)*@[a-z\d\-]+(\.[a-z\d\-]+)*\.([a-z]{2,4})$/i, "请填写有效的邮箱"]
  7652. ,url: [/^(https?|s?ftp):\/\/\S+$/i, "请填写有效的网址"]
  7653. ,qq: [/^[1-9]\d{4,}$/, "请填写有效的QQ号"]
  7654. ,IDcard: [/^\d{6}(19|2\d)?\d{2}(0[1-9]|1[012])(0[1-9]|[12]\d|3[01])\d{3}(\d|X)?$/, "请填写正确的身份证号码"]
  7655. ,tel: [/^(?:(?:0\d{2,3}[\- ]?[1-9]\d{6,7})|(?:[48]00[\- ]?[1-9]\d{6}))$/, "请填写有效的电话号码"]
  7656. ,mobile: [/^1[3-9]\d{9}$/, "请填写有效的手机号"]
  7657. ,zipcode: [/^\d{6}$/, "请检查邮政编码格式"]
  7658. ,chinese: [/^[\u0391-\uFFE5]+$/, "请填写中文字符"]
  7659. ,username: [/^\w{3,12}$/, "请填写3-12位数字、字母、下划线"]
  7660. ,password: [/^[\S]{6,16}$/, "请填写6-16位字符,不能包含空格"]
  7661. ,accept: function (element, params){
  7662. if (!params) return true;
  7663. var ext = params[0],
  7664. value = $(element).val();
  7665. return (ext === '*') ||
  7666. (new RegExp(".(?:" + ext + ")$", "i")).test(value) ||
  7667. this.renderMsg("只接受{1}后缀的文件", ext.replace(/\|/g, ','));
  7668. }
  7669. },
  7670. // Default error messages
  7671. messages: {
  7672. 0: "此处",
  7673. fallback: "{0}格式不正确",
  7674. loading: "正在验证...",
  7675. error: "网络异常",
  7676. timeout: "请求超时",
  7677. required: "{0}不能为空",
  7678. remote: "{0}已被使用",
  7679. integer: {
  7680. '*': "请填写整数",
  7681. '+': "请填写正整数",
  7682. '+0': "请填写正整数或0",
  7683. '-': "请填写负整数",
  7684. '-0': "请填写负整数或0"
  7685. },
  7686. match: {
  7687. eq: "{0}与{1}不一致",
  7688. neq: "{0}与{1}不能相同",
  7689. lt: "{0}必须小于{1}",
  7690. gt: "{0}必须大于{1}",
  7691. lte: "{0}不能大于{1}",
  7692. gte: "{0}不能小于{1}"
  7693. },
  7694. range: {
  7695. rg: "请填写{1}到{2}的数",
  7696. gte: "请填写不小于{1}的数",
  7697. lte: "请填写最大{1}的数",
  7698. gtlt: "请填写{1}到{2}之间的数",
  7699. gt: "请填写大于{1}的数",
  7700. lt: "请填写小于{1}的数"
  7701. },
  7702. checked: {
  7703. eq: "请选择{1}项",
  7704. rg: "请选择{1}到{2}项",
  7705. gte: "请至少选择{1}项",
  7706. lte: "请最多选择{1}项"
  7707. },
  7708. length: {
  7709. eq: "请填写{1}个字符",
  7710. rg: "请填写{1}到{2}个字符",
  7711. gte: "请至少填写{1}个字符",
  7712. lte: "请最多填写{1}个字符",
  7713. eq_2: "",
  7714. rg_2: "",
  7715. gte_2: "",
  7716. lte_2: ""
  7717. }
  7718. }
  7719. });
  7720. /* Themes
  7721. */
  7722. var TPL_ARROW = '<span class="n-arrow"><b>◆</b><i>◆</i></span>';
  7723. $.validator.setTheme({
  7724. 'simple_right': {
  7725. formClass: 'n-simple',
  7726. msgClass: 'n-right'
  7727. },
  7728. 'simple_bottom': {
  7729. formClass: 'n-simple',
  7730. msgClass: 'n-bottom'
  7731. },
  7732. 'yellow_top': {
  7733. formClass: 'n-yellow',
  7734. msgClass: 'n-top',
  7735. msgArrow: TPL_ARROW
  7736. },
  7737. 'yellow_right': {
  7738. formClass: 'n-yellow',
  7739. msgClass: 'n-right',
  7740. msgArrow: TPL_ARROW
  7741. },
  7742. 'yellow_right_effect': {
  7743. formClass: 'n-yellow',
  7744. msgClass: 'n-right',
  7745. msgArrow: TPL_ARROW,
  7746. msgShow: function($msgbox, type){
  7747. var $el = $msgbox.children();
  7748. if ($el.is(':animated')) return;
  7749. if (type === 'error') {
  7750. $el.css({left: '20px', opacity: 0})
  7751. .delay(100).show().stop()
  7752. .animate({left: '-4px', opacity: 1}, 150)
  7753. .animate({left: '3px'}, 80)
  7754. .animate({left: 0}, 80);
  7755. } else {
  7756. $el.css({left: 0, opacity: 1}).fadeIn(200);
  7757. }
  7758. },
  7759. msgHide: function($msgbox, type){
  7760. var $el = $msgbox.children();
  7761. $el.stop().delay(100).show()
  7762. .animate({left: '20px', opacity: 0}, 300, function(){
  7763. $msgbox.hide();
  7764. });
  7765. }
  7766. }
  7767. });
  7768. }));
  7769. define('validator',['validator-core', 'validator-lang'], function (Validator, undefined) {
  7770. return Validator;
  7771. });
  7772. define('form',['jquery', 'bootstrap', 'upload', 'validator'], function ($, undefined, Upload, Validator) {
  7773. var Form = {
  7774. config: {
  7775. fieldlisttpl: '<dd class="form-inline"><input type="text" name="<%=name%>[<%=index%>][key]" class="form-control" value="<%=row.key%>" size="10" /> <input type="text" name="<%=name%>[<%=index%>][value]" class="form-control" value="<%=row.value%>" size="30" /> <span class="btn btn-sm btn-danger btn-remove"><i class="fa fa-times"></i></span> <span class="btn btn-sm btn-primary btn-dragsort"><i class="fa fa-arrows"></i></span></dd>'
  7776. },
  7777. events: {
  7778. validator: function (form, success, error, submit) {
  7779. if (!form.is("form"))
  7780. return;
  7781. //绑定表单事件
  7782. form.validator($.extend({
  7783. validClass: 'has-success',
  7784. invalidClass: 'has-error',
  7785. bindClassTo: '.form-group',
  7786. formClass: 'n-default n-bootstrap',
  7787. msgClass: 'n-right',
  7788. stopOnError: true,
  7789. display: function (elem) {
  7790. return $(elem).closest('.form-group').find(".control-label").text().replace(/\:/, '');
  7791. },
  7792. dataFilter: function (data) {
  7793. if (data.code === 1) {
  7794. return "";
  7795. } else {
  7796. return data.msg;
  7797. }
  7798. },
  7799. target: function (input) {
  7800. var target = $(input).data("target");
  7801. if (target && $(target).size() > 0) {
  7802. return $(target);
  7803. }
  7804. var $formitem = $(input).closest('.form-group'),
  7805. $msgbox = $formitem.find('span.msg-box');
  7806. if (!$msgbox.length) {
  7807. return [];
  7808. }
  7809. return $msgbox;
  7810. },
  7811. valid: function (ret) {
  7812. var that = this, submitBtn = $(".layer-footer [type=submit]", form);
  7813. that.holdSubmit(true);
  7814. submitBtn.addClass("disabled");
  7815. //验证通过提交表单
  7816. var submitResult = Form.api.submit($(ret), function (data, ret) {
  7817. that.holdSubmit(false);
  7818. submitBtn.removeClass("disabled");
  7819. if (false === $(this).triggerHandler("success.form", [data, ret])) {
  7820. return false;
  7821. }
  7822. if (typeof success === 'function') {
  7823. if (false === success.call($(this), data, ret)) {
  7824. return false;
  7825. }
  7826. }
  7827. //提示及关闭当前窗口
  7828. var msg = ret.hasOwnProperty("msg") && ret.msg !== "" ? ret.msg : __('Operation completed');
  7829. parent.Toastr.success(msg);
  7830. parent.$(".btn-refresh").trigger("click");
  7831. var index = parent.Layer.getFrameIndex(window.name);
  7832. parent.Layer.close(index);
  7833. return false;
  7834. }, function (data, ret) {
  7835. that.holdSubmit(false);
  7836. if (false === $(this).triggerHandler("error.form", [data, ret])) {
  7837. return false;
  7838. }
  7839. submitBtn.removeClass("disabled");
  7840. if (typeof error === 'function') {
  7841. if (false === error.call($(this), data, ret)) {
  7842. return false;
  7843. }
  7844. }
  7845. }, submit);
  7846. //如果提交失败则释放锁定
  7847. if (!submitResult) {
  7848. that.holdSubmit(false);
  7849. submitBtn.removeClass("disabled");
  7850. }
  7851. return false;
  7852. }
  7853. }, form.data("validator-options") || {}));
  7854. //移除提交按钮的disabled类
  7855. $(".layer-footer [type=submit],.fixed-footer [type=submit],.normal-footer [type=submit]", form).removeClass("disabled");
  7856. },
  7857. selectpicker: function (form) {
  7858. //绑定select元素事件
  7859. if ($(".selectpicker", form).size() > 0) {
  7860. require(['bootstrap-select', 'bootstrap-select-lang'], function () {
  7861. $('.selectpicker', form).selectpicker();
  7862. });
  7863. }
  7864. },
  7865. selectpage: function (form) {
  7866. //绑定selectpage元素事件
  7867. if ($(".selectpage", form).size() > 0) {
  7868. require(['selectpage'], function () {
  7869. $('.selectpage', form).selectPage({
  7870. eAjaxSuccess: function (data) {
  7871. data.list = typeof data.rows !== 'undefined' ? data.rows : (typeof data.list !== 'undefined' ? data.list : []);
  7872. data.totalRow = typeof data.total !== 'undefined' ? data.total : (typeof data.totalRow !== 'undefined' ? data.totalRow : data.list.length);
  7873. return data;
  7874. }
  7875. });
  7876. });
  7877. //给隐藏的元素添加上validate验证触发事件
  7878. $(document).on("change", ".sp_hidden", function () {
  7879. $(this).trigger("validate");
  7880. });
  7881. $(document).on("change", ".sp_input", function () {
  7882. $(this).closest(".sp_container").find(".sp_hidden").trigger("change");
  7883. });
  7884. $(form).on("reset", function () {
  7885. setTimeout(function () {
  7886. $('.selectpage', form).selectPageClear();
  7887. }, 1);
  7888. });
  7889. }
  7890. },
  7891. cxselect: function (form) {
  7892. //绑定cxselect元素事件
  7893. if ($("[data-toggle='cxselect']", form).size() > 0) {
  7894. require(['cxselect'], function () {
  7895. $.cxSelect.defaults.jsonName = 'name';
  7896. $.cxSelect.defaults.jsonValue = 'value';
  7897. $.cxSelect.defaults.jsonSpace = 'data';
  7898. $("[data-toggle='cxselect']", form).cxSelect();
  7899. });
  7900. }
  7901. },
  7902. citypicker: function (form) {
  7903. //绑定城市远程插件
  7904. if ($("[data-toggle='city-picker']", form).size() > 0) {
  7905. require(['citypicker'], function () {
  7906. });
  7907. }
  7908. },
  7909. datetimepicker: function (form) {
  7910. //绑定日期时间元素事件
  7911. if ($(".datetimepicker", form).size() > 0) {
  7912. require(['bootstrap-datetimepicker'], function () {
  7913. var options = {
  7914. format: 'YYYY-MM-DD HH:mm:ss',
  7915. icons: {
  7916. time: 'fa fa-clock-o',
  7917. date: 'fa fa-calendar',
  7918. up: 'fa fa-chevron-up',
  7919. down: 'fa fa-chevron-down',
  7920. previous: 'fa fa-chevron-left',
  7921. next: 'fa fa-chevron-right',
  7922. today: 'fa fa-history',
  7923. clear: 'fa fa-trash',
  7924. close: 'fa fa-remove'
  7925. },
  7926. showTodayButton: true,
  7927. showClose: true
  7928. };
  7929. $('.datetimepicker', form).parent().css('position', 'relative');
  7930. $('.datetimepicker', form).datetimepicker(options);
  7931. });
  7932. }
  7933. },
  7934. daterangepicker: function (form) {
  7935. //绑定日期时间元素事件
  7936. if ($(".datetimerange", form).size() > 0) {
  7937. require(['bootstrap-daterangepicker'], function () {
  7938. var ranges = {};
  7939. ranges[__('Today')] = [Moment().startOf('day'), Moment().endOf('day')];
  7940. ranges[__('Yesterday')] = [Moment().subtract(1, 'days').startOf('day'), Moment().subtract(1, 'days').endOf('day')];
  7941. ranges[__('Last 7 Days')] = [Moment().subtract(6, 'days').startOf('day'), Moment().endOf('day')];
  7942. ranges[__('Last 30 Days')] = [Moment().subtract(29, 'days').startOf('day'), Moment().endOf('day')];
  7943. ranges[__('This Month')] = [Moment().startOf('month'), Moment().endOf('month')];
  7944. ranges[__('Last Month')] = [Moment().subtract(1, 'month').startOf('month'), Moment().subtract(1, 'month').endOf('month')];
  7945. var options = {
  7946. timePicker: false,
  7947. autoUpdateInput: false,
  7948. timePickerSeconds: true,
  7949. timePicker24Hour: true,
  7950. autoApply: true,
  7951. locale: {
  7952. format: 'YYYY-MM-DD HH:mm:ss',
  7953. customRangeLabel: __("Custom Range"),
  7954. applyLabel: __("Apply"),
  7955. cancelLabel: __("Clear"),
  7956. },
  7957. ranges: ranges,
  7958. };
  7959. var origincallback = function (start, end) {
  7960. $(this.element).val(start.format(this.locale.format) + " - " + end.format(this.locale.format));
  7961. $(this.element).trigger('blur');
  7962. };
  7963. $(".datetimerange", form).each(function () {
  7964. var callback = typeof $(this).data('callback') == 'function' ? $(this).data('callback') : origincallback;
  7965. $(this).on('apply.daterangepicker', function (ev, picker) {
  7966. callback.call(picker, picker.startDate, picker.endDate);
  7967. });
  7968. $(this).on('cancel.daterangepicker', function (ev, picker) {
  7969. $(this).val('').trigger('blur');
  7970. });
  7971. $(this).daterangepicker($.extend({}, options, $(this).data()), callback);
  7972. });
  7973. });
  7974. }
  7975. },
  7976. plupload: function (form) {
  7977. //绑定plupload上传元素事件
  7978. if ($(".plupload", form).size() > 0) {
  7979. Upload.api.plupload($(".plupload", form));
  7980. }
  7981. },
  7982. faselect: function (form) {
  7983. //绑定fachoose选择附件事件
  7984. if ($(".fachoose", form).size() > 0) {
  7985. $(".fachoose", form).on('click', function () {
  7986. var that = this;
  7987. var multiple = $(this).data("multiple") ? $(this).data("multiple") : false;
  7988. var mimetype = $(this).data("mimetype") ? $(this).data("mimetype") : '';
  7989. var admin_id = $(this).data("admin-id") ? $(this).data("admin-id") : '';
  7990. var user_id = $(this).data("user-id") ? $(this).data("user-id") : '';
  7991. parent.Fast.api.open("general/attachment/select?element_id=" + $(this).attr("id") + "&multiple=" + multiple + "&mimetype=" + mimetype + "&admin_id=" + admin_id + "&user_id=" + user_id, __('Choose'), {
  7992. callback: function (data) {
  7993. var button = $("#" + $(that).attr("id"));
  7994. var maxcount = $(button).data("maxcount");
  7995. var input_id = $(button).data("input-id") ? $(button).data("input-id") : "";
  7996. maxcount = typeof maxcount !== "undefined" ? maxcount : 0;
  7997. if (input_id && data.multiple) {
  7998. var urlArr = [];
  7999. var inputObj = $("#" + input_id);
  8000. var value = $.trim(inputObj.val());
  8001. if (value !== "") {
  8002. urlArr.push(inputObj.val());
  8003. }
  8004. urlArr.push(data.url)
  8005. var result = urlArr.join(",");
  8006. if (maxcount > 0) {
  8007. var nums = value === '' ? 0 : value.split(/\,/).length;
  8008. var files = data.url !== "" ? data.url.split(/\,/) : [];
  8009. var remains = maxcount - nums;
  8010. if (files.length > remains) {
  8011. Toastr.error(__('You can choose up to %d file%s', remains));
  8012. return false;
  8013. }
  8014. }
  8015. inputObj.val(result).trigger("change");
  8016. } else {
  8017. $("#" + input_id).val(data.url).trigger("change");
  8018. }
  8019. }
  8020. });
  8021. return false;
  8022. });
  8023. }
  8024. },
  8025. fieldlist: function (form) {
  8026. //绑定fieldlist
  8027. if ($(".fieldlist", form).size() > 0) {
  8028. require(['dragsort', 'template'], function (undefined, Template) {
  8029. //刷新隐藏textarea的值
  8030. var refresh = function (name) {
  8031. var data = {};
  8032. var textarea = $("textarea[name='" + name + "']", form);
  8033. var container = textarea.closest("dl");
  8034. var template = container.data("template");
  8035. $.each($("input,select", container).serializeArray(), function (i, j) {
  8036. var reg = /\[(\w+)\]\[(\w+)\]$/g;
  8037. var match = reg.exec(j.name);
  8038. if (!match)
  8039. return true;
  8040. match[1] = "x" + parseInt(match[1]);
  8041. if (typeof data[match[1]] == 'undefined') {
  8042. data[match[1]] = {};
  8043. }
  8044. data[match[1]][match[2]] = j.value;
  8045. });
  8046. var result = template ? [] : {};
  8047. $.each(data, function (i, j) {
  8048. if (j) {
  8049. if (!template) {
  8050. if (j.key != '') {
  8051. result[j.key] = j.value;
  8052. }
  8053. } else {
  8054. result.push(j);
  8055. }
  8056. }
  8057. });
  8058. textarea.val(JSON.stringify(result));
  8059. };
  8060. //监听文本框改变事件
  8061. $(document).on('change keyup', ".fieldlist input,.fieldlist textarea,.fieldlist select", function () {
  8062. refresh($(this).closest("dl").data("name"));
  8063. });
  8064. //追加控制
  8065. $(".fieldlist", form).on("click", ".btn-append,.append", function (e, row) {
  8066. var container = $(this).closest("dl");
  8067. var index = container.data("index");
  8068. var name = container.data("name");
  8069. var template = container.data("template");
  8070. var data = container.data();
  8071. index = index ? parseInt(index) : 0;
  8072. container.data("index", index + 1);
  8073. var row = row ? row : {};
  8074. var vars = {index: index, name: name, data: data, row: row};
  8075. var html = template ? Template(template, vars) : Template.render(Form.config.fieldlisttpl, vars);
  8076. $(html).insertBefore($(this).closest("dd"));
  8077. $(this).trigger("fa.event.appendfieldlist", $(this).closest("dd").prev());
  8078. });
  8079. //移除控制
  8080. $(".fieldlist", form).on("click", "dd .btn-remove", function () {
  8081. var container = $(this).closest("dl");
  8082. $(this).closest("dd").remove();
  8083. refresh(container.data("name"));
  8084. });
  8085. //拖拽排序
  8086. $("dl.fieldlist", form).dragsort({
  8087. itemSelector: 'dd',
  8088. dragSelector: ".btn-dragsort",
  8089. dragEnd: function () {
  8090. refresh($(this).closest("dl").data("name"));
  8091. },
  8092. placeHolderTemplate: "<dd></dd>"
  8093. });
  8094. //渲染数据
  8095. $(".fieldlist", form).each(function () {
  8096. var container = this;
  8097. var textarea = $("textarea[name='" + $(this).data("name") + "']", form);
  8098. if (textarea.val() == '') {
  8099. return true;
  8100. }
  8101. var template = $(this).data("template");
  8102. var json = {};
  8103. try {
  8104. json = JSON.parse(textarea.val());
  8105. } catch (e) {
  8106. }
  8107. $.each(json, function (i, j) {
  8108. $(".btn-append,.append", container).trigger('click', template ? j : {
  8109. key: i,
  8110. value: j
  8111. });
  8112. });
  8113. });
  8114. });
  8115. }
  8116. },
  8117. switcher: function (form) {
  8118. form.on("click", "[data-toggle='switcher']", function () {
  8119. if ($(this).hasClass("disabled")) {
  8120. return false;
  8121. }
  8122. var input = $(this).prev("input");
  8123. input = $(this).data("input-id") ? $("#" + $(this).data("input-id")) : input;
  8124. if (input.size() > 0) {
  8125. var yes = $(this).data("yes");
  8126. var no = $(this).data("no");
  8127. if (input.val() == yes) {
  8128. input.val(no);
  8129. $("i", this).addClass("fa-flip-horizontal text-gray");
  8130. } else {
  8131. input.val(yes);
  8132. $("i", this).removeClass("fa-flip-horizontal text-gray");
  8133. }
  8134. input.trigger('change');
  8135. }
  8136. return false;
  8137. });
  8138. },
  8139. bindevent: function (form) {
  8140. },
  8141. slider: function (form) {
  8142. if ($(".slider", form).size() > 0) {
  8143. require(['bootstrap-slider'], function () {
  8144. $('.slider').removeClass('hidden').css('width', function (index, value) {
  8145. return $(this).parents('.form-control').width();
  8146. }).slider().on('slide', function (ev) {
  8147. var data = $(this).data();
  8148. if (typeof data.unit !== 'undefined') {
  8149. $(this).parents('.form-control').siblings('.value').text(ev.value + data.unit);
  8150. }
  8151. });
  8152. });
  8153. }
  8154. }
  8155. },
  8156. api: {
  8157. submit: function (form, success, error, submit) {
  8158. if (form.size() === 0) {
  8159. Toastr.error("表单未初始化完成,无法提交");
  8160. return false;
  8161. }
  8162. if (typeof submit === 'function') {
  8163. if (false === submit.call(form, success, error)) {
  8164. return false;
  8165. }
  8166. }
  8167. var type = form.attr("method") ? form.attr("method").toUpperCase() : 'GET';
  8168. type = type && (type === 'GET' || type === 'POST') ? type : 'GET';
  8169. url = form.attr("action");
  8170. url = url ? url : location.href;
  8171. //修复当存在多选项元素时提交的BUG
  8172. var params = {};
  8173. var multipleList = $("[name$='[]']", form);
  8174. if (multipleList.size() > 0) {
  8175. var postFields = form.serializeArray().map(function (obj) {
  8176. return $(obj).prop("name");
  8177. });
  8178. $.each(multipleList, function (i, j) {
  8179. if (postFields.indexOf($(this).prop("name")) < 0) {
  8180. params[$(this).prop("name")] = '';
  8181. }
  8182. });
  8183. }
  8184. //调用Ajax请求方法
  8185. Fast.api.ajax({
  8186. type: type,
  8187. url: url,
  8188. data: form.serialize() + (Object.keys(params).length > 0 ? '&' + $.param(params) : ''),
  8189. dataType: 'json',
  8190. complete: function (xhr) {
  8191. var token = xhr.getResponseHeader('__token__');
  8192. if (token) {
  8193. $("input[name='__token__']", form).val(token);
  8194. }
  8195. }
  8196. }, function (data, ret) {
  8197. $('.form-group', form).removeClass('has-feedback has-success has-error');
  8198. if (data && typeof data === 'object') {
  8199. //刷新客户端token
  8200. if (typeof data.token !== 'undefined') {
  8201. $("input[name='__token__']", form).val(data.token);
  8202. }
  8203. //调用客户端事件
  8204. if (typeof data.callback !== 'undefined' && typeof data.callback === 'function') {
  8205. data.callback.call(form, data);
  8206. }
  8207. }
  8208. if (typeof success === 'function') {
  8209. if (false === success.call(form, data, ret)) {
  8210. return false;
  8211. }
  8212. }
  8213. }, function (data, ret) {
  8214. if (data && typeof data === 'object' && typeof data.token !== 'undefined') {
  8215. $("input[name='__token__']", form).val(data.token);
  8216. }
  8217. if (typeof error === 'function') {
  8218. if (false === error.call(form, data, ret)) {
  8219. return false;
  8220. }
  8221. }
  8222. });
  8223. return true;
  8224. },
  8225. bindevent: function (form, success, error, submit) {
  8226. form = typeof form === 'object' ? form : $(form);
  8227. var events = Form.events;
  8228. events.bindevent(form);
  8229. events.validator(form, success, error, submit);
  8230. events.selectpicker(form);
  8231. events.daterangepicker(form);
  8232. events.selectpage(form);
  8233. events.cxselect(form);
  8234. events.citypicker(form);
  8235. events.datetimepicker(form);
  8236. events.plupload(form);
  8237. events.faselect(form);
  8238. events.fieldlist(form);
  8239. events.slider(form);
  8240. events.switcher(form);
  8241. },
  8242. custom: {}
  8243. },
  8244. };
  8245. return Form;
  8246. });
  8247. /**
  8248. * FastAdmin通用搜索
  8249. *
  8250. * @author: pppscn <35696959@qq.com>
  8251. * @update 2017-05-07 <https://gitee.com/pp/fastadmin>
  8252. *
  8253. * @author: Karson <karsonzhang@163.com>
  8254. * @update 2018-04-05 <https://gitee.com/karson/fastadmin>
  8255. */
  8256. !function ($) {
  8257. 'use strict';
  8258. var ColumnsForSearch = [];
  8259. var sprintf = $.fn.bootstrapTable.utils.sprintf;
  8260. var initCommonSearch = function (pColumns, that) {
  8261. var vFormCommon = createFormCommon(pColumns, that);
  8262. var vModal = sprintf("<div class=\"commonsearch-table %s\">", that.options.searchFormVisible ? "" : "hidden");
  8263. vModal += vFormCommon;
  8264. vModal += "</div>";
  8265. that.$container.prepend($(vModal));
  8266. that.$commonsearch = $(".commonsearch-table", that.$container);
  8267. var form = $("form.form-commonsearch", that.$commonsearch);
  8268. require(['form'], function (Form) {
  8269. Form.api.bindevent(form);
  8270. form.validator("destroy");
  8271. });
  8272. // 表单提交
  8273. form.on("submit", function (event) {
  8274. event.preventDefault();
  8275. that.onCommonSearch();
  8276. return false;
  8277. });
  8278. // 重置搜索
  8279. form.on("click", "button[type=reset]", function (event) {
  8280. form[0].reset();
  8281. that.onCommonSearch();
  8282. });
  8283. };
  8284. var createFormCommon = function (pColumns, that) {
  8285. // 如果有使用模板则直接返回模板的内容
  8286. if (that.options.searchFormTemplate) {
  8287. return Template(that.options.searchFormTemplate, {columns: pColumns, table: that});
  8288. }
  8289. var htmlForm = [];
  8290. htmlForm.push(sprintf('<form class="form-horizontal form-commonsearch" novalidate method="post" action="%s" >', that.options.actionForm));
  8291. htmlForm.push('<fieldset>');
  8292. if (that.options.titleForm.length > 0)
  8293. htmlForm.push(sprintf("<legend>%s</legend>", that.options.titleForm));
  8294. htmlForm.push('<div class="row">');
  8295. for (var i in pColumns) {
  8296. var vObjCol = pColumns[i];
  8297. if (!vObjCol.checkbox && vObjCol.field !== 'operate' && vObjCol.searchable && vObjCol.operate !== false) {
  8298. var query = Fast.api.query(vObjCol.field);
  8299. var operate = Fast.api.query(vObjCol.field + "-operate");
  8300. vObjCol.defaultValue = that.options.renderDefault && query ? query : (typeof vObjCol.defaultValue === 'undefined' ? '' : vObjCol.defaultValue);
  8301. vObjCol.operate = that.options.renderDefault && operate ? operate : (typeof vObjCol.operate === 'undefined' ? '=' : vObjCol.operate);
  8302. ColumnsForSearch.push(vObjCol);
  8303. htmlForm.push('<div class="form-group col-xs-12 col-sm-6 col-md-4 col-lg-3">');
  8304. htmlForm.push(sprintf('<label for="%s" class="control-label col-xs-4">%s</label>', vObjCol.field, vObjCol.title));
  8305. htmlForm.push('<div class="col-xs-8">');
  8306. vObjCol.operate = vObjCol.operate ? vObjCol.operate.toUpperCase() : '=';
  8307. htmlForm.push(sprintf('<input type="hidden" class="form-control operate" name="%s-operate" data-name="%s" value="%s" readonly>', vObjCol.field, vObjCol.field, vObjCol.operate));
  8308. var addClass = typeof vObjCol.addClass === 'undefined' ? (typeof vObjCol.addclass === 'undefined' ? 'form-control' : 'form-control ' + vObjCol.addclass) : 'form-control ' + vObjCol.addClass;
  8309. var extend = typeof vObjCol.extend === 'undefined' ? '' : vObjCol.extend;
  8310. var style = typeof vObjCol.style === 'undefined' ? '' : sprintf('style="%s"', vObjCol.style);
  8311. extend = typeof vObjCol.data !== 'undefined' && extend == '' ? vObjCol.data : extend;
  8312. if (vObjCol.searchList) {
  8313. if (typeof vObjCol.searchList === 'function') {
  8314. htmlForm.push(vObjCol.searchList.call(this, vObjCol));
  8315. } else {
  8316. var optionList = [sprintf('<option value="">%s</option>', that.options.formatCommonChoose())];
  8317. if (typeof vObjCol.searchList === 'object' && typeof vObjCol.searchList.then === 'function') {
  8318. (function (vObjCol, that) {
  8319. $.when(vObjCol.searchList).done(function (ret) {
  8320. var searchList = [];
  8321. if (ret.data && ret.data.searchlist && $.isArray(ret.data.searchlist)) {
  8322. searchList = ret.data.searchlist;
  8323. } else if (ret.constructor === Array || ret.constructor === Object) {
  8324. searchList = ret;
  8325. }
  8326. var optionList = createOptionList(searchList, vObjCol, that);
  8327. $("form.form-commonsearch select[name='" + vObjCol.field + "']", that.$container).html(optionList.join(''));
  8328. });
  8329. })(vObjCol, that);
  8330. } else {
  8331. optionList = createOptionList(vObjCol.searchList, vObjCol, that);
  8332. }
  8333. htmlForm.push(sprintf('<select class="%s" name="%s" %s %s>%s</select>', addClass, vObjCol.field, style, extend, optionList.join('')));
  8334. }
  8335. } else {
  8336. var placeholder = typeof vObjCol.placeholder === 'undefined' ? vObjCol.title : vObjCol.placeholder;
  8337. var type = typeof vObjCol.type === 'undefined' ? 'text' : vObjCol.type;
  8338. var defaultValue = typeof vObjCol.defaultValue === 'undefined' ? '' : vObjCol.defaultValue;
  8339. if (/BETWEEN$/.test(vObjCol.operate)) {
  8340. var defaultValueArr = defaultValue.toString().match(/\|/) ? defaultValue.split('|') : ['', ''];
  8341. var placeholderArr = placeholder.toString().match(/\|/) ? placeholder.split('|') : [placeholder, placeholder];
  8342. htmlForm.push('<div class="row row-between">');
  8343. htmlForm.push(sprintf('<div class="col-xs-6"><input type="%s" class="%s" name="%s" value="%s" placeholder="%s" id="%s" data-index="%s" %s %s></div>', type, addClass, vObjCol.field, defaultValueArr[0], placeholderArr[0], vObjCol.field, i, style, extend));
  8344. htmlForm.push(sprintf('<div class="col-xs-6"><input type="%s" class="%s" name="%s" value="%s" placeholder="%s" id="%s" data-index="%s" %s %s></div>', type, addClass, vObjCol.field, defaultValueArr[1], placeholderArr[1], vObjCol.field, i, style, extend));
  8345. htmlForm.push('</div>');
  8346. } else {
  8347. htmlForm.push(sprintf('<input type="%s" class="%s" name="%s" value="%s" placeholder="%s" id="%s" data-index="%s" %s %s>', type, addClass, vObjCol.field, defaultValue, placeholder, vObjCol.field, i, style, extend));
  8348. }
  8349. }
  8350. htmlForm.push('</div>');
  8351. htmlForm.push('</div>');
  8352. }
  8353. }
  8354. htmlForm.push('<div class="form-group col-xs-12 col-sm-6 col-md-4 col-lg-3">');
  8355. htmlForm.push(createFormBtn(that).join(''));
  8356. htmlForm.push('</div>');
  8357. htmlForm.push('</div>');
  8358. htmlForm.push('</fieldset>');
  8359. htmlForm.push('</form>');
  8360. return htmlForm.join('');
  8361. };
  8362. var createFormBtn = function (that) {
  8363. var htmlBtn = [];
  8364. var searchSubmit = that.options.formatCommonSubmitButton();
  8365. var searchReset = that.options.formatCommonResetButton();
  8366. htmlBtn.push('<div class="col-sm-8 col-xs-offset-4">');
  8367. htmlBtn.push(sprintf('<button type="submit" class="btn btn-success" formnovalidate>%s</button> ', searchSubmit));
  8368. htmlBtn.push(sprintf('<button type="reset" class="btn btn-default" >%s</button> ', searchReset));
  8369. htmlBtn.push('</div>');
  8370. return htmlBtn;
  8371. };
  8372. var createOptionList = function (searchList, vObjCol, that) {
  8373. var isArray = searchList.constructor === Array;
  8374. var optionList = [];
  8375. optionList.push(sprintf('<option value="">%s</option>', that.options.formatCommonChoose()));
  8376. $.each(searchList, function (key, value) {
  8377. if (value.constructor === Object) {
  8378. key = value.id;
  8379. value = value.name;
  8380. } else {
  8381. key = isArray ? value : key;
  8382. }
  8383. optionList.push(sprintf("<option value='" + key + "' %s>" + value + "</option>", key == vObjCol.defaultValue ? 'selected' : ''));
  8384. });
  8385. return optionList;
  8386. };
  8387. var isSearchAvailble = function (that) {
  8388. //只支持服务端搜索
  8389. if (!that.options.commonSearch || that.options.sidePagination != 'server' || !that.options.url) {
  8390. return false;
  8391. }
  8392. return true;
  8393. };
  8394. var getSearchQuery = function (that, removeempty) {
  8395. var op = {};
  8396. var filter = {};
  8397. var value = '';
  8398. $("form.form-commonsearch .operate", that.$commonsearch).each(function (i) {
  8399. var name = $(this).data("name");
  8400. var sym = $(this).is("select") ? $("option:selected", this).val() : $(this).val().toUpperCase();
  8401. var obj = $("[name='" + name + "']", that.$commonsearch);
  8402. if (obj.size() == 0)
  8403. return true;
  8404. var vObjCol = ColumnsForSearch[i];
  8405. var process = !that.options.searchFormTemplate && vObjCol && typeof vObjCol.process == 'function' ? vObjCol.process : null;
  8406. if (obj.size() > 1) {
  8407. if (/BETWEEN$/.test(sym)) {
  8408. var value_begin = $.trim($("[name='" + name + "']:first", that.$commonsearch).val()),
  8409. value_end = $.trim($("[name='" + name + "']:last", that.$commonsearch).val());
  8410. if (value_begin.length || value_end.length) {
  8411. if (process) {
  8412. value_begin = process(value_begin, 'begin');
  8413. value_end = process(value_end, 'end');
  8414. }
  8415. value = value_begin + ',' + value_end;
  8416. } else {
  8417. value = '';
  8418. }
  8419. //如果是时间筛选,将operate置为RANGE
  8420. if ($("[name='" + name + "']:first", that.$commonsearch).hasClass("datetimepicker")) {
  8421. sym = 'RANGE';
  8422. }
  8423. } else {
  8424. value = $("[name='" + name + "']:checked", that.$commonsearch).val();
  8425. value = process ? process(value) : value;
  8426. }
  8427. } else {
  8428. value = process ? process(obj.val()) : obj.val();
  8429. }
  8430. if (removeempty && (value == '' || value == null || ($.isArray(value) && value.length == 0)) && !sym.match(/null/i)) {
  8431. return true;
  8432. }
  8433. op[name] = sym;
  8434. filter[name] = value;
  8435. });
  8436. return {op: op, filter: filter};
  8437. };
  8438. var getQueryParams = function (params, searchQuery, removeempty) {
  8439. params.filter = typeof params.filter === 'Object' ? params.filter : (params.filter ? JSON.parse(params.filter) : {});
  8440. params.op = typeof params.op === 'Object' ? params.op : (params.op ? JSON.parse(params.op) : {});
  8441. params.filter = $.extend({}, params.filter, searchQuery.filter);
  8442. params.op = $.extend({}, params.op, searchQuery.op);
  8443. //移除empty的值
  8444. if (removeempty) {
  8445. $.each(params.filter, function (i, j) {
  8446. if ((j == '' || j == null || ($.isArray(j) && j.length == 0)) && !params.op[i].match(/null/i)) {
  8447. delete params.filter[i];
  8448. delete params.op[i];
  8449. }
  8450. });
  8451. }
  8452. params.filter = JSON.stringify(params.filter);
  8453. params.op = JSON.stringify(params.op);
  8454. return params;
  8455. };
  8456. $.extend($.fn.bootstrapTable.defaults, {
  8457. commonSearch: false,
  8458. titleForm: "Common search",
  8459. actionForm: "",
  8460. searchFormTemplate: "",
  8461. searchFormVisible: true,
  8462. searchClass: 'searchit',
  8463. showSearch: true,
  8464. renderDefault: true,
  8465. onCommonSearch: function (field, text) {
  8466. return false;
  8467. },
  8468. onPostCommonSearch: function (table) {
  8469. return false;
  8470. }
  8471. });
  8472. $.extend($.fn.bootstrapTable.defaults.icons, {
  8473. commonSearchIcon: 'glyphicon-search'
  8474. });
  8475. $.extend($.fn.bootstrapTable.Constructor.EVENTS, {
  8476. 'common-search.bs.table': 'onCommonSearch',
  8477. 'post-common-search.bs.table': 'onPostCommonSearch'
  8478. });
  8479. $.extend($.fn.bootstrapTable.locales[$.fn.bootstrapTable.defaults.locale], {
  8480. formatCommonSearch: function () {
  8481. return "Common search";
  8482. },
  8483. formatCommonSubmitButton: function () {
  8484. return "Submit";
  8485. },
  8486. formatCommonResetButton: function () {
  8487. return "Reset";
  8488. },
  8489. formatCommonCloseButton: function () {
  8490. return "Close";
  8491. },
  8492. formatCommonChoose: function () {
  8493. return "Choose";
  8494. }
  8495. });
  8496. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales);
  8497. var BootstrapTable = $.fn.bootstrapTable.Constructor,
  8498. _initHeader = BootstrapTable.prototype.initHeader,
  8499. _initToolbar = BootstrapTable.prototype.initToolbar,
  8500. _load = BootstrapTable.prototype.load,
  8501. _initSearch = BootstrapTable.prototype.initSearch;
  8502. BootstrapTable.prototype.initHeader = function () {
  8503. _initHeader.apply(this, Array.prototype.slice.apply(arguments));
  8504. this.$header.find('th[data-field]').each(function (i) {
  8505. var column = $(this).data();
  8506. if (typeof column['width'] !== 'undefined') {
  8507. $(this).css("min-width", column['width']);
  8508. }
  8509. });
  8510. };
  8511. BootstrapTable.prototype.initToolbar = function () {
  8512. _initToolbar.apply(this, Array.prototype.slice.apply(arguments));
  8513. if (!isSearchAvailble(this)) {
  8514. return;
  8515. }
  8516. var that = this,
  8517. html = [];
  8518. if (that.options.showSearch) {
  8519. html.push(sprintf('<div class="columns-%s pull-%s" style="margin-top:10px;margin-bottom:10px;">', this.options.buttonsAlign, this.options.buttonsAlign));
  8520. html.push(sprintf('<button class="btn btn-default%s' + '" type="button" name="commonSearch" title="%s">', that.options.iconSize === undefined ? '' : ' btn-' + that.options.iconSize, that.options.formatCommonSearch()));
  8521. html.push(sprintf('<i class="%s %s"></i>', that.options.iconsPrefix, that.options.icons.commonSearchIcon))
  8522. html.push('</button></div>');
  8523. }
  8524. if (that.$toolbar.find(".pull-right").size() > 0) {
  8525. $(html.join('')).insertBefore(that.$toolbar.find(".pull-right:first"));
  8526. } else {
  8527. that.$toolbar.append(html.join(''));
  8528. }
  8529. initCommonSearch(that.columns, that);
  8530. that.$toolbar.find('button[name="commonSearch"]')
  8531. .off('click').on('click', function () {
  8532. that.$commonsearch.toggleClass("hidden");
  8533. return;
  8534. });
  8535. that.$container.on("click", "." + that.options.searchClass, function () {
  8536. var obj = $("form [name='" + $(this).data("field") + "']", that.$commonsearch);
  8537. if (obj.size() > 0) {
  8538. var value = $(this).data("value");
  8539. if (obj.is("select")) {
  8540. $("option[value='" + value + "']", obj).prop("selected", true);
  8541. } else if (obj.size() > 1) {
  8542. $("form [name='" + $(this).data("field") + "'][value='" + value + "']", that.$commonsearch).prop("checked", true);
  8543. } else {
  8544. obj.val(value);
  8545. }
  8546. obj.trigger("change");
  8547. $("form", that.$commonsearch).trigger("submit");
  8548. }
  8549. });
  8550. var queryParams = that.options.queryParams;
  8551. //匹配默认搜索值
  8552. this.options.queryParams = function (params) {
  8553. return queryParams(getQueryParams(params, getSearchQuery(that, true)));
  8554. };
  8555. this.trigger('post-common-search', that);
  8556. };
  8557. BootstrapTable.prototype.onCommonSearch = function () {
  8558. var searchQuery = getSearchQuery(this);
  8559. this.trigger('common-search', this, searchQuery);
  8560. this.options.pageNumber = 1;
  8561. //this.options.pageSize = $.fn.bootstrapTable.defaults.pageSize;
  8562. this.refresh({});
  8563. };
  8564. BootstrapTable.prototype.load = function (data) {
  8565. _load.apply(this, Array.prototype.slice.apply(arguments));
  8566. if (!isSearchAvailble(this)) {
  8567. return;
  8568. }
  8569. };
  8570. BootstrapTable.prototype.initSearch = function () {
  8571. _initSearch.apply(this, Array.prototype.slice.apply(arguments));
  8572. if (!isSearchAvailble(this)) {
  8573. return;
  8574. }
  8575. var that = this;
  8576. var fp = $.isEmptyObject(this.filterColumnsPartial) ? null : this.filterColumnsPartial;
  8577. this.data = fp ? $.grep(this.data, function (item, i) {
  8578. for (var key in fp) {
  8579. var fval = fp[key].toLowerCase();
  8580. var value = item[key];
  8581. value = $.fn.bootstrapTable.utils.calculateObjectValue(that.header,
  8582. that.header.formatters[$.inArray(key, that.header.fields)],
  8583. [value, item, i], value);
  8584. if (!($.inArray(key, that.header.fields) !== -1 &&
  8585. (typeof value === 'string' || typeof value === 'number') &&
  8586. (value + '').toLowerCase().indexOf(fval) !== -1)) {
  8587. return false;
  8588. }
  8589. }
  8590. return true;
  8591. }) : this.data;
  8592. };
  8593. }(jQuery);
  8594. define("bootstrap-table-commonsearch", ["bootstrap-table"], (function (global) {
  8595. return function () {
  8596. var ret, fn;
  8597. return ret || global.$.fn.bootstrapTable.defaults;
  8598. };
  8599. }(this)));
  8600. /**
  8601. * 将BootstrapTable的行使用自定义的模板来渲染
  8602. *
  8603. * @author: karson
  8604. * @version: v0.0.1
  8605. *
  8606. * @update 2017-06-24 <http://github.com/karsonzhang/fastadmin>
  8607. */
  8608. !function ($) {
  8609. 'use strict';
  8610. $.extend($.fn.bootstrapTable.defaults, {
  8611. //是否启用模板渲染
  8612. templateView: false,
  8613. //数据格式化的模板ID或格式函数
  8614. templateFormatter: "itemtpl",
  8615. //添加的父类的class
  8616. templateParentClass: "row row-flex",
  8617. //向table添加的class
  8618. templateTableClass: "table-template",
  8619. });
  8620. var BootstrapTable = $.fn.bootstrapTable.Constructor,
  8621. _initContainer = BootstrapTable.prototype.initContainer,
  8622. _initBody = BootstrapTable.prototype.initBody,
  8623. _initRow = BootstrapTable.prototype.initRow;
  8624. BootstrapTable.prototype.initContainer = function () {
  8625. _initContainer.apply(this, Array.prototype.slice.apply(arguments));
  8626. var that = this;
  8627. if (!that.options.templateView) {
  8628. return;
  8629. }
  8630. that.options.cardView = true;
  8631. };
  8632. BootstrapTable.prototype.initBody = function () {
  8633. var that = this;
  8634. $.extend(that.options, {
  8635. showHeader: !that.options.templateView ? $.fn.bootstrapTable.defaults.showHeader : false,
  8636. showFooter: !that.options.templateView ? $.fn.bootstrapTable.defaults.showFooter : false,
  8637. });
  8638. $(that.$el).toggleClass(that.options.templateTableClass, that.options.templateView);
  8639. _initBody.apply(this, Array.prototype.slice.apply(arguments));
  8640. if (!that.options.templateView) {
  8641. return;
  8642. } else {
  8643. //由于Bootstrap是基于Table的,添加一个父类容器
  8644. $("> *:not(.no-records-found)", that.$body).wrapAll($("<div />").addClass(that.options.templateParentClass));
  8645. }
  8646. };
  8647. BootstrapTable.prototype.initRow = function (item, i, data, parentDom) {
  8648. var that = this;
  8649. //如果未启用则使用原生的initRow方法
  8650. if (!that.options.templateView) {
  8651. return _initRow.apply(that, Array.prototype.slice.apply(arguments));
  8652. }
  8653. var $content = '';
  8654. if (typeof that.options.templateFormatter === 'function') {
  8655. $content = that.options.templateFormatter.call(that, item, i, data);
  8656. } else {
  8657. var Template = require('template');
  8658. $content = Template(that.options.templateFormatter, {item: item, i: i, data: data});
  8659. }
  8660. return $content;
  8661. };
  8662. }(jQuery);
  8663. define("bootstrap-table-template", ["bootstrap-table","template"], (function (global) {
  8664. return function () {
  8665. var ret, fn;
  8666. return ret || global.$.fn.bootstrapTable.defaults;
  8667. };
  8668. }(this)));
  8669. define('table',['jquery', 'bootstrap', 'moment', 'moment/locale/zh-cn', 'bootstrap-table', 'bootstrap-table-lang', 'bootstrap-table-export', 'bootstrap-table-commonsearch', 'bootstrap-table-template'], function ($, undefined, Moment) {
  8670. var Table = {
  8671. list: {},
  8672. // Bootstrap-table 基础配置
  8673. defaults: {
  8674. url: '',
  8675. sidePagination: 'server',
  8676. method: 'get', //请求方法
  8677. toolbar: ".toolbar", //工具栏
  8678. search: true, //是否启用快速搜索
  8679. cache: false,
  8680. commonSearch: true, //是否启用通用搜索
  8681. searchFormVisible: false, //是否始终显示搜索表单
  8682. titleForm: '', //为空则不显示标题,不定义默认显示:普通搜索
  8683. idTable: 'commonTable',
  8684. showExport: true,
  8685. exportDataType: "all",
  8686. exportTypes: ['json', 'xml', 'csv', 'txt', 'doc', 'excel'],
  8687. exportOptions: {
  8688. fileName: 'export_' + Moment().format("YYYY-MM-DD"),
  8689. ignoreColumn: [0, 'operate'] //默认不导出第一列(checkbox)与操作(operate)列
  8690. },
  8691. pageSize: 10,
  8692. pageList: [10, 25, 50, 'All'],
  8693. pagination: true,
  8694. clickToSelect: true, //是否启用点击选中
  8695. dblClickToEdit: true, //是否启用双击编辑
  8696. singleSelect: false, //是否启用单选
  8697. showRefresh: false,
  8698. locale: 'zh-CN',
  8699. showToggle: true,
  8700. showColumns: true,
  8701. pk: 'id',
  8702. sortName: 'id',
  8703. sortOrder: 'desc',
  8704. paginationFirstText: __("First"),
  8705. paginationPreText: __("Previous"),
  8706. paginationNextText: __("Next"),
  8707. paginationLastText: __("Last"),
  8708. cardView: false, //卡片视图
  8709. checkOnInit: true, //是否在初始化时判断
  8710. escape: true, //是否对内容进行转义
  8711. extend: {
  8712. index_url: '',
  8713. add_url: '',
  8714. edit_url: '',
  8715. del_url: '',
  8716. import_url: '',
  8717. multi_url: '',
  8718. dragsort_url: 'ajax/weigh',
  8719. }
  8720. },
  8721. // Bootstrap-table 列配置
  8722. columnDefaults: {
  8723. align: 'center',
  8724. valign: 'middle',
  8725. },
  8726. config: {
  8727. firsttd: 'tbody tr td:first-child:not(:has(div.card-views))',
  8728. toolbar: '.toolbar',
  8729. refreshbtn: '.btn-refresh',
  8730. addbtn: '.btn-add',
  8731. editbtn: '.btn-edit',
  8732. delbtn: '.btn-del',
  8733. importbtn: '.btn-import',
  8734. multibtn: '.btn-multi',
  8735. disabledbtn: '.btn-disabled',
  8736. editonebtn: '.btn-editone',
  8737. restoreonebtn: '.btn-restoreone',
  8738. destroyonebtn: '.btn-destroyone',
  8739. restoreallbtn: '.btn-restoreall',
  8740. destroyallbtn: '.btn-destroyall',
  8741. dragsortfield: 'weigh',
  8742. },
  8743. api: {
  8744. init: function (defaults, columnDefaults, locales) {
  8745. defaults = defaults ? defaults : {};
  8746. columnDefaults = columnDefaults ? columnDefaults : {};
  8747. locales = locales ? locales : {};
  8748. // 如果是iOS设备则启用卡片视图
  8749. if (navigator.userAgent.match(/(iPod|iPhone|iPad)/)) {
  8750. Table.defaults.cardView = true;
  8751. }
  8752. // 写入bootstrap-table默认配置
  8753. $.extend(true, $.fn.bootstrapTable.defaults, Table.defaults, defaults);
  8754. // 写入bootstrap-table column配置
  8755. $.extend($.fn.bootstrapTable.columnDefaults, Table.columnDefaults, columnDefaults);
  8756. // 写入bootstrap-table locale配置
  8757. $.extend($.fn.bootstrapTable.locales[Table.defaults.locale], {
  8758. formatCommonSearch: function () {
  8759. return __('Common search');
  8760. },
  8761. formatCommonSubmitButton: function () {
  8762. return __('Submit');
  8763. },
  8764. formatCommonResetButton: function () {
  8765. return __('Reset');
  8766. },
  8767. formatCommonCloseButton: function () {
  8768. return __('Close');
  8769. },
  8770. formatCommonChoose: function () {
  8771. return __('Choose');
  8772. }
  8773. }, locales);
  8774. },
  8775. // 绑定事件
  8776. bindevent: function (table) {
  8777. //Bootstrap-table的父元素,包含table,toolbar,pagnation
  8778. var parenttable = table.closest('.bootstrap-table');
  8779. //Bootstrap-table配置
  8780. var options = table.bootstrapTable('getOptions');
  8781. //Bootstrap操作区
  8782. var toolbar = $(options.toolbar, parenttable);
  8783. //当刷新表格时
  8784. table.on('load-error.bs.table', function (status, res, e) {
  8785. if (e.status === 0) {
  8786. return;
  8787. }
  8788. Toastr.error(__('Unknown data format'));
  8789. });
  8790. //当刷新表格时
  8791. table.on('refresh.bs.table', function (e, settings, data) {
  8792. $(Table.config.refreshbtn, toolbar).find(".fa").addClass("fa-spin");
  8793. });
  8794. if (options.dblClickToEdit) {
  8795. //当双击单元格时
  8796. table.on('dbl-click-row.bs.table', function (e, row, element, field) {
  8797. $(Table.config.editonebtn, element).trigger("click");
  8798. });
  8799. }
  8800. //当内容渲染完成后
  8801. table.on('post-body.bs.table', function (e, settings, json, xhr) {
  8802. $(Table.config.refreshbtn, toolbar).find(".fa").removeClass("fa-spin");
  8803. $(Table.config.disabledbtn, toolbar).toggleClass('disabled', true);
  8804. if ($(Table.config.firsttd, table).find("input[type='checkbox'][data-index]").size() > 0) {
  8805. // 挺拽选择,需要重新绑定事件
  8806. require(['drag', 'drop'], function () {
  8807. $(Table.config.firsttd, table).drag("start", function (ev, dd) {
  8808. return $('<div class="selection" />').css('opacity', .65).appendTo(document.body);
  8809. }).drag(function (ev, dd) {
  8810. $(dd.proxy).css({
  8811. top: Math.min(ev.pageY, dd.startY),
  8812. left: Math.min(ev.pageX, dd.startX),
  8813. height: Math.abs(ev.pageY - dd.startY),
  8814. width: Math.abs(ev.pageX - dd.startX)
  8815. });
  8816. }).drag("end", function (ev, dd) {
  8817. $(dd.proxy).remove();
  8818. });
  8819. $(Table.config.firsttd, table).drop("start", function () {
  8820. Table.api.toggleattr(this);
  8821. }).drop(function () {
  8822. Table.api.toggleattr(this);
  8823. }).drop("end", function () {
  8824. Table.api.toggleattr(this);
  8825. });
  8826. $.drop({
  8827. multi: true
  8828. });
  8829. });
  8830. }
  8831. });
  8832. // 处理选中筛选框后按钮的状态统一变更
  8833. table.on('check.bs.table uncheck.bs.table check-all.bs.table uncheck-all.bs.table', function () {
  8834. var ids = Table.api.selectedids(table);
  8835. $(Table.config.disabledbtn, toolbar).toggleClass('disabled', !ids.length);
  8836. });
  8837. // 绑定TAB事件
  8838. $('.panel-heading ul[data-field] li a[data-toggle="tab"]').on('shown.bs.tab', function (e) {
  8839. var field = $(this).closest("ul").data("field");
  8840. var value = $(this).data("value");
  8841. $("select[name='" + field + "'] option[value='" + value + "']", table.closest(".bootstrap-table").find(".commonsearch-table")).prop("selected", true);
  8842. table.bootstrapTable('refresh', {});
  8843. return false;
  8844. });
  8845. // 刷新按钮事件
  8846. $(toolbar).on('click', Table.config.refreshbtn, function () {
  8847. table.bootstrapTable('refresh');
  8848. });
  8849. // 添加按钮事件
  8850. $(toolbar).on('click', Table.config.addbtn, function () {
  8851. var ids = Table.api.selectedids(table);
  8852. var url = options.extend.add_url;
  8853. if (url.indexOf("{ids}") !== -1) {
  8854. url = Table.api.replaceurl(url, {ids: ids.length > 0 ? ids.join(",") : 0}, table);
  8855. }
  8856. Fast.api.open(url, __('Add'), $(this).data() || {});
  8857. });
  8858. // 导入按钮事件
  8859. if ($(Table.config.importbtn, toolbar).size() > 0) {
  8860. require(['upload'], function (Upload) {
  8861. Upload.api.plupload($(Table.config.importbtn, toolbar), function (data, ret) {
  8862. Fast.api.ajax({
  8863. url: options.extend.import_url,
  8864. data: {file: data.url},
  8865. }, function (data, ret) {
  8866. table.bootstrapTable('refresh');
  8867. });
  8868. });
  8869. });
  8870. }
  8871. // 批量编辑按钮事件
  8872. $(toolbar).on('click', Table.config.editbtn, function () {
  8873. var that = this;
  8874. //循环弹出多个编辑框
  8875. $.each(table.bootstrapTable('getSelections'), function (index, row) {
  8876. var url = options.extend.edit_url;
  8877. row = $.extend({}, row ? row : {}, {ids: row[options.pk]});
  8878. var url = Table.api.replaceurl(url, row, table);
  8879. Fast.api.open(url, __('Edit'), $(that).data() || {});
  8880. });
  8881. });
  8882. //清空回收站
  8883. $(document).on('click', Table.config.destroyallbtn, function () {
  8884. var that = this;
  8885. Layer.confirm(__('Are you sure you want to truncate?'), function () {
  8886. var url = $(that).data("url") ? $(that).data("url") : $(that).attr("href");
  8887. Fast.api.ajax(url, function () {
  8888. Layer.closeAll();
  8889. table.bootstrapTable('refresh');
  8890. }, function () {
  8891. Layer.closeAll();
  8892. });
  8893. });
  8894. return false;
  8895. });
  8896. //还原或删除
  8897. $(document).on('click', Table.config.restoreallbtn + ',' + Table.config.restoreonebtn + ',' + Table.config.destroyonebtn, function () {
  8898. var that = this;
  8899. var url = $(that).data("url") ? $(that).data("url") : $(that).attr("href");
  8900. Fast.api.ajax(url, function () {
  8901. table.bootstrapTable('refresh');
  8902. });
  8903. return false;
  8904. });
  8905. // 批量操作按钮事件
  8906. $(toolbar).on('click', Table.config.multibtn, function () {
  8907. var ids = Table.api.selectedids(table);
  8908. Table.api.multi($(this).data("action"), ids, table, this);
  8909. });
  8910. // 批量删除按钮事件
  8911. $(toolbar).on('click', Table.config.delbtn, function () {
  8912. var that = this;
  8913. var ids = Table.api.selectedids(table);
  8914. Layer.confirm(
  8915. __('Are you sure you want to delete the %s selected item?', ids.length),
  8916. {icon: 3, title: __('Warning'), offset: 0, shadeClose: true},
  8917. function (index) {
  8918. Table.api.multi("del", ids, table, that);
  8919. Layer.close(index);
  8920. }
  8921. );
  8922. });
  8923. // 拖拽排序
  8924. require(['dragsort'], function () {
  8925. //绑定拖动排序
  8926. $("tbody", table).dragsort({
  8927. itemSelector: 'tr:visible',
  8928. dragSelector: "a.btn-dragsort",
  8929. dragEnd: function (a, b) {
  8930. var element = $("a.btn-dragsort", this);
  8931. var data = table.bootstrapTable('getData');
  8932. var current = data[parseInt($(this).data("index"))];
  8933. var options = table.bootstrapTable('getOptions');
  8934. //改变的值和改变的ID集合
  8935. var ids = $.map($("tbody tr:visible", table), function (tr) {
  8936. return data[parseInt($(tr).data("index"))][options.pk];
  8937. });
  8938. var changeid = current[options.pk];
  8939. var pid = typeof current.pid != 'undefined' ? current.pid : '';
  8940. var params = {
  8941. url: table.bootstrapTable('getOptions').extend.dragsort_url,
  8942. data: {
  8943. ids: ids.join(','),
  8944. changeid: changeid,
  8945. pid: pid,
  8946. field: Table.config.dragsortfield,
  8947. orderway: options.sortOrder,
  8948. table: options.extend.table
  8949. }
  8950. };
  8951. Fast.api.ajax(params, function (data, ret) {
  8952. var success = $(element).data("success") || $.noop;
  8953. if (typeof success === 'function') {
  8954. if (false === success.call(element, data, ret)) {
  8955. return false;
  8956. }
  8957. }
  8958. table.bootstrapTable('refresh');
  8959. }, function (data, ret) {
  8960. var error = $(element).data("error") || $.noop;
  8961. if (typeof error === 'function') {
  8962. if (false === error.call(element, data, ret)) {
  8963. return false;
  8964. }
  8965. }
  8966. table.bootstrapTable('refresh');
  8967. });
  8968. },
  8969. placeHolderTemplate: ""
  8970. });
  8971. });
  8972. $(table).on("click", "input[data-id][name='checkbox']", function (e) {
  8973. var ids = $(this).data("id");
  8974. var row = Table.api.getrowbyid(table, ids);
  8975. table.trigger('check.bs.table', [row, this]);
  8976. });
  8977. $(table).on("click", "[data-id].btn-change", function (e) {
  8978. e.preventDefault();
  8979. Table.api.multi($(this).data("action") ? $(this).data("action") : '', [$(this).data("id")], table, this);
  8980. });
  8981. $(table).on("click", "[data-id].btn-edit", function (e) {
  8982. e.preventDefault();
  8983. var ids = $(this).data("id");
  8984. var row = Table.api.getrowbyid(table, ids);
  8985. row.ids = ids;
  8986. var url = Table.api.replaceurl(options.extend.edit_url, row, table);
  8987. Fast.api.open(url, __('Edit'), $(this).data() || {});
  8988. });
  8989. $(table).on("click", "[data-id].btn-del", function (e) {
  8990. e.preventDefault();
  8991. var id = $(this).data("id");
  8992. var that = this;
  8993. Layer.confirm(
  8994. __('Are you sure you want to delete this item?'),
  8995. {icon: 3, title: __('Warning'), shadeClose: true},
  8996. function (index) {
  8997. Table.api.multi("del", id, table, that);
  8998. Layer.close(index);
  8999. }
  9000. );
  9001. });
  9002. var id = table.attr("id");
  9003. Table.list[id] = table;
  9004. return table;
  9005. },
  9006. // 批量操作请求
  9007. multi: function (action, ids, table, element) {
  9008. var options = table.bootstrapTable('getOptions');
  9009. var data = element ? $(element).data() : {};
  9010. var ids = ($.isArray(ids) ? ids.join(",") : ids);
  9011. var url = typeof data.url !== "undefined" ? data.url : (action == "del" ? options.extend.del_url : options.extend.multi_url);
  9012. url = this.replaceurl(url, {ids: ids}, table);
  9013. var params = typeof data.params !== "undefined" ? (typeof data.params == 'object' ? $.param(data.params) : data.params) : '';
  9014. var options = {url: url, data: {action: action, ids: ids, params: params}};
  9015. Fast.api.ajax(options, function (data, ret) {
  9016. var success = $(element).data("success") || $.noop;
  9017. if (typeof success === 'function') {
  9018. if (false === success.call(element, data, ret)) {
  9019. return false;
  9020. }
  9021. }
  9022. table.bootstrapTable('refresh');
  9023. }, function (data, ret) {
  9024. var error = $(element).data("error") || $.noop;
  9025. if (typeof error === 'function') {
  9026. if (false === error.call(element, data, ret)) {
  9027. return false;
  9028. }
  9029. }
  9030. });
  9031. },
  9032. // 单元格元素事件
  9033. events: {
  9034. operate: {
  9035. 'click .btn-editone': function (e, value, row, index) {
  9036. e.stopPropagation();
  9037. e.preventDefault();
  9038. var table = $(this).closest('table');
  9039. var options = table.bootstrapTable('getOptions');
  9040. var ids = row[options.pk];
  9041. row = $.extend({}, row ? row : {}, {ids: ids});
  9042. var url = options.extend.edit_url;
  9043. Fast.api.open(Table.api.replaceurl(url, row, table), __('Edit'), $(this).data() || {});
  9044. },
  9045. 'click .btn-delone': function (e, value, row, index) {
  9046. e.stopPropagation();
  9047. e.preventDefault();
  9048. var that = this;
  9049. var top = $(that).offset().top - $(window).scrollTop();
  9050. var left = $(that).offset().left - $(window).scrollLeft() - 260;
  9051. if (top + 154 > $(window).height()) {
  9052. top = top - 154;
  9053. }
  9054. if ($(window).width() < 480) {
  9055. top = left = undefined;
  9056. }
  9057. Layer.confirm(
  9058. __('Are you sure you want to delete this item?'),
  9059. {icon: 3, title: __('Warning'), offset: [top, left], shadeClose: true},
  9060. function (index) {
  9061. var table = $(that).closest('table');
  9062. var options = table.bootstrapTable('getOptions');
  9063. Table.api.multi("del", row[options.pk], table, that);
  9064. Layer.close(index);
  9065. }
  9066. );
  9067. }
  9068. },//单元格图片预览
  9069. image: {
  9070. 'click .img-center': function (e, value, row, index) {
  9071. var data = [];
  9072. value = value.split(",");
  9073. $.each(value, function (index, value) {
  9074. data.push({
  9075. src: Fast.api.cdnurl(value),
  9076. });
  9077. });
  9078. Layer.photos({
  9079. photos: {
  9080. "data": data
  9081. },
  9082. anim: 5 //0-6的选择,指定弹出图片动画类型,默认随机(请注意,3.0之前的版本用shift参数)
  9083. });
  9084. },
  9085. }
  9086. },
  9087. // 单元格数据格式化
  9088. formatter: {
  9089. icon: function (value, row, index) {
  9090. if (!value)
  9091. return '';
  9092. value = value === null ? '' : value.toString();
  9093. value = value.indexOf(" ") > -1 ? value : "fa fa-" + value;
  9094. //渲染fontawesome图标
  9095. return '<i class="' + value + '"></i> ' + value;
  9096. },
  9097. image: function (value, row, index) {
  9098. value = value ? value : '/assets/img/blank.gif';
  9099. var classname = typeof this.classname !== 'undefined' ? this.classname : 'img-sm img-center';
  9100. return '<a href="javascript:void(0)" target="_blank"><img class="' + classname + '" src="' + Fast.api.cdnurl(value) + '" /></a>';
  9101. },
  9102. images: function (value, row, index) {
  9103. value = value === null ? '' : value.toString();
  9104. var classname = typeof this.classname !== 'undefined' ? this.classname : 'img-sm img-center';
  9105. var arr = value.split(',');
  9106. var html = [];
  9107. $.each(arr, function (i, value) {
  9108. value = value ? value : '/assets/img/blank.gif';
  9109. html.push('<a href="javascript:void(0)" target="_blank"><img class="' + classname + '" src="' + Fast.api.cdnurl(value) + '" /></a>');
  9110. });
  9111. return html.join(' ');
  9112. },
  9113. status: function (value, row, index) {
  9114. var custom = {normal: 'success', hidden: 'gray', deleted: 'danger', locked: 'info'};
  9115. if (typeof this.custom !== 'undefined') {
  9116. custom = $.extend(custom, this.custom);
  9117. }
  9118. this.custom = custom;
  9119. this.icon = 'fa fa-circle';
  9120. return Table.api.formatter.normal.call(this, value, row, index);
  9121. },
  9122. normal: function (value, row, index) {
  9123. var colorArr = ["primary", "success", "danger", "warning", "info", "gray", "red", "yellow", "aqua", "blue", "navy", "teal", "olive", "lime", "fuchsia", "purple", "maroon"];
  9124. var custom = {};
  9125. if (typeof this.custom !== 'undefined') {
  9126. custom = $.extend(custom, this.custom);
  9127. }
  9128. value = value === null ? '' : value.toString();
  9129. var keys = typeof this.searchList === 'object' ? Object.keys(this.searchList) : [];
  9130. var index = keys.indexOf(value);
  9131. var color = value && typeof custom[value] !== 'undefined' ? custom[value] : null;
  9132. var display = index > -1 ? this.searchList[value] : null;
  9133. var icon = typeof this.icon !== 'undefined' ? this.icon : null;
  9134. if (!color) {
  9135. color = index > -1 && typeof colorArr[index] !== 'undefined' ? colorArr[index] : 'primary';
  9136. }
  9137. if (!display) {
  9138. display = __(value.charAt(0).toUpperCase() + value.slice(1));
  9139. }
  9140. var html = '<span class="text-' + color + '">' + (icon ? '<i class="' + icon + '"></i> ' : '') + display + '</span>';
  9141. if (this.operate != false) {
  9142. html = '<a href="javascript:;" class="searchit" data-toggle="tooltip" title="' + __('Click to search %s', display) + '" data-field="' + this.field + '" data-value="' + value + '">' + html + '</a>';
  9143. }
  9144. return html;
  9145. },
  9146. toggle: function (value, row, index) {
  9147. var color = typeof this.color !== 'undefined' ? this.color : 'success';
  9148. var yes = typeof this.yes !== 'undefined' ? this.yes : 1;
  9149. var no = typeof this.no !== 'undefined' ? this.no : 0;
  9150. var url = typeof this.url !== 'undefined' ? this.url : '';
  9151. return "<a href='javascript:;' data-toggle='tooltip' title='" + __('Click to toggle') + "' class='btn-change' data-id='"
  9152. + row.id + "' " + (url ? "data-url='" + url + "'" : "") + " data-params='" + this.field + "=" + (value == yes ? no : yes) + "'><i class='fa fa-toggle-on " + (value == yes ? 'text-' + color : 'fa-flip-horizontal text-gray') + " fa-2x'></i></a>";
  9153. },
  9154. url: function (value, row, index) {
  9155. return '<div class="input-group input-group-sm" style="width:250px;margin:0 auto;"><input type="text" class="form-control input-sm" value="' + value + '"><span class="input-group-btn input-group-sm"><a href="' + value + '" target="_blank" class="btn btn-default btn-sm"><i class="fa fa-link"></i></a></span></div>';
  9156. },
  9157. search: function (value, row, index) {
  9158. var field = this.field;
  9159. if (typeof this.customField !== 'undefined' && typeof row[this.customField] !== 'undefined') {
  9160. value = row[this.customField];
  9161. field = this.customField;
  9162. }
  9163. return '<a href="javascript:;" class="searchit" data-toggle="tooltip" title="' + __('Click to search %s', value) + '" data-field="' + field + '" data-value="' + value + '">' + value + '</a>';
  9164. },
  9165. addtabs: function (value, row, index) {
  9166. var url = Table.api.replaceurl(this.url, row, this.table);
  9167. var title = this.atitle ? this.atitle : __("Search %s", value);
  9168. return '<a href="' + Fast.api.fixurl(url) + '" class="addtabsit" data-value="' + value + '" title="' + title + '">' + value + '</a>';
  9169. },
  9170. dialog: function (value, row, index) {
  9171. var url = Table.api.replaceurl(this.url, row, this.table);
  9172. var title = this.atitle ? this.atitle : __("View %s", value);
  9173. return '<a href="' + Fast.api.fixurl(url) + '" class="dialogit" data-value="' + value + '" title="' + title + '">' + value + '</a>';
  9174. },
  9175. flag: function (value, row, index) {
  9176. var that = this;
  9177. value = value === null ? '' : value.toString();
  9178. var colorArr = {index: 'success', hot: 'warning', recommend: 'danger', 'new': 'info'};
  9179. //如果字段列有定义custom
  9180. if (typeof this.custom !== 'undefined') {
  9181. colorArr = $.extend(colorArr, this.custom);
  9182. }
  9183. var field = this.field;
  9184. if (typeof this.customField !== 'undefined' && typeof row[this.customField] !== 'undefined') {
  9185. value = row[this.customField];
  9186. field = this.customField;
  9187. }
  9188. //渲染Flag
  9189. var html = [];
  9190. var arr = value.split(',');
  9191. $.each(arr, function (i, value) {
  9192. value = value === null ? '' : value.toString();
  9193. if (value == '')
  9194. return true;
  9195. var color = value && typeof colorArr[value] !== 'undefined' ? colorArr[value] : 'primary';
  9196. var display = typeof that.searchList !== 'undefined' && typeof that.searchList[value] !== 'undefined' ? that.searchList[value] : __(value.charAt(0).toUpperCase() + value.slice(1));
  9197. html.push('<a href="javascript:;" class="searchit" data-toggle="tooltip" title="' + __('Click to search %s', display) + '" data-field="' + field + '" data-value="' + value + '"><span class="label label-' + color + '">' + display + '</span></a>');
  9198. });
  9199. return html.join(' ');
  9200. },
  9201. label: function (value, row, index) {
  9202. return Table.api.formatter.flag.call(this, value, row, index);
  9203. },
  9204. datetime: function (value, row, index) {
  9205. var datetimeFormat = typeof this.datetimeFormat === 'undefined' ? 'YYYY-MM-DD HH:mm:ss' : this.datetimeFormat;
  9206. if (isNaN(value)) {
  9207. return value ? Moment(value).format(datetimeFormat) : __('None');
  9208. } else {
  9209. return value ? Moment(parseInt(value) * 1000).format(datetimeFormat) : __('None');
  9210. }
  9211. },
  9212. operate: function (value, row, index) {
  9213. var table = this.table;
  9214. // 操作配置
  9215. var options = table ? table.bootstrapTable('getOptions') : {};
  9216. // 默认按钮组
  9217. var buttons = $.extend([], this.buttons || []);
  9218. // 所有按钮名称
  9219. var names = [];
  9220. buttons.forEach(function (item) {
  9221. names.push(item.name);
  9222. });
  9223. if (options.extend.dragsort_url !== '' && names.indexOf('dragsort') === -1) {
  9224. buttons.push({
  9225. name: 'dragsort',
  9226. icon: 'fa fa-arrows',
  9227. title: __('Drag to sort'),
  9228. extend: 'data-toggle="tooltip"',
  9229. classname: 'btn btn-xs btn-primary btn-dragsort'
  9230. });
  9231. }
  9232. if (options.extend.edit_url !== '' && names.indexOf('edit') === -1) {
  9233. buttons.push({
  9234. name: 'edit',
  9235. icon: 'fa fa-pencil',
  9236. title: __('Edit'),
  9237. extend: 'data-toggle="tooltip"',
  9238. classname: 'btn btn-xs btn-success btn-editone',
  9239. url: options.extend.edit_url
  9240. });
  9241. }
  9242. if (options.extend.del_url !== '' && names.indexOf('del') === -1) {
  9243. buttons.push({
  9244. name: 'del',
  9245. icon: 'fa fa-trash',
  9246. title: __('Del'),
  9247. extend: 'data-toggle="tooltip"',
  9248. classname: 'btn btn-xs btn-danger btn-delone'
  9249. });
  9250. }
  9251. return Table.api.buttonlink(this, buttons, value, row, index, 'operate');
  9252. }
  9253. ,
  9254. buttons: function (value, row, index) {
  9255. // 默认按钮组
  9256. var buttons = $.extend([], this.buttons || []);
  9257. return Table.api.buttonlink(this, buttons, value, row, index, 'buttons');
  9258. }
  9259. },
  9260. buttonlink: function (column, buttons, value, row, index, type) {
  9261. var table = column.table;
  9262. type = typeof type === 'undefined' ? 'buttons' : type;
  9263. var options = table ? table.bootstrapTable('getOptions') : {};
  9264. var html = [];
  9265. var hidden, visible, disable, url, classname, icon, text, title, refresh, confirm, extend,
  9266. dropdown, link;
  9267. var fieldIndex = column.fieldIndex;
  9268. var dropdowns = {};
  9269. $.each(buttons, function (i, j) {
  9270. if (type === 'operate') {
  9271. if (j.name === 'dragsort' && typeof row[Table.config.dragsortfield] === 'undefined') {
  9272. return true;
  9273. }
  9274. if (['add', 'edit', 'del', 'multi', 'dragsort'].indexOf(j.name) > -1 && !options.extend[j.name + "_url"]) {
  9275. return true;
  9276. }
  9277. }
  9278. var attr = table.data(type + "-" + j.name);
  9279. if (typeof attr === 'undefined' || attr) {
  9280. hidden = typeof j.hidden === 'function' ? j.hidden.call(table, row, j) : (typeof j.hidden !== 'undefined' ? j.hidden : false);
  9281. if (hidden) {
  9282. return true;
  9283. }
  9284. visible = typeof j.visible === 'function' ? j.visible.call(table, row, j) : (typeof j.visible !== 'undefined' ? j.visible : true);
  9285. if (!visible) {
  9286. return true;
  9287. }
  9288. dropdown = j.dropdown ? j.dropdown : '';
  9289. url = j.url ? j.url : '';
  9290. url = typeof url === 'function' ? url.call(table, row, j) : (url ? Fast.api.fixurl(Table.api.replaceurl(url, row, table)) : 'javascript:;');
  9291. classname = j.classname ? j.classname : 'btn-primary btn-' + name + 'one';
  9292. icon = j.icon ? j.icon : '';
  9293. text = typeof j.text === 'function' ? j.text.call(table, row, j) : j.text ? j.text : '';
  9294. title = typeof j.title === 'function' ? j.title.call(table, row, j) : j.title ? j.title : text;
  9295. refresh = j.refresh ? 'data-refresh="' + j.refresh + '"' : '';
  9296. confirm = j.confirm ? 'data-confirm="' + j.confirm + '"' : '';
  9297. extend = j.extend ? j.extend : '';
  9298. disable = typeof j.disable === 'function' ? j.disable.call(table, row, j) : (typeof j.disable !== 'undefined' ? j.disable : false);
  9299. if (disable) {
  9300. classname = classname + ' disabled';
  9301. }
  9302. link = '<a href="' + url + '" class="' + classname + '" ' + (confirm ? confirm + ' ' : '') + (refresh ? refresh + ' ' : '') + extend + ' title="' + title + '" data-table-id="' + (table ? table.attr("id") : '') + '" data-field-index="' + fieldIndex + '" data-row-index="' + index + '" data-button-index="' + i + '"><i class="' + icon + '"></i>' + (text ? ' ' + text : '') + '</a>';
  9303. if (dropdown) {
  9304. if (typeof dropdowns[dropdown] == 'undefined') {
  9305. dropdowns[dropdown] = [];
  9306. }
  9307. dropdowns[dropdown].push(link);
  9308. } else {
  9309. html.push(link);
  9310. }
  9311. }
  9312. });
  9313. if (!$.isEmptyObject(dropdowns)) {
  9314. var dropdownHtml = [];
  9315. $.each(dropdowns, function (i, j) {
  9316. dropdownHtml.push('<div class="btn-group"><button type="button" class="btn btn-primary dropdown-toggle btn-xs" data-toggle="dropdown">' + i + '</button><button type="button" class="btn btn-primary dropdown-toggle btn-xs" data-toggle="dropdown"><span class="caret"></span></button><ul class="dropdown-menu pull-right"><li>' + j.join('</li><li>') + '</li></ul></div>');
  9317. });
  9318. html.unshift(dropdownHtml);
  9319. }
  9320. return html.join(' ');
  9321. },
  9322. //替换URL中的数据
  9323. replaceurl: function (url, row, table) {
  9324. var options = table ? table.bootstrapTable('getOptions') : null;
  9325. var ids = options ? row[options.pk] : 0;
  9326. row.ids = ids ? ids : (typeof row.ids !== 'undefined' ? row.ids : 0);
  9327. //自动添加ids参数
  9328. url = !url.match(/\{ids\}/i) ? url + (url.match(/(\?|&)+/) ? "&ids=" : "/ids/") + '{ids}' : url;
  9329. url = url.replace(/\{(.*?)\}/gi, function (matched) {
  9330. matched = matched.substring(1, matched.length - 1);
  9331. if (matched.indexOf(".") !== -1) {
  9332. var temp = row;
  9333. var arr = matched.split(/\./);
  9334. for (var i = 0; i < arr.length; i++) {
  9335. if (typeof temp[arr[i]] !== 'undefined') {
  9336. temp = temp[arr[i]];
  9337. }
  9338. }
  9339. return typeof temp === 'object' ? '' : temp;
  9340. }
  9341. return row[matched];
  9342. });
  9343. return url;
  9344. },
  9345. // 获取选中的条目ID集合
  9346. selectedids: function (table) {
  9347. var options = table.bootstrapTable('getOptions');
  9348. if (options.templateView) {
  9349. return $.map($("input[data-id][name='checkbox']:checked"), function (dom) {
  9350. return $(dom).data("id");
  9351. });
  9352. } else {
  9353. return $.map(table.bootstrapTable('getSelections'), function (row) {
  9354. return row[options.pk];
  9355. });
  9356. }
  9357. },
  9358. // 切换复选框状态
  9359. toggleattr: function (table) {
  9360. $("input[type='checkbox']", table).trigger('click');
  9361. },
  9362. // 根据行索引获取行数据
  9363. getrowdata: function (table, index) {
  9364. index = parseInt(index);
  9365. var data = table.bootstrapTable('getData');
  9366. return typeof data[index] !== 'undefined' ? data[index] : null;
  9367. },
  9368. // 根据行索引获取行数据
  9369. getrowbyindex: function (table, index) {
  9370. return Table.api.getrowdata(table, index);
  9371. },
  9372. // 根据主键ID获取行数据
  9373. getrowbyid: function (table, id) {
  9374. var row = {};
  9375. var options = table.bootstrapTable("getOptions");
  9376. $.each(table.bootstrapTable('getData'), function (i, j) {
  9377. if (j[options.pk] == id) {
  9378. row = j;
  9379. return false;
  9380. }
  9381. });
  9382. return row;
  9383. }
  9384. },
  9385. };
  9386. return Table;
  9387. });
  9388. // jQuery List DragSort v0.5.2
  9389. // Website: http://dragsort.codeplex.com/
  9390. // License: http://dragsort.codeplex.com/license
  9391. (function($) {
  9392. $.fn.dragsort = function(options) {
  9393. if (options == "destroy") {
  9394. $(this.selector).trigger("dragsort-uninit");
  9395. return;
  9396. }
  9397. var opts = $.extend({}, $.fn.dragsort.defaults, options);
  9398. var lists = [];
  9399. var list = null, lastPos = null;
  9400. this.each(function(i, cont) {
  9401. //if list container is table, the browser automatically wraps rows in tbody if not specified so change list container to tbody so that children returns rows as user expected
  9402. if ($(cont).is("table") && $(cont).children().size() == 1 && $(cont).children().is("tbody"))
  9403. cont = $(cont).children().get(0);
  9404. var newList = {
  9405. draggedItem: null,
  9406. placeHolderItem: null,
  9407. pos: null,
  9408. offset: null,
  9409. offsetLimit: null,
  9410. scroll: null,
  9411. container: cont,
  9412. init: function() {
  9413. //set options to default values if not set
  9414. opts.tagName = opts.tagName == "" ? ($(this.container).children().size() == 0 ? "li" : $(this.container).children().get(0).tagName.toLowerCase()) : opts.tagName;
  9415. if (opts.itemSelector == "")
  9416. opts.itemSelector = opts.tagName;
  9417. if (opts.dragSelector == "")
  9418. opts.dragSelector = opts.tagName;
  9419. if (opts.placeHolderTemplate == "")
  9420. opts.placeHolderTemplate = "<" + opts.tagName + ">&nbsp;</" + opts.tagName + ">";
  9421. //listidx allows reference back to correct list variable instance
  9422. $(this.container).attr("data-listidx", i).mousedown(this.grabItem).bind("dragsort-uninit", this.uninit);
  9423. this.styleDragHandlers(true);
  9424. },
  9425. uninit: function() {
  9426. var list = lists[$(this).attr("data-listidx")];
  9427. $(list.container).unbind("mousedown", list.grabItem).unbind("dragsort-uninit");
  9428. list.styleDragHandlers(false);
  9429. },
  9430. getItems: function() {
  9431. return $(this.container).children(opts.itemSelector);
  9432. },
  9433. styleDragHandlers: function(cursor) {
  9434. this.getItems().map(function() { return $(this).is(opts.dragSelector) ? this : $(this).find(opts.dragSelector).get(); }).css("cursor", cursor ? "pointer" : "");
  9435. },
  9436. grabItem: function(e) {
  9437. var list = lists[$(this).attr("data-listidx")];
  9438. var item = $(e.target).closest("[data-listidx] > " + opts.tagName).get(0);
  9439. var insideMoveableItem = list.getItems().filter(function() { return this == item; }).size() > 0;
  9440. //if not left click or if clicked on excluded element (e.g. text box) or not a moveable list item return
  9441. if (e.which != 1 || $(e.target).is(opts.dragSelectorExclude) || $(e.target).closest(opts.dragSelectorExclude).size() > 0 || !insideMoveableItem)
  9442. return;
  9443. //prevents selection, stops issue on Fx where dragging hyperlink doesn't work and on IE where it triggers mousemove even though mouse hasn't moved,
  9444. //does also stop being able to click text boxes hence dragging on text boxes by default is disabled in dragSelectorExclude
  9445. //e.preventDefault();
  9446. //change cursor to move while dragging
  9447. var dragHandle = e.target;
  9448. while (!$(dragHandle).is(opts.dragSelector)) {
  9449. if (dragHandle == this) return;
  9450. dragHandle = dragHandle.parentNode;
  9451. }
  9452. $(dragHandle).attr("data-cursor", $(dragHandle).css("cursor"));
  9453. $(dragHandle).css("cursor", "move");
  9454. //on mousedown wait for movement of mouse before triggering dragsort script (dragStart) to allow clicking of hyperlinks to work
  9455. var listElem = this;
  9456. var trigger = function() {
  9457. list.dragStart.call(listElem, e);
  9458. $(list.container).unbind("mousemove", trigger);
  9459. };
  9460. $(list.container).mousemove(trigger).mouseup(function() { $(list.container).unbind("mousemove", trigger); $(dragHandle).css("cursor", $(dragHandle).attr("data-cursor")); });
  9461. },
  9462. dragStart: function(e) {
  9463. if (list != null && list.draggedItem != null)
  9464. list.dropItem();
  9465. list = lists[$(this).attr("data-listidx")];
  9466. list.draggedItem = $(e.target).closest("[data-listidx] > " + opts.tagName)
  9467. //record current position so on dragend we know if the dragged item changed position or not, not using getItems to allow dragsort to restore dragged item to original location in relation to fixed items
  9468. list.draggedItem.attr("data-origpos", $(this).attr("data-listidx") + "-" + $(list.container).children().index(list.draggedItem));
  9469. //calculate mouse offset relative to draggedItem
  9470. var mt = parseInt(list.draggedItem.css("marginTop"));
  9471. var ml = parseInt(list.draggedItem.css("marginLeft"));
  9472. list.offset = list.draggedItem.offset();
  9473. list.offset.top = e.pageY - list.offset.top + (isNaN(mt) ? 0 : mt) - 1;
  9474. list.offset.left = e.pageX - list.offset.left + (isNaN(ml) ? 0 : ml) - 1;
  9475. //calculate box the dragged item can't be dragged outside of
  9476. if (!opts.dragBetween) {
  9477. var containerHeight = $(list.container).outerHeight() == 0 ? Math.max(1, Math.round(0.5 + list.getItems().size() * list.draggedItem.outerWidth() / $(list.container).outerWidth())) * list.draggedItem.outerHeight() : $(list.container).outerHeight();
  9478. list.offsetLimit = $(list.container).offset();
  9479. list.offsetLimit.right = list.offsetLimit.left + $(list.container).outerWidth() - list.draggedItem.outerWidth();
  9480. list.offsetLimit.bottom = list.offsetLimit.top + containerHeight - list.draggedItem.outerHeight();
  9481. }
  9482. //create placeholder item
  9483. var h = list.draggedItem.height();
  9484. var w = list.draggedItem.width();
  9485. if (opts.tagName == "tr") {
  9486. list.draggedItem.children().each(function() { $(this).width($(this).width()); });
  9487. list.placeHolderItem = list.draggedItem.clone().attr("data-placeholder", true);
  9488. list.draggedItem.after(list.placeHolderItem);
  9489. //list.placeHolderItem.children().each(function() { $(this).css({ borderWidth:0, width: $(this).width() + 1, height: $(this).height() + 1 }).html("&nbsp;"); });
  9490. list.placeHolderItem.children().each(function() { $(this).html("&nbsp;"); });
  9491. } else {
  9492. list.draggedItem.after(opts.placeHolderTemplate);
  9493. list.placeHolderItem = list.draggedItem.next().css({ height: h, width: w }).attr("data-placeholder", true);
  9494. }
  9495. if (opts.tagName == "td") {
  9496. var listTable = list.draggedItem.closest("table").get(0);
  9497. $("<table id='" + listTable.id + "' style='border-width: 0px;' class='dragSortItem " + listTable.className + "'><tr></tr></table>").appendTo("body").children().append(list.draggedItem);
  9498. }
  9499. //style draggedItem while dragging
  9500. var orig = list.draggedItem.attr("style");
  9501. list.draggedItem.attr("data-origstyle", orig ? orig : "");
  9502. list.draggedItem.css({ position: "absolute", opacity: 0.8, "z-index": 999, height: h, width: w });
  9503. //auto-scroll setup
  9504. list.scroll = { moveX: 0, moveY: 0, maxX: $(document).width() - $(window).width(), maxY: $(document).height() - $(window).height() };
  9505. list.scroll.scrollY = window.setInterval(function() {
  9506. if (opts.scrollContainer != window) {
  9507. $(opts.scrollContainer).scrollTop($(opts.scrollContainer).scrollTop() + list.scroll.moveY);
  9508. return;
  9509. }
  9510. var t = $(opts.scrollContainer).scrollTop();
  9511. if (list.scroll.moveY > 0 && t < list.scroll.maxY || list.scroll.moveY < 0 && t > 0) {
  9512. $(opts.scrollContainer).scrollTop(t + list.scroll.moveY);
  9513. list.draggedItem.css("top", list.draggedItem.offset().top + list.scroll.moveY + 1);
  9514. }
  9515. }, 10);
  9516. list.scroll.scrollX = window.setInterval(function() {
  9517. if (opts.scrollContainer != window) {
  9518. $(opts.scrollContainer).scrollLeft($(opts.scrollContainer).scrollLeft() + list.scroll.moveX);
  9519. return;
  9520. }
  9521. var l = $(opts.scrollContainer).scrollLeft();
  9522. if (list.scroll.moveX > 0 && l < list.scroll.maxX || list.scroll.moveX < 0 && l > 0) {
  9523. $(opts.scrollContainer).scrollLeft(l + list.scroll.moveX);
  9524. list.draggedItem.css("left", list.draggedItem.offset().left + list.scroll.moveX + 1);
  9525. }
  9526. }, 10);
  9527. //misc
  9528. $(lists).each(function(i, l) { l.createDropTargets(); l.buildPositionTable(); });
  9529. list.setPos(e.pageX, e.pageY);
  9530. $(document).bind("mousemove", list.swapItems);
  9531. $(document).bind("mouseup", list.dropItem);
  9532. if (opts.scrollContainer != window)
  9533. $(window).bind("wheel", list.wheel);
  9534. },
  9535. //set position of draggedItem
  9536. setPos: function(x, y) {
  9537. //remove mouse offset so mouse cursor remains in same place on draggedItem instead of top left corner
  9538. var top = y - this.offset.top;
  9539. var left = x - this.offset.left;
  9540. //limit top, left to within box draggedItem can't be dragged outside of
  9541. if (!opts.dragBetween) {
  9542. top = Math.min(this.offsetLimit.bottom, Math.max(top, this.offsetLimit.top));
  9543. left = Math.min(this.offsetLimit.right, Math.max(left, this.offsetLimit.left));
  9544. }
  9545. //adjust top & left calculations to parent offset
  9546. var parent = this.draggedItem.offsetParent().not("body").offset(); //offsetParent returns body even when it's static, if not static offset is only factoring margin
  9547. if (parent != null) {
  9548. top -= parent.top;
  9549. left -= parent.left;
  9550. }
  9551. //set x or y auto-scroll amount
  9552. if (opts.scrollContainer == window) {
  9553. y -= $(window).scrollTop();
  9554. x -= $(window).scrollLeft();
  9555. y = Math.max(0, y - $(window).height() + 5) + Math.min(0, y - 5);
  9556. x = Math.max(0, x - $(window).width() + 5) + Math.min(0, x - 5);
  9557. } else {
  9558. var cont = $(opts.scrollContainer);
  9559. var offset = cont.offset();
  9560. y = Math.max(0, y - cont.height() - offset.top) + Math.min(0, y - offset.top);
  9561. x = Math.max(0, x - cont.width() - offset.left) + Math.min(0, x - offset.left);
  9562. }
  9563. list.scroll.moveX = x == 0 ? 0 : x * opts.scrollSpeed / Math.abs(x);
  9564. list.scroll.moveY = y == 0 ? 0 : y * opts.scrollSpeed / Math.abs(y);
  9565. //move draggedItem to new mouse cursor location
  9566. this.draggedItem.css({ top: top, left: left });
  9567. },
  9568. //if scroll container is a div allow mouse wheel to scroll div instead of window when mouse is hovering over
  9569. wheel: function(e) {
  9570. if (list && opts.scrollContainer != window) {
  9571. var cont = $(opts.scrollContainer);
  9572. var offset = cont.offset();
  9573. e = e.originalEvent;
  9574. if (e.clientX > offset.left && e.clientX < offset.left + cont.width() && e.clientY > offset.top && e.clientY < offset.top + cont.height()) {
  9575. var deltaY = (e.deltaMode == 0 ? 1 : 10) * e.deltaY;
  9576. cont.scrollTop(cont.scrollTop() + deltaY);
  9577. e.preventDefault();
  9578. }
  9579. }
  9580. },
  9581. //build a table recording all the positions of the moveable list items
  9582. buildPositionTable: function() {
  9583. var pos = [];
  9584. this.getItems().not([list.draggedItem[0], list.placeHolderItem[0]]).each(function(i) {
  9585. var loc = $(this).offset();
  9586. loc.right = loc.left + $(this).outerWidth();
  9587. loc.bottom = loc.top + $(this).outerHeight();
  9588. loc.elm = this;
  9589. pos[i] = loc;
  9590. });
  9591. this.pos = pos;
  9592. },
  9593. dropItem: function() {
  9594. if (list.draggedItem == null)
  9595. return;
  9596. //list.draggedItem.attr("style", "") doesn't work on IE8 and jQuery 1.5 or lower
  9597. //list.draggedItem.removeAttr("style") doesn't work on chrome and jQuery 1.6 (works jQuery 1.5 or lower)
  9598. var orig = list.draggedItem.attr("data-origstyle");
  9599. list.draggedItem.attr("style", orig);
  9600. if (orig == "")
  9601. list.draggedItem.removeAttr("style");
  9602. list.draggedItem.removeAttr("data-origstyle");
  9603. list.styleDragHandlers(true);
  9604. list.placeHolderItem.before(list.draggedItem);
  9605. list.placeHolderItem.remove();
  9606. $("[data-droptarget], .dragSortItem").remove();
  9607. window.clearInterval(list.scroll.scrollY);
  9608. window.clearInterval(list.scroll.scrollX);
  9609. //if position changed call dragEnd
  9610. if (list.draggedItem.attr("data-origpos") != $(lists).index(list) + "-" + $(list.container).children().index(list.draggedItem))
  9611. if (opts.dragEnd.apply(list.draggedItem) == false) { //if dragEnd returns false revert order
  9612. var pos = list.draggedItem.attr("data-origpos").split('-');
  9613. var nextItem = $(lists[pos[0]].container).children().not(list.draggedItem).eq(pos[1]);
  9614. if (nextItem.size() > 0)
  9615. nextItem.before(list.draggedItem);
  9616. else if (pos[1] == 0) //was the only item in list
  9617. $(lists[pos[0]].container).prepend(list.draggedItem);
  9618. else //was the last item in list
  9619. $(lists[pos[0]].container).append(list.draggedItem);
  9620. }
  9621. list.draggedItem.removeAttr("data-origpos");
  9622. list.draggedItem = null;
  9623. $(document).unbind("mousemove", list.swapItems);
  9624. $(document).unbind("mouseup", list.dropItem);
  9625. if (opts.scrollContainer != window)
  9626. $(window).unbind("wheel", list.wheel);
  9627. return false;
  9628. },
  9629. //swap the draggedItem (represented visually by placeholder) with the list item the it has been dragged on top of
  9630. swapItems: function(e) {
  9631. if (list.draggedItem == null)
  9632. return false;
  9633. //move draggedItem to mouse location
  9634. list.setPos(e.pageX, e.pageY);
  9635. //retrieve list and item position mouse cursor is over
  9636. var ei = list.findPos(e.pageX, e.pageY);
  9637. var nlist = list;
  9638. for (var i = 0; ei == -1 && opts.dragBetween && i < lists.length; i++) {
  9639. ei = lists[i].findPos(e.pageX, e.pageY);
  9640. nlist = lists[i];
  9641. }
  9642. //if not over another moveable list item return
  9643. if (ei == -1)
  9644. return false;
  9645. //save fixed items locations
  9646. var children = function() { return $(nlist.container).children().not(nlist.draggedItem); };
  9647. var fixed = children().not(opts.itemSelector).each(function(i) { this.idx = children().index(this); });
  9648. //if moving draggedItem up or left place placeHolder before list item the dragged item is hovering over otherwise place it after
  9649. if (lastPos == null || lastPos.top > list.draggedItem.offset().top || lastPos.left > list.draggedItem.offset().left)
  9650. $(nlist.pos[ei].elm).before(list.placeHolderItem);
  9651. else
  9652. $(nlist.pos[ei].elm).after(list.placeHolderItem);
  9653. //restore fixed items location
  9654. fixed.each(function() {
  9655. var elm = children().eq(this.idx).get(0);
  9656. if (this != elm && children().index(this) < this.idx)
  9657. $(this).insertAfter(elm);
  9658. else if (this != elm)
  9659. $(this).insertBefore(elm);
  9660. });
  9661. //misc
  9662. $(lists).each(function(i, l) { l.createDropTargets(); l.buildPositionTable(); });
  9663. lastPos = list.draggedItem.offset();
  9664. return false;
  9665. },
  9666. //returns the index of the list item the mouse is over
  9667. findPos: function(x, y) {
  9668. for (var i = 0; i < this.pos.length; i++) {
  9669. if (this.pos[i].left < x && this.pos[i].right > x && this.pos[i].top < y && this.pos[i].bottom > y)
  9670. return i;
  9671. }
  9672. return -1;
  9673. },
  9674. //create drop targets which are placeholders at the end of other lists to allow dragging straight to the last position
  9675. createDropTargets: function() {
  9676. if (!opts.dragBetween)
  9677. return;
  9678. $(lists).each(function() {
  9679. var ph = $(this.container).find("[data-placeholder]");
  9680. var dt = $(this.container).find("[data-droptarget]");
  9681. if (ph.size() > 0 && dt.size() > 0)
  9682. dt.remove();
  9683. else if (ph.size() == 0 && dt.size() == 0) {
  9684. if (opts.tagName == "td")
  9685. $(opts.placeHolderTemplate).attr("data-droptarget", true).appendTo(this.container);
  9686. else
  9687. //list.placeHolderItem.clone().removeAttr("data-placeholder") crashes in IE7 and jquery 1.5.1 (doesn't in jquery 1.4.2 or IE8)
  9688. $(this.container).append(list.placeHolderItem.removeAttr("data-placeholder").clone().attr("data-droptarget", true));
  9689. list.placeHolderItem.attr("data-placeholder", true);
  9690. }
  9691. });
  9692. }
  9693. };
  9694. newList.init();
  9695. lists.push(newList);
  9696. });
  9697. return this;
  9698. };
  9699. $.fn.dragsort.defaults = {
  9700. tagName:"",
  9701. itemSelector: "",
  9702. dragSelector: "",
  9703. dragSelectorExclude: "input, textarea",
  9704. dragEnd: function() { },
  9705. dragBetween: false,
  9706. placeHolderTemplate: "",
  9707. scrollContainer: window,
  9708. scrollSpeed: 5
  9709. };
  9710. })(jQuery);
  9711. define("dragsort", function(){});
  9712. /*!
  9713. * jquery.event.drag - v 2.2
  9714. * Copyright (c) 2010 Three Dub Media - http://threedubmedia.com
  9715. * Open Source MIT License - http://threedubmedia.com/code/license
  9716. */
  9717. ;(function(e){e.fn.drag=function(k,g,j){var i=typeof k=="string"?k:"",h=e.isFunction(k)?k:e.isFunction(g)?g:null;if(i.indexOf("drag")!==0){i="drag"+i}j=(k==h?g:j)||{};return h?this.bind(i,j,h):this.trigger(i)};var b=e.event,a=b.special,d=a.drag={defaults:{which:1,distance:0,not:":input",handle:null,relative:false,drop:true,click:false},datakey:"dragdata",noBubble:true,add:function(i){var h=e.data(this,d.datakey),g=i.data||{};h.related+=1;e.each(d.defaults,function(j,k){if(g[j]!==undefined){h[j]=g[j]}})},remove:function(){e.data(this,d.datakey).related-=1},setup:function(){if(e.data(this,d.datakey)){return}var g=e.extend({related:0},d.defaults);e.data(this,d.datakey,g);b.add(this,"touchstart mousedown",d.init,g);if(this.attachEvent){this.attachEvent("ondragstart",d.dontstart)}},teardown:function(){var g=e.data(this,d.datakey)||{};if(g.related){return}e.removeData(this,d.datakey);b.remove(this,"touchstart mousedown",d.init);d.textselect(true);if(this.detachEvent){this.detachEvent("ondragstart",d.dontstart)}},init:function(i){if(d.touched){return}var g=i.data,h;if(i.which!=0&&g.which>0&&i.which!=g.which){return}if(e(i.target).is(g.not)){return}if(g.handle&&!e(i.target).closest(g.handle,i.currentTarget).length){return}d.touched=i.type=="touchstart"?this:null;g.propagates=1;g.mousedown=this;g.interactions=[d.interaction(this,g)];g.target=i.target;g.pageX=i.pageX;g.pageY=i.pageY;g.dragging=null;h=d.hijack(i,"draginit",g);if(!g.propagates){return}h=d.flatten(h);if(h&&h.length){g.interactions=[];e.each(h,function(){g.interactions.push(d.interaction(this,g))})}g.propagates=g.interactions.length;if(g.drop!==false&&a.drop){a.drop.handler(i,g)}d.textselect(false);if(d.touched){b.add(d.touched,"touchmove touchend",d.handler,g)}else{b.add(document,"mousemove mouseup",d.handler,g)}if(!d.touched||g.live){return false}},interaction:function(h,g){var i=e(h)[g.relative?"position":"offset"]()||{top:0,left:0};return{drag:h,callback:new d.callback(),droppable:[],offset:i}},handler:function(h){var g=h.data;switch(h.type){case !g.dragging&&"touchmove":h.preventDefault();case !g.dragging&&"mousemove":if(Math.pow(h.pageX-g.pageX,2)+Math.pow(h.pageY-g.pageY,2)<Math.pow(g.distance,2)){break}h.target=g.target;d.hijack(h,"dragstart",g);if(g.propagates){g.dragging=true}case"touchmove":h.preventDefault();case"mousemove":if(g.dragging){d.hijack(h,"drag",g);if(g.propagates){if(g.drop!==false&&a.drop){a.drop.handler(h,g)}break}h.type="mouseup"}case"touchend":case"mouseup":default:if(d.touched){b.remove(d.touched,"touchmove touchend",d.handler)}else{b.remove(document,"mousemove mouseup",d.handler)}if(g.dragging){if(g.drop!==false&&a.drop){a.drop.handler(h,g)}d.hijack(h,"dragend",g)}d.textselect(true);if(g.click===false&&g.dragging){e.data(g.mousedown,"suppress.click",new Date().getTime()+5)}g.dragging=d.touched=false;break}},hijack:function(h,o,r,p,k){if(!r){return}var q={event:h.originalEvent,type:h.type},m=o.indexOf("drop")?"drag":"drop",t,l=p||0,j,g,s,n=!isNaN(p)?p:r.interactions.length;h.type=o;h.originalEvent=null;r.results=[];do{if(j=r.interactions[l]){if(o!=="dragend"&&j.cancelled){continue}s=d.properties(h,r,j);j.results=[];e(k||j[m]||r.droppable).each(function(u,i){s.target=i;h.isPropagationStopped=function(){return false};t=i?b.dispatch.call(i,h,s):null;if(t===false){if(m=="drag"){j.cancelled=true;r.propagates-=1}if(o=="drop"){j[m][u]=null}}else{if(o=="dropinit"){j.droppable.push(d.element(t)||i)}}if(o=="dragstart"){j.proxy=e(d.element(t)||j.drag)[0]}j.results.push(t);delete h.result;if(o!=="dropinit"){return t}});r.results[l]=d.flatten(j.results);if(o=="dropinit"){j.droppable=d.flatten(j.droppable)}if(o=="dragstart"&&!j.cancelled){s.update()}}}while(++l<n);h.type=q.type;h.originalEvent=q.event;return d.flatten(r.results)},properties:function(i,g,h){var j=h.callback;j.drag=h.drag;j.proxy=h.proxy||h.drag;j.startX=g.pageX;j.startY=g.pageY;j.deltaX=i.pageX-g.pageX;j.deltaY=i.pageY-g.pageY;j.originalX=h.offset.left;j.originalY=h.offset.top;j.offsetX=j.originalX+j.deltaX;j.offsetY=j.originalY+j.deltaY;j.drop=d.flatten((h.drop||[]).slice());j.available=d.flatten((h.droppable||[]).slice());return j},element:function(g){if(g&&(g.jquery||g.nodeType==1)){return g}},flatten:function(g){return e.map(g,function(h){return h&&h.jquery?e.makeArray(h):h&&h.length?d.flatten(h):h})},textselect:function(g){e(document)[g?"unbind":"bind"]("selectstart",d.dontstart).css("MozUserSelect",g?"":"none");document.unselectable=g?"off":"on"},dontstart:function(){return false},callback:function(){}};d.callback.prototype={update:function(){if(a.drop&&this.available.length){e.each(this.available,function(g){a.drop.locate(this,g)})}}};var f=b.dispatch;b.dispatch=function(g){if(e.data(this,"suppress."+g.type)-new Date().getTime()>0){e.removeData(this,"suppress."+g.type);return}return f.apply(this,arguments)};var c=b.fixHooks.touchstart=b.fixHooks.touchmove=b.fixHooks.touchend=b.fixHooks.touchcancel={props:"clientX clientY pageX pageY screenX screenY".split(" "),filter:function(h,i){if(i){var g=(i.touches&&i.touches[0])||(i.changedTouches&&i.changedTouches[0])||null;if(g){e.each(c.props,function(j,k){h[k]=g[k]})}}return h}};a.draginit=a.dragstart=a.dragend=d})(jQuery);
  9718. define("drag", function(){});
  9719. /*!
  9720. * jquery.event.drop - v 2.2
  9721. * Copyright (c) 2010 Three Dub Media - http://threedubmedia.com
  9722. * Open Source MIT License - http://threedubmedia.com/code/license
  9723. */
  9724. ;(function(d){d.fn.drop=function(i,e,h){var g=typeof i=="string"?i:"",f=d.isFunction(i)?i:d.isFunction(e)?e:null;if(g.indexOf("drop")!==0){g="drop"+g}h=(i==f?e:h)||{};return f?this.bind(g,h,f):this.trigger(g)};d.drop=function(e){e=e||{};b.multi=e.multi===true?Infinity:e.multi===false?1:!isNaN(e.multi)?e.multi:b.multi;b.delay=e.delay||b.delay;b.tolerance=d.isFunction(e.tolerance)?e.tolerance:e.tolerance===null?null:b.tolerance;b.mode=e.mode||b.mode||"intersect"};var c=d.event,a=c.special,b=d.event.special.drop={multi:1,delay:20,mode:"overlap",targets:[],datakey:"dropdata",noBubble:true,add:function(f){var e=d.data(this,b.datakey);e.related+=1},remove:function(){d.data(this,b.datakey).related-=1},setup:function(){if(d.data(this,b.datakey)){return}var e={related:0,active:[],anyactive:0,winner:0,location:{}};d.data(this,b.datakey,e);b.targets.push(this);return false},teardown:function(){var f=d.data(this,b.datakey)||{};if(f.related){return}d.removeData(this,b.datakey);var e=this;b.targets=d.grep(b.targets,function(g){return(g!==e)})},handler:function(g,e){var f,h;if(!e){return}switch(g.type){case"mousedown":case"touchstart":h=d(b.targets);if(typeof e.drop=="string"){h=h.filter(e.drop)}h.each(function(){var i=d.data(this,b.datakey);i.active=[];i.anyactive=0;i.winner=0});e.droppable=h;a.drag.hijack(g,"dropinit",e);break;case"mousemove":case"touchmove":b.event=g;if(!b.timer){b.tolerate(e)}break;case"mouseup":case"touchend":b.timer=clearTimeout(b.timer);if(e.propagates){a.drag.hijack(g,"drop",e);a.drag.hijack(g,"dropend",e)}break}},locate:function(k,h){var l=d.data(k,b.datakey),g=d(k),i=g.offset()||{},e=g.outerHeight(),j=g.outerWidth(),f={elem:k,width:j,height:e,top:i.top,left:i.left,right:i.left+j,bottom:i.top+e};if(l){l.location=f;l.index=h;l.elem=k}return f},contains:function(e,f){return((f[0]||f.left)>=e.left&&(f[0]||f.right)<=e.right&&(f[1]||f.top)>=e.top&&(f[1]||f.bottom)<=e.bottom)},modes:{intersect:function(f,e,g){return this.contains(g,[f.pageX,f.pageY])?1000000000:this.modes.overlap.apply(this,arguments)},overlap:function(f,e,g){return Math.max(0,Math.min(g.bottom,e.bottom)-Math.max(g.top,e.top))*Math.max(0,Math.min(g.right,e.right)-Math.max(g.left,e.left))},fit:function(f,e,g){return this.contains(g,e)?1:0},middle:function(f,e,g){return this.contains(g,[e.left+e.width*0.5,e.top+e.height*0.5])?1:0}},sort:function(f,e){return(e.winner-f.winner)||(f.index-e.index)},tolerate:function(q){var k,e,n,j,l,m,g,p=0,f,h=q.interactions.length,r=[b.event.pageX,b.event.pageY],o=b.tolerance||b.modes[b.mode];do{if(f=q.interactions[p]){if(!f){return}f.drop=[];l=[];m=f.droppable.length;if(o){n=b.locate(f.proxy)}k=0;do{if(g=f.droppable[k]){j=d.data(g,b.datakey);e=j.location;if(!e){continue}j.winner=o?o.call(b,b.event,n,e):b.contains(e,r)?1:0;l.push(j)}}while(++k<m);l.sort(b.sort);k=0;do{if(j=l[k]){if(j.winner&&f.drop.length<b.multi){if(!j.active[p]&&!j.anyactive){if(a.drag.hijack(b.event,"dropstart",q,p,j.elem)[0]!==false){j.active[p]=1;j.anyactive+=1}else{j.winner=0}}if(j.winner){f.drop.push(j.elem)}}else{if(j.active[p]&&j.anyactive==1){a.drag.hijack(b.event,"dropend",q,p,j.elem);j.active[p]=0;j.anyactive-=1}}}}while(++k<m)}}while(++p<h);if(b.last&&r[0]==b.last.pageX&&r[1]==b.last.pageY){delete b.timer}else{b.timer=setTimeout(function(){b.tolerate(q)},b.delay)}b.last=b.event}};a.dropinit=a.dropstart=a.dropend=b})(jQuery);
  9725. define("drop", function(){});
  9726. /**
  9727. * http://git.oschina.net/hbbcs/bootStrap-addTabs
  9728. * Created by joe on 2015-12-19.
  9729. * Modified by Karson
  9730. */
  9731. (function ($) {
  9732. $.fn.addtabs = function (options) {
  9733. var obj = $(this);
  9734. options = $.extend({
  9735. content: '', //直接指定所有页面TABS内容
  9736. close: true, //是否可以关闭
  9737. monitor: 'body', //监视的区域
  9738. nav: '.nav-addtabs',
  9739. tab: '.tab-addtabs',
  9740. iframeUse: true, //使用iframe还是ajax
  9741. iframeHeight: $(window).height() - 50, //固定TAB中IFRAME高度,根据需要自己修改
  9742. iframeForceRefresh: false, //点击后强制加载对应的iframe
  9743. iframeForceRefreshTable: false, //点击后强制刷新对应的iframe中的table
  9744. callback: function () {
  9745. //关闭后回调函数
  9746. }
  9747. }, options || {});
  9748. var navobj = $(options.nav);
  9749. var tabobj = $(options.tab);
  9750. if (history.pushState) {
  9751. //浏览器前进后退事件
  9752. $(window).on("popstate", function (e) {
  9753. var state = e.originalEvent.state;
  9754. if (state) {
  9755. $("a[addtabs=" + state.id + "]", options.monitor).data("pushstate", true).trigger("click");
  9756. }
  9757. });
  9758. }
  9759. $(options.monitor).on('click', '[addtabs]', function (e) {
  9760. if ($(this).attr('url').indexOf("javascript:") !== 0) {
  9761. if ($(this).is("a")) {
  9762. e.preventDefault();
  9763. }
  9764. var id = $(this).attr('addtabs');
  9765. var title = $(this).attr('title') ? $(this).attr('title') : $.trim($(this).text());
  9766. var url = $(this).attr('url');
  9767. var content = options.content ? options.content : $(this).attr('content');
  9768. var ajax = $(this).attr('ajax') === '1' || $(this).attr('ajax') === 'true';
  9769. var state = ({
  9770. url: url, title: title, id: id, content: content, ajax: ajax
  9771. });
  9772. document.title = title;
  9773. if (history.pushState && !$(this).data("pushstate")) {
  9774. var pushurl = url.indexOf("ref=addtabs") === -1 ? (url + (url.indexOf("?") > -1 ? "&" : "?") + "ref=addtabs") : url;
  9775. try {
  9776. window.history.pushState(state, title, pushurl);
  9777. } catch (e) {
  9778. }
  9779. }
  9780. $(this).data("pushstate", null);
  9781. _add.call(this, {
  9782. id: id,
  9783. title: $(this).attr('title') ? $(this).attr('title') : $(this).html(),
  9784. content: content,
  9785. url: url,
  9786. ajax: ajax
  9787. });
  9788. }
  9789. });
  9790. navobj.on('click', '.close-tab', function () {
  9791. var id = $(this).prev("a").attr("aria-controls");
  9792. _close(id);
  9793. return false;
  9794. });
  9795. navobj.on('dblclick', 'li[role=presentation]', function () {
  9796. $(this).find(".close-tab").trigger("click");
  9797. });
  9798. navobj.on('click', 'li[role=presentation]', function () {
  9799. $("a[addtabs=" + $("a", this).attr("node-id") + "]").trigger("click");
  9800. });
  9801. $(window).resize(function () {
  9802. if (typeof options.nav === 'object') {
  9803. var siblingsWidth = 0;
  9804. navobj.siblings().each(function () {
  9805. siblingsWidth += $(this).outerWidth();
  9806. });
  9807. navobj.width(navobj.parent().width() - siblingsWidth);
  9808. } else {
  9809. $("#nav").width($("#header").find("> .navbar").width() - $(".sidebar-toggle").outerWidth() - $(".navbar-custom-menu").outerWidth() - 20);
  9810. }
  9811. _drop();
  9812. });
  9813. var _add = function (opts) {
  9814. var id, tabid, conid, url;
  9815. id = opts.id;
  9816. tabid = 'tab_' + opts.id;
  9817. conid = 'con_' + opts.id;
  9818. url = opts.url;
  9819. url += (opts.url.indexOf("?") > -1 ? "&addtabs=1" : "?addtabs=1");
  9820. var tabitem = $('#' + tabid, navobj);
  9821. var conitem = $('#' + conid, tabobj);
  9822. navobj.find("[role='presentation']").removeClass('active');
  9823. tabobj.find("[role='tabpanel']").removeClass('active');
  9824. //如果TAB不存在,创建一个新的TAB
  9825. if (tabitem.size() === 0) {
  9826. //创建新TAB的title
  9827. tabitem = $('<li role="presentation" id="' + tabid + '"><a href="#' + conid + '" node-id="' + opts.id + '" aria-controls="' + id + '" role="tab" data-toggle="tab">' + opts.title + '</a></li>');
  9828. //是否允许关闭
  9829. if (options.close && $("li", navobj).size() > 0) {
  9830. tabitem.append(' <i class="close-tab fa fa-remove"></i>');
  9831. }
  9832. if (conitem.size() === 0) {
  9833. //创建新TAB的内容
  9834. conitem = $('<div role="tabpanel" class="tab-pane" id="' + conid + '"></div>');
  9835. //是否指定TAB内容
  9836. if (opts.content) {
  9837. conitem.append(opts.content);
  9838. } else if (options.iframeUse && !opts.ajax) {//没有内容,使用IFRAME打开链接
  9839. var height = options.iframeHeight;
  9840. conitem.append('<iframe src="' + url + '" width="100%" height="' + height + '" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling-x="no" scrolling-y="auto" allowtransparency="yes"></iframe></div>');
  9841. } else {
  9842. $.get(url, function (data) {
  9843. conitem.append(data);
  9844. });
  9845. }
  9846. tabobj.append(conitem);
  9847. }
  9848. //加入TABS
  9849. if ($('.tabdrop li', navobj).size() > 0) {
  9850. $('.tabdrop ul', navobj).append(tabitem);
  9851. } else {
  9852. navobj.append(tabitem);
  9853. }
  9854. } else {
  9855. //强制刷新iframe
  9856. if (options.iframeForceRefresh) {
  9857. $("#" + conid + " iframe").attr('src', function (i, val) {
  9858. return val;
  9859. });
  9860. } else if (options.iframeForceRefreshTable) {
  9861. try {
  9862. //检测iframe中是否存在刷新按钮
  9863. if ($("#" + conid + " iframe").contents().find(".btn-refresh").size() > 0) {
  9864. $("#" + conid + " iframe")[0].contentWindow.$(".btn-refresh").trigger("click");
  9865. }
  9866. } catch (e) {
  9867. }
  9868. }
  9869. }
  9870. localStorage.setItem("addtabs", $(this).prop('outerHTML'));
  9871. //激活TAB
  9872. tabitem.addClass('active');
  9873. conitem.addClass("active");
  9874. _drop();
  9875. };
  9876. var _close = function (id) {
  9877. var tabid = 'tab_' + id;
  9878. var conid = 'con_' + id;
  9879. var tabitem = $('#' + tabid, navobj);
  9880. var conitem = $('#' + conid, tabobj);
  9881. //如果关闭的是当前激活的TAB,激活他的前一个TAB
  9882. if (obj.find("li.active").not('.tabdrop').attr('id') === tabid) {
  9883. var prev = tabitem.prev().not(".tabdrop");
  9884. var next = tabitem.next().not(".tabdrop");
  9885. if (prev.size() > 0) {
  9886. prev.find('a').trigger("click");
  9887. } else if (next.size() > 0) {
  9888. next.find('a').trigger("click");
  9889. } else {
  9890. $(">li:not(.tabdrop):last > a", navobj).trigger('click');
  9891. }
  9892. }
  9893. //关闭TAB
  9894. tabitem.remove();
  9895. conitem.remove();
  9896. _drop();
  9897. options.callback();
  9898. };
  9899. var _drop = function () {
  9900. navobj.refreshAddtabs();
  9901. };
  9902. };
  9903. //刷新Addtabs
  9904. $.fn.refreshAddtabs = function () {
  9905. var navobj = $(this);
  9906. var dropdown = $(".tabdrop", navobj);
  9907. if (dropdown.size() === 0) {
  9908. dropdown = $('<li class="dropdown pull-right hide tabdrop"><a class="dropdown-toggle" data-toggle="dropdown" href="javascript:;">' +
  9909. '<i class="glyphicon glyphicon-align-justify"></i>' +
  9910. ' <b class="caret"></b></a><ul class="dropdown-menu"></ul></li>');
  9911. dropdown.prependTo(navobj);
  9912. }
  9913. //检测是否有下拉样式
  9914. if (navobj.parent().is('.tabs-below')) {
  9915. dropdown.addClass('dropup');
  9916. }
  9917. var collection = 0;
  9918. var maxwidth = navobj.width() - 65;
  9919. var liwidth = 0;
  9920. //检查超过一行的标签页
  9921. var litabs = navobj.append(dropdown.find('li')).find('>li').not('.tabdrop');
  9922. var totalwidth = 0;
  9923. litabs.each(function () {
  9924. totalwidth += $(this).outerWidth(true);
  9925. });
  9926. if (navobj.width() < totalwidth) {
  9927. litabs.each(function () {
  9928. liwidth += $(this).outerWidth(true);
  9929. if (liwidth > maxwidth) {
  9930. dropdown.find('ul').append($(this));
  9931. collection++;
  9932. }
  9933. });
  9934. if (collection > 0) {
  9935. dropdown.removeClass('hide');
  9936. if (dropdown.find('.active').length === 1) {
  9937. dropdown.addClass('active');
  9938. } else {
  9939. dropdown.removeClass('active');
  9940. }
  9941. }
  9942. } else {
  9943. dropdown.addClass('hide');
  9944. }
  9945. };
  9946. })(jQuery);
  9947. define("addtabs", function(){});
  9948. /**
  9949. * @summary SelectPage
  9950. * @desc Simple and powerful selection plugin
  9951. * @file selectpage.js
  9952. * @version 2.18
  9953. * @author TerryZeng
  9954. * @contact https://terryz.github.io/
  9955. * @license MIT License
  9956. *
  9957. */
  9958. ;
  9959. (function ($) {
  9960. "use strict";
  9961. /**
  9962. * Default options
  9963. */
  9964. var defaults = {
  9965. /**
  9966. * Data source
  9967. * @type {string|Object}
  9968. *
  9969. * string:server side request url address
  9970. * Object:JSON array,format:[{a:1,b:2,c:3},{...}]
  9971. */
  9972. data: undefined,
  9973. /**
  9974. * Language ('cn', 'en', 'ja', 'es', 'pt-br')
  9975. * @type string
  9976. * @default 'cn'
  9977. */
  9978. lang: 'cn',
  9979. /**
  9980. * Multiple select mode(tags)
  9981. * @type boolean
  9982. * @default false
  9983. */
  9984. multiple: false,
  9985. /**
  9986. * pagination or not
  9987. * @type boolean
  9988. * @default true
  9989. */
  9990. pagination: true,
  9991. /**
  9992. * Show up menu button
  9993. * @type boolean
  9994. * @default true
  9995. */
  9996. dropButton: true,
  9997. /**
  9998. * Result list visible size in pagination bar close
  9999. * @type number
  10000. * @default 10
  10001. */
  10002. listSize: 10,
  10003. /**
  10004. * Show control bar in multiple select mode
  10005. * @type boolean
  10006. * @default true
  10007. */
  10008. multipleControlbar: true,
  10009. /**
  10010. * Max selected item limited in multiple select mode
  10011. * @type number
  10012. * @default 0(unlimited)
  10013. */
  10014. maxSelectLimit: 0,
  10015. /**
  10016. * Select result item to close list, work on multiple select mode
  10017. * @type boolean
  10018. * @default false
  10019. */
  10020. selectToCloseList: false,
  10021. /**
  10022. * Init selected item key, the result will match to option.keyField option
  10023. * @type string
  10024. */
  10025. initRecord: undefined,
  10026. /**
  10027. * The table parameter in server side mode
  10028. * @type string
  10029. */
  10030. dbTable: 'tbl',
  10031. /**
  10032. * The value field, the value will fill to hidden element
  10033. * @type string
  10034. * @default 'id'
  10035. */
  10036. keyField: 'id',
  10037. /**
  10038. * The show text field, the text will show to input element or tags(multiple mode)
  10039. * @type string
  10040. * @default 'name'
  10041. */
  10042. showField: 'name',
  10043. /**
  10044. * Actually used to search field
  10045. * @type string
  10046. */
  10047. searchField: undefined,
  10048. /**
  10049. * Search type ('AND' or 'OR')
  10050. * @type string
  10051. * @default 'AND'
  10052. */
  10053. andOr: 'AND',
  10054. /**
  10055. * Result sort type
  10056. * @type array - if not set, will default used showField field
  10057. * @example
  10058. * orderBy : ['id desc']
  10059. */
  10060. orderBy: undefined,
  10061. /**
  10062. * Page size
  10063. * @type number
  10064. * @default 10
  10065. */
  10066. pageSize: 10,
  10067. /**
  10068. * Server side request parameters
  10069. * @type function
  10070. * @return object
  10071. * @example params : function(){return {'name':'aa','sex':1};}
  10072. */
  10073. params: undefined,
  10074. /**
  10075. * Custom result list item show text
  10076. * @type function
  10077. * @param data {object} row data
  10078. * @return string
  10079. */
  10080. formatItem: undefined,
  10081. /**
  10082. * Have some highlight item and lost focus, auto select the highlight item
  10083. * @type boolean
  10084. * @default false
  10085. */
  10086. autoFillResult: false,
  10087. /**
  10088. * Auto select first item in show up result list or search result
  10089. * depend on `autoFillResult` option set to true
  10090. * @type boolean
  10091. * @default false
  10092. */
  10093. autoSelectFirst: false,
  10094. /**
  10095. * Whether clear input element text when enter some keywords to search and no result return
  10096. * @type boolean
  10097. * @default true
  10098. */
  10099. noResultClean: true,
  10100. /**
  10101. * Select only mode
  10102. * @type boolean
  10103. */
  10104. selectOnly: false,
  10105. /**
  10106. * Input to search delay time, work on ajax data source
  10107. * @type number
  10108. * @default 0.5
  10109. */
  10110. inputDelay: 0.5,
  10111. /**
  10112. * -----------------------------------------Callback--------------------------------------------
  10113. */
  10114. /**
  10115. * Result list item selected callback
  10116. * @type function
  10117. * @param object - selected item json data
  10118. * @param self - plugin object
  10119. */
  10120. eSelect: undefined,
  10121. /**
  10122. * Before result list show up callback, you can do anything prepared
  10123. * @param self - plugin object
  10124. */
  10125. eOpen: undefined,
  10126. /**
  10127. * Server side return data convert callback
  10128. * @type function
  10129. * @param data {object} server side return data
  10130. * @param self {object} plugin object
  10131. * @return {object} return data format:
  10132. * @example
  10133. * {
  10134. * list : [{name:'aa',sex:1},{name:'bb',sex:1}...],
  10135. * totalRow : 100
  10136. * }
  10137. */
  10138. eAjaxSuccess: undefined,
  10139. /**
  10140. * Close selected item tag callback (multiple mode)
  10141. * @type function
  10142. * @param removeCount {number} remove item count
  10143. * @param self {object} plugin object
  10144. */
  10145. eTagRemove: undefined,
  10146. /**
  10147. * Clear selected item callback(single select mode)
  10148. * @type function
  10149. * @param self {object} plugin object
  10150. */
  10151. eClear: undefined
  10152. };
  10153. /**
  10154. * SelectPage class definition
  10155. * @constructor
  10156. * @param {Object} input - input element
  10157. * @param {Object} option
  10158. */
  10159. var SelectPage = function (input, option) {
  10160. //特殊字段处理
  10161. $.each({data: 'source', keyField: 'primaryKey', showField: 'field', pageSize: 'perPage'}, function (i, j) {
  10162. if (typeof option[j] !== 'undefined') {
  10163. option[i] = option[j];
  10164. delete option[j];
  10165. }
  10166. });
  10167. this.setOption(option);
  10168. this.setLanguage();
  10169. this.setCssClass();
  10170. this.setProp();
  10171. this.setElem(input);
  10172. this.setButtonAttrDefault();
  10173. this.setInitRecord();
  10174. this.eDropdownButton();
  10175. this.eInput();
  10176. this.eWhole();
  10177. };
  10178. /**
  10179. * Plugin version number
  10180. */
  10181. SelectPage.version = '2.18';
  10182. /**
  10183. * Plugin object cache key
  10184. */
  10185. SelectPage.dataKey = 'selectPageObject';
  10186. /**
  10187. * Options set
  10188. * @param {Object} option
  10189. */
  10190. SelectPage.prototype.setOption = function (option) {
  10191. //use showField to default
  10192. option.searchField = option.searchField || option.showField;
  10193. option.andOr = option.andOr.toUpperCase();
  10194. if (option.andOr !== 'AND' && option.andOr !== 'OR')
  10195. option.andOr = 'AND';
  10196. //support multiple field set
  10197. var arr = ['searchField'];
  10198. for (var i = 0; i < arr.length; i++) {
  10199. option[arr[i]] = this.strToArray(option[arr[i]]);
  10200. }
  10201. //set default order field
  10202. option.orderBy = option.orderBy || option.showField;
  10203. //set multiple order field
  10204. //example: [ ['id', 'ASC'], ['name', 'DESC'] ]
  10205. option.orderBy = this.setOrderbyOption(option.orderBy, option.showField);
  10206. //close auto fill result and auto select first in multiple mode and select item not close list
  10207. if (option.multiple && !option.selectToCloseList) {
  10208. option.autoFillResult = false;
  10209. option.autoSelectFirst = false;
  10210. }
  10211. //show all item when pagination bar close, limited 200
  10212. if (!option.pagination)
  10213. option.pageSize = 200;
  10214. if ($.type(option.listSize) !== 'number' || option.listSize < 0)
  10215. option.listSize = 10;
  10216. this.option = option;
  10217. };
  10218. /**
  10219. * String convert to array
  10220. * @param str {string}
  10221. * @return {Array}
  10222. */
  10223. SelectPage.prototype.strToArray = function (str) {
  10224. if (!str)
  10225. return '';
  10226. return str.replace(/[\s ]+/g, '').split(',');
  10227. };
  10228. /**
  10229. * Set order field
  10230. * @param {Array} arg_order
  10231. * @param {string} arg_field
  10232. * @return {Array}
  10233. */
  10234. SelectPage.prototype.setOrderbyOption = function (arg_order, arg_field) {
  10235. var arr = [], orders = [];
  10236. if (typeof arg_order == 'object') {
  10237. for (var i = 0; i < arg_order.length; i++) {
  10238. orders = $.trim(arg_order[i]).split(' ');
  10239. arr[i] = (orders.length == 2) ? orders : [orders[0], 'ASC'];
  10240. }
  10241. } else {
  10242. orders = $.trim(arg_order).split(' ');
  10243. arr[0] = (orders.length == 2) ? orders : (orders[0].match(/^(ASC|DESC)$/i)) ? [arg_field, orders[0]] : [orders[0], 'ASC'];
  10244. }
  10245. return arr;
  10246. };
  10247. /**
  10248. * i18n
  10249. */
  10250. SelectPage.prototype.setLanguage = function () {
  10251. var message, p = this.option;
  10252. switch (p.lang) {
  10253. // English
  10254. case 'en':
  10255. message = {
  10256. add_btn: 'Add button',
  10257. add_title: 'add a box',
  10258. del_btn: 'Del button',
  10259. del_title: 'delete a box',
  10260. next: 'Next',
  10261. next_title: 'Next' + p.pageSize + ' (Right key)',
  10262. prev: 'Prev',
  10263. prev_title: 'Prev' + p.pageSize + ' (Left key)',
  10264. first_title: 'First (Shift + Left key)',
  10265. last_title: 'Last (Shift + Right key)',
  10266. get_all_btn: 'Get All (Down key)',
  10267. get_all_alt: '(button)',
  10268. close_btn: 'Close (Tab key)',
  10269. close_alt: '(button)',
  10270. loading: 'loading...',
  10271. loading_alt: '(loading)',
  10272. page_info: 'page_num of page_count',
  10273. select_ng: 'Attention : Please choose from among the list.',
  10274. select_ok: 'OK : Correctly selected.',
  10275. not_found: 'not found',
  10276. ajax_error: 'An error occurred while connecting to server.',
  10277. clear: 'Clear content',
  10278. select_all: 'Select current page',
  10279. unselect_all: 'Clear current page',
  10280. clear_all: 'Clear all selected',
  10281. max_selected: 'You can only select up to max_selected_limit items'
  10282. };
  10283. break;
  10284. // 中文
  10285. case 'cn':
  10286. default:
  10287. message = {
  10288. add_btn: '添加按钮',
  10289. add_title: '添加区域',
  10290. del_btn: '删除按钮',
  10291. del_title: '删除区域',
  10292. next: '下一页',
  10293. next_title: '下' + p.pageSize + ' (→)',
  10294. prev: '上一页',
  10295. prev_title: '上' + p.pageSize + ' (←)',
  10296. first_title: '首页 (Shift + ←)',
  10297. last_title: '尾页 (Shift + →)',
  10298. get_all_btn: '获得全部 (↓)',
  10299. get_all_alt: '(按钮)',
  10300. close_btn: '关闭 (Tab键)',
  10301. close_alt: '(按钮)',
  10302. loading: '读取中...',
  10303. loading_alt: '(读取中)',
  10304. page_info: '第 page_num 页(共page_count页)',
  10305. select_ng: '请注意:请从列表中选择.',
  10306. select_ok: 'OK : 已经选择.',
  10307. not_found: '无查询结果',
  10308. ajax_error: '连接到服务器时发生错误!',
  10309. clear: '清除内容',
  10310. select_all: '选择当前页项目',
  10311. unselect_all: '取消选择当前页项目',
  10312. clear_all: '清除全部已选择项目',
  10313. max_selected: '最多只能选择 max_selected_limit 个项目'
  10314. };
  10315. break;
  10316. }
  10317. this.message = message;
  10318. };
  10319. /**
  10320. * Css classname defined
  10321. */
  10322. SelectPage.prototype.setCssClass = function () {
  10323. var css_class = {
  10324. container: 'sp_container',
  10325. container_open: 'sp_container_open',
  10326. re_area: 'sp_result_area',
  10327. result_open: 'sp_result_area_open',
  10328. control_box: 'sp_control_box',
  10329. //multiple select mode
  10330. element_box: 'sp_element_box',
  10331. navi: 'sp_navi',
  10332. //result list
  10333. results: 'sp_results',
  10334. re_off: 'sp_results_off',
  10335. select: 'sp_over',
  10336. select_ok: 'sp_select_ok',
  10337. select_ng: 'sp_select_ng',
  10338. selected: 'sp_selected',
  10339. input_off: 'sp_input_off',
  10340. message_box: 'sp_message_box',
  10341. disabled: 'sp_disabled',
  10342. button: 'sp_button',
  10343. btn_on: 'sp_btn_on',
  10344. btn_out: 'sp_btn_out',
  10345. input: 'sp_input',
  10346. clear_btn: 'sp_clear_btn',
  10347. align_right: 'sp_align_right'
  10348. };
  10349. this.css_class = css_class;
  10350. };
  10351. /**
  10352. * Plugin inner properties
  10353. */
  10354. SelectPage.prototype.setProp = function () {
  10355. this.prop = {
  10356. //input disabled status
  10357. disabled: false,
  10358. current_page: 1,
  10359. //total page
  10360. max_page: 1,
  10361. //ajax data loading status
  10362. is_loading: false,
  10363. xhr: false,
  10364. key_paging: false,
  10365. key_select: false,
  10366. //last selected item value
  10367. prev_value: '',
  10368. //last selected item text
  10369. selected_text: '',
  10370. last_input_time: undefined,
  10371. init_set: false
  10372. };
  10373. this.template = {
  10374. tag: {
  10375. content: '<li class="selected_tag" itemvalue="#item_value#">#item_text#<span class="tag_close"><i class="spfont sp-close"></i></span></li>',
  10376. textKey: '#item_text#',
  10377. valueKey: '#item_value#'
  10378. },
  10379. page: {
  10380. current: 'page_num',
  10381. total: 'page_count'
  10382. },
  10383. msg: {
  10384. maxSelectLimit: 'max_selected_limit'
  10385. }
  10386. };
  10387. };
  10388. /**
  10389. * Get the actual width/height of invisible DOM elements with jQuery.
  10390. * Source code come from dreamerslab/jquery.actual
  10391. * @param element
  10392. * @param method
  10393. * @returns {*}
  10394. */
  10395. SelectPage.prototype.elementRealSize = function (element, method) {
  10396. var defaults = {
  10397. absolute: false,
  10398. clone: false,
  10399. includeMargin: false,
  10400. display: 'block'
  10401. };
  10402. var configs = defaults, $target = element.eq(0), fix, restore, tmp = [], style = '', $hidden;
  10403. fix = function () {
  10404. // get all hidden parents
  10405. $hidden = $target.parents().addBack().filter(':hidden');
  10406. style += 'visibility: hidden !important; display: ' + configs.display + ' !important; ';
  10407. if (configs.absolute === true)
  10408. style += 'position: absolute !important;';
  10409. // save the origin style props
  10410. // set the hidden el css to be got the actual value later
  10411. $hidden.each(function () {
  10412. // Save original style. If no style was set, attr() returns undefined
  10413. var $this = $(this), thisStyle = $this.attr('style');
  10414. tmp.push(thisStyle);
  10415. // Retain as much of the original style as possible, if there is one
  10416. $this.attr('style', thisStyle ? thisStyle + ';' + style : style);
  10417. });
  10418. };
  10419. restore = function () {
  10420. // restore origin style values
  10421. $hidden.each(function (i) {
  10422. var $this = $(this), _tmp = tmp[ i ];
  10423. if (_tmp === undefined)
  10424. $this.removeAttr('style');
  10425. else
  10426. $this.attr('style', _tmp);
  10427. });
  10428. };
  10429. fix();
  10430. // get the actual value with user specific methed
  10431. // it can be 'width', 'height', 'outerWidth', 'innerWidth'... etc
  10432. // configs.includeMargin only works for 'outerWidth' and 'outerHeight'
  10433. var actual = /(outer)/.test(method) ?
  10434. $target[ method ](configs.includeMargin) :
  10435. $target[ method ]();
  10436. restore();
  10437. // IMPORTANT, this plugin only return the value of the first element
  10438. return actual;
  10439. };
  10440. /**
  10441. * Dom building
  10442. * @param {Object} combo_input - original input element
  10443. */
  10444. SelectPage.prototype.setElem = function (combo_input) {
  10445. // 1. build Dom object
  10446. var elem = {}, p = this.option, css = this.css_class, msg = this.message, input = $(combo_input);
  10447. var orgWidth = input.outerWidth();
  10448. // fix input width in hidden situation
  10449. if (orgWidth <= 0)
  10450. orgWidth = this.elementRealSize(input, 'outerWidth');
  10451. if (orgWidth < 150)
  10452. orgWidth = 150;
  10453. elem.combo_input = input.attr({'autocomplete': 'off'}).addClass(css.input).wrap('<div>');
  10454. if (p.selectOnly)
  10455. elem.combo_input.prop('readonly', true);
  10456. elem.container = elem.combo_input.parent().addClass(css.container);
  10457. if (elem.combo_input.prop('disabled')) {
  10458. if (p.multiple)
  10459. elem.container.addClass(css.disabled);
  10460. else
  10461. elem.combo_input.addClass(css.input_off);
  10462. }
  10463. // set outer box width
  10464. elem.container.width(orgWidth);
  10465. elem.button = $('<div>').addClass(css.button);
  10466. //drop down button
  10467. elem.dropdown = $('<span class="sp_caret"></span>');
  10468. //clear button 'X' in single mode
  10469. elem.clear_btn = $('<div>').html($('<i>').addClass('spfont sp-close')).addClass(css.clear_btn).attr('title', msg.clear);
  10470. if (!p.dropButton)
  10471. elem.clear_btn.addClass(css.align_right);
  10472. //main box in multiple mode
  10473. elem.element_box = $('<ul>').addClass(css.element_box);
  10474. if (p.multiple && p.multipleControlbar)
  10475. elem.control = $('<div>').addClass(css.control_box);
  10476. //result list box
  10477. elem.result_area = $('<div>').addClass(css.re_area);
  10478. //pagination bar
  10479. if (p.pagination)
  10480. elem.navi = $('<div>').addClass('sp_pagination').append('<ul>');
  10481. elem.results = $('<ul>').addClass(css.results);
  10482. var namePrefix = '_text',
  10483. input_id = elem.combo_input.attr('id') || elem.combo_input.attr('name'),
  10484. input_name = elem.combo_input.attr('name') || 'selectPage',
  10485. hidden_name = input_name,
  10486. hidden_id = input_id;
  10487. //switch the id and name attributes of input/hidden element
  10488. elem.hidden = $('<input type="hidden" class="sp_hidden" />').attr({
  10489. name: hidden_name,
  10490. id: hidden_id
  10491. }).val('');
  10492. elem.combo_input.attr({
  10493. name: input_name + namePrefix,
  10494. id: input_id + namePrefix
  10495. });
  10496. // 2. DOM element put
  10497. elem.container.append(elem.hidden);
  10498. if (p.dropButton) {
  10499. elem.container.append(elem.button)
  10500. elem.button.append(elem.dropdown);
  10501. }
  10502. $(document.body).append(elem.result_area);
  10503. elem.result_area.append(elem.results);
  10504. if (p.pagination)
  10505. elem.result_area.append(elem.navi);
  10506. //Multiple select mode
  10507. if (p.multiple) {
  10508. if (p.multipleControlbar) {
  10509. elem.control.append('<button type="button" class="btn btn-default sp_clear_all" ><i class="spfont sp-clear"></i></button>');
  10510. elem.control.append('<button type="button" class="btn btn-default sp_unselect_all" ><i class="spfont sp-unselect-all"></i></button>');
  10511. elem.control.append('<button type="button" class="btn btn-default sp_select_all" ><i class="spfont sp-select-all"></i></button>');
  10512. elem.control_text = $('<p>');
  10513. elem.control.append(elem.control_text);
  10514. elem.result_area.prepend(elem.control);
  10515. }
  10516. elem.container.addClass('sp_container_combo');
  10517. elem.combo_input.addClass('sp_combo_input').before(elem.element_box);
  10518. var li = $('<li>').addClass('input_box');
  10519. li.append(elem.combo_input);
  10520. elem.element_box.append(li);
  10521. if (elem.combo_input.attr('placeholder'))
  10522. elem.combo_input.attr('placeholder_bak', elem.combo_input.attr('placeholder'));
  10523. }
  10524. this.elem = elem;
  10525. };
  10526. /**
  10527. * Drop down button set to default
  10528. */
  10529. SelectPage.prototype.setButtonAttrDefault = function () {
  10530. /*
  10531. if (this.option.selectOnly) {
  10532. if ($(this.elem.combo_input).val() !== '') {
  10533. if ($(this.elem.hidden).val() !== '') {
  10534. //选择条件
  10535. $(this.elem.combo_input).attr('title', this.message.select_ok).removeClass(this.css_class.select_ng).addClass(this.css_class.select_ok);
  10536. } else {
  10537. //输入方式
  10538. $(this.elem.combo_input).attr('title', this.message.select_ng).removeClass(this.css_class.select_ok).addClass(this.css_class.select_ng);
  10539. }
  10540. } else {
  10541. $(this.elem.hidden).val('');
  10542. $(this.elem.combo_input).removeAttr('title').removeClass(this.css_class.select_ng);
  10543. }
  10544. }
  10545. */
  10546. //this.elem.button.attr('title', this.message.get_all_btn);
  10547. if (this.option.dropButton)
  10548. this.elem.button.attr('title', this.message.close_btn);
  10549. };
  10550. /**
  10551. * Set item need selected after init
  10552. * set selected item ways:
  10553. * <input value="key">
  10554. * <input data-init="key">
  10555. */
  10556. SelectPage.prototype.setInitRecord = function (refresh) {
  10557. var self = this, p = self.option, el = self.elem, key = '';
  10558. if ($.type(el.combo_input.data('init')) != 'undefined')
  10559. p.initRecord = String(el.combo_input.data('init'));
  10560. //data-init and value attribute can be init plugin selected item
  10561. //but, if set data-init and value attribute in the same time, plugin will choose data-init attribute first
  10562. if (!refresh && !p.initRecord && el.combo_input.val())
  10563. p.initRecord = el.combo_input.val();
  10564. el.combo_input.val('');
  10565. if (!refresh)
  10566. el.hidden.val(p.initRecord);
  10567. key = refresh && el.hidden.val() ? el.hidden.val() : p.initRecord;
  10568. if (key) {
  10569. if (typeof p.data === 'object') {
  10570. var data = new Array();
  10571. var keyarr = key.split(',');
  10572. $.each(keyarr, function (index, row) {
  10573. for (var i = 0; i < p.data.length; i++) {
  10574. if (p.data[i][p.keyField] == row) {
  10575. data.push(p.data[i]);
  10576. break;
  10577. }
  10578. }
  10579. });
  10580. if (!p.multiple && data.length > 1)
  10581. data = [data[0]];
  10582. self.afterInit(self, data);
  10583. } else {//ajax data source mode to init selected item
  10584. $.ajax({
  10585. dataType: 'json',
  10586. type: 'POST',
  10587. url: p.data,
  10588. data: {
  10589. searchTable: p.dbTable,
  10590. searchKey: p.keyField,
  10591. searchValue: key,
  10592. orderBy: p.orderBy,
  10593. showField: p.showField,
  10594. keyField: p.keyField,
  10595. keyValue: key,
  10596. searchField: p.searchField
  10597. },
  10598. success: function (json) {
  10599. var d = null;
  10600. if (p.eAjaxSuccess && $.isFunction(p.eAjaxSuccess))
  10601. d = p.eAjaxSuccess(json);
  10602. self.afterInit(self, d.list);
  10603. },
  10604. error: function (jqXHR, textStatus, errorThrown) {
  10605. self.ajaxErrorNotify(self, errorThrown);
  10606. }
  10607. });
  10608. }
  10609. }
  10610. };
  10611. /**
  10612. * Selected item set to plugin
  10613. * @param {Object} self
  10614. * @param {Object} data - selected item data
  10615. */
  10616. SelectPage.prototype.afterInit = function (self, data) {
  10617. if (!data || ($.isArray(data) && data.length === 0))
  10618. return;
  10619. if (!$.isArray(data))
  10620. data = [data];
  10621. var p = self.option, css = self.css_class;
  10622. var getText = function (row) {
  10623. var text = row[p.showField];
  10624. if (p.formatItem && $.isFunction(p.formatItem)) {
  10625. try {
  10626. text = p.formatItem(row);
  10627. } catch (e) {
  10628. }
  10629. }
  10630. return text;
  10631. };
  10632. if (p.multiple) {
  10633. self.prop.init_set = true;
  10634. self.clearAll(self);
  10635. $.each(data, function (i, row) {
  10636. var item = {text: getText(row), value: row[p.keyField]};
  10637. if (!self.isAlreadySelected(self, item))
  10638. self.addNewTag(self, item);
  10639. });
  10640. self.tagValuesSet(self);
  10641. self.inputResize(self);
  10642. console.log(self.elem.hidden.blur());
  10643. self.prop.init_set = false;
  10644. } else {
  10645. var row = data[0];
  10646. self.elem.combo_input.val(getText(row));
  10647. self.elem.hidden.val(row[p.keyField]);
  10648. self.prop.prev_value = getText(row);
  10649. self.prop.selected_text = getText(row);
  10650. if (p.selectOnly) {
  10651. self.elem.combo_input.attr('title', self.message.select_ok).removeClass(css.select_ng).addClass(css.select_ok);
  10652. }
  10653. self.putClearButton();
  10654. }
  10655. };
  10656. /**
  10657. * Drop down button event bind
  10658. */
  10659. SelectPage.prototype.eDropdownButton = function () {
  10660. var self = this;
  10661. if (self.option.dropButton) {
  10662. self.elem.button.mouseup(function (ev) {
  10663. ev.stopPropagation();
  10664. if (self.elem.result_area.is(':hidden') && !self.elem.combo_input.prop('disabled')) {
  10665. self.elem.combo_input.focus();
  10666. } else
  10667. self.hideResults(self);
  10668. });
  10669. }
  10670. };
  10671. /**
  10672. * Events bind
  10673. */
  10674. SelectPage.prototype.eInput = function () {
  10675. var self = this, p = self.option, el = self.elem, msg = self.message;
  10676. var showList = function () {
  10677. self.prop.page_move = false;
  10678. self.suggest(self);
  10679. self.setCssFocusedInput(self);
  10680. };
  10681. el.combo_input.keyup(function (e) {
  10682. self.processKey(self, e);
  10683. }).keydown(function (e) {
  10684. self.processControl(self, e);
  10685. }).focus(function (e) {
  10686. //When focus on input, show the result list
  10687. if (el.result_area.is(':hidden')) {
  10688. e.stopPropagation();
  10689. self.prop.first_show = true;
  10690. showList();
  10691. }
  10692. });
  10693. el.container.on('click.SelectPage', 'div.' + self.css_class.clear_btn, function (e) {
  10694. e.stopPropagation();
  10695. if (!self.disabled(self)) {
  10696. self.clearAll(self);
  10697. self.elem.hidden.change();
  10698. if (p.eClear && $.isFunction(p.eClear))
  10699. p.eClear(self);
  10700. }
  10701. });
  10702. el.result_area.on('mousedown.SelectPage', function (e) {
  10703. e.stopPropagation();
  10704. });
  10705. if (p.multiple) {
  10706. if (p.multipleControlbar) {
  10707. //Select all item of current page
  10708. el.control.find('.sp_select_all').on('click.SelectPage', function (e) {
  10709. self.selectAllLine(self);
  10710. }).hover(function () {
  10711. el.control_text.html(msg.select_all);
  10712. }, function () {
  10713. el.control_text.html('');
  10714. });
  10715. //Cancel select all item of current page
  10716. el.control.find('.sp_unselect_all').on('click.SelectPage', function (e) {
  10717. self.unSelectAllLine(self);
  10718. }).hover(function () {
  10719. el.control_text.html(msg.unselect_all);
  10720. }, function () {
  10721. el.control_text.html('');
  10722. });
  10723. //Clear all selected item
  10724. el.control.find('.sp_clear_all').on('click.SelectPage', function (e) {
  10725. self.clearAll(self);
  10726. }).hover(function () {
  10727. el.control_text.html(msg.clear_all);
  10728. }, function () {
  10729. el.control_text.html('');
  10730. });
  10731. }
  10732. el.element_box.on('click.SelectPage', function (e) {
  10733. var srcEl = e.target || e.srcElement;
  10734. if ($(srcEl).is('ul'))
  10735. el.combo_input.focus();
  10736. });
  10737. //Tag close
  10738. el.element_box.on('click.SelectPage', 'span.tag_close', function () {
  10739. var li = $(this).closest('li');
  10740. self.removeTag(self, li);
  10741. showList();
  10742. if (p.eTagRemove && $.isFunction(p.eTagRemove))
  10743. p.eTagRemove(1, self);
  10744. });
  10745. self.inputResize(self);
  10746. }
  10747. };
  10748. /**
  10749. * Out of plugin area click event handler
  10750. */
  10751. SelectPage.prototype.eWhole = function () {
  10752. var self = this, css = self.css_class;
  10753. var cleanContent = function (obj) {
  10754. obj.elem.combo_input.val('');
  10755. if (!obj.option.multiple)
  10756. obj.elem.hidden.val('');
  10757. obj.prop.selected_text = '';
  10758. };
  10759. //Out of plugin area
  10760. $(document.body).off('mousedown.selectPage').on('mousedown.selectPage', function (e) {
  10761. var ele = e.target || e.srcElement;
  10762. var sp = $(ele).closest('div.' + css.container);
  10763. //Open status result list
  10764. $('div.' + css.container + '.' + css.container_open).each(function () {
  10765. if (this == sp[0])
  10766. return;
  10767. var $this = $(this), d = $this.find('input.' + css.input).data(SelectPage.dataKey);
  10768. if (!d.elem.combo_input.val() && d.elem.hidden.val() && !d.option.multiple) {
  10769. d.prop.current_page = 1;//reset page to 1
  10770. cleanContent(d);
  10771. d.hideResults(d);
  10772. return true;
  10773. }
  10774. if (d.elem.results.find('li').not('.' + css.message_box).size()) {
  10775. if (d.option.autoFillResult) {
  10776. //have selected item, then hide result list
  10777. if (d.elem.hidden.val())
  10778. d.hideResults(d);
  10779. else if (d.elem.results.find('li.sp_over').size()) {
  10780. //no one selected and have highlight item, select the highlight item
  10781. d.selectCurrentLine(d, true);
  10782. } else if (d.option.autoSelectFirst) {
  10783. //no one selected, no one highlight, select the first item
  10784. d.nextLine(d);
  10785. d.selectCurrentLine(d, true);
  10786. } else
  10787. d.hideResults(d);
  10788. } else
  10789. d.hideResults(d);
  10790. } else {
  10791. //when no one item match, clear search keywords
  10792. if (d.option.noResultClean)
  10793. cleanContent(d);
  10794. else {
  10795. if (!d.option.multiple)
  10796. d.elem.hidden.val('');
  10797. }
  10798. d.hideResults(d);
  10799. }
  10800. });
  10801. });
  10802. };
  10803. /**
  10804. * Result list event bind
  10805. */
  10806. SelectPage.prototype.eResultList = function () {
  10807. var self = this, css = this.css_class;
  10808. self.elem.results.children('li').hover(function () {
  10809. if (self.prop.key_select) {
  10810. self.prop.key_select = false;
  10811. return;
  10812. }
  10813. if (!$(this).hasClass(css.selected) && !$(this).hasClass(css.message_box)) {
  10814. $(this).addClass(css.select);
  10815. self.setCssFocusedResults(self);
  10816. }
  10817. }, function () {
  10818. $(this).removeClass(css.select);
  10819. }).click(function (e) {
  10820. if (self.prop.key_select) {
  10821. self.prop.key_select = false;
  10822. return;
  10823. }
  10824. e.preventDefault();
  10825. e.stopPropagation();
  10826. if (!$(this).hasClass(css.selected))
  10827. self.selectCurrentLine(self, false);
  10828. });
  10829. };
  10830. /**
  10831. * Reposition result list when list beyond the visible area
  10832. */
  10833. SelectPage.prototype.eScroll = function () {
  10834. var self = this, css = this.css_class;
  10835. $(window).on('scroll.SelectPage', function (e) {
  10836. $('div.' + css.container + '.' + css.container_open).each(function () {
  10837. var $this = $(this), d = $this.find('input.' + css.input).data(SelectPage.dataKey),
  10838. offset = d.elem.result_area.offset(),
  10839. screenScrollTop = $(window).scrollTop(),
  10840. docHeight = $(document).height(),
  10841. viewHeight = $(window).height(),
  10842. listHeight = d.elem.result_area.outerHeight(),
  10843. listBottom = offset.top + listHeight,
  10844. hasOverflow = docHeight > viewHeight,
  10845. down = d.elem.result_area.hasClass('shadowDown');
  10846. if (hasOverflow) {
  10847. if (down) {//open down
  10848. if (listBottom > (viewHeight + screenScrollTop))
  10849. d.calcResultsSize(d);
  10850. } else {//open up
  10851. if (offset.top < screenScrollTop)
  10852. d.calcResultsSize(d);
  10853. }
  10854. }
  10855. });
  10856. });
  10857. };
  10858. /**
  10859. * Page bar button event bind
  10860. */
  10861. SelectPage.prototype.ePaging = function () {
  10862. var self = this;
  10863. if (!self.option.pagination)
  10864. return;
  10865. self.elem.navi.find('li.csFirstPage').off('click').on('click', function (ev) {
  10866. //$(self.elem.combo_input).focus();
  10867. ev.preventDefault();
  10868. self.firstPage(self);
  10869. });
  10870. self.elem.navi.find('li.csPreviousPage').off('click').on('click', function (ev) {
  10871. //$(self.elem.combo_input).focus();
  10872. ev.preventDefault();
  10873. self.prevPage(self);
  10874. });
  10875. self.elem.navi.find('li.csNextPage').off('click').on('click', function (ev) {
  10876. //$(self.elem.combo_input).focus();
  10877. ev.preventDefault();
  10878. self.nextPage(self);
  10879. });
  10880. self.elem.navi.find('li.csLastPage').off('click').on('click', function (ev) {
  10881. //$(self.elem.combo_input).focus();
  10882. ev.preventDefault();
  10883. self.lastPage(self);
  10884. });
  10885. };
  10886. /**
  10887. * Ajax request fail
  10888. * @param {Object} self
  10889. * @param {string} errorThrown
  10890. */
  10891. SelectPage.prototype.ajaxErrorNotify = function (self, errorThrown) {
  10892. self.showMessage(self.message.ajax_error);
  10893. };
  10894. /**
  10895. * Message box
  10896. * @param {Object} self
  10897. * @param msg {string} the text need to show
  10898. */
  10899. SelectPage.prototype.showMessage = function (self, msg) {
  10900. if (!msg)
  10901. return;
  10902. var msgLi = '<li class="' + self.css_class.message_box + '"><i class="spfont sp-warning"></i> ' + msg + '</li>';
  10903. self.elem.results.empty().append(msgLi).show();
  10904. self.calcResultsSize(self);
  10905. self.setOpenStatus(self, true);
  10906. self.elem.control.hide();
  10907. if (self.option.pagination)
  10908. self.elem.navi.hide();
  10909. };
  10910. /**
  10911. * @desc Scroll
  10912. * @param {Object} self
  10913. * @param {boolean} enforce
  10914. */
  10915. SelectPage.prototype.scrollWindow = function (self, enforce) {
  10916. var current_result = self.getCurrentLine(self),
  10917. target_top = (current_result && !enforce) ? current_result.offset().top : self.elem.container.offset().top,
  10918. target_size;
  10919. self.prop.size_li = self.elem.results.children('li:first').outerHeight();
  10920. target_size = self.prop.size_li;
  10921. var gap, client_height = $(window).height(),
  10922. scroll_top = $(window).scrollTop(),
  10923. scroll_bottom = scroll_top + client_height - target_size;
  10924. if (current_result.length) {
  10925. if (target_top < scroll_top || target_size > client_height) {
  10926. //scroll to top
  10927. gap = target_top - scroll_top;
  10928. } else if (target_top > scroll_bottom) {
  10929. //scroll down
  10930. gap = target_top - scroll_bottom;
  10931. } else
  10932. return; //do not scroll
  10933. } else if (target_top < scroll_top)
  10934. gap = target_top - scroll_top;
  10935. window.scrollBy(0, gap);
  10936. };
  10937. /**
  10938. * change css class by status
  10939. * @param self
  10940. * @param status {boolean} true: open, false: close
  10941. */
  10942. SelectPage.prototype.setOpenStatus = function (self, status) {
  10943. var el = self.elem, css = self.css_class;
  10944. if (status) {
  10945. el.container.addClass(css.container_open);
  10946. el.result_area.addClass(css.result_open);
  10947. } else {
  10948. el.container.removeClass(css.container_open);
  10949. el.result_area.removeClass(css.result_open);
  10950. }
  10951. };
  10952. /**
  10953. * input element in focus css class set
  10954. * @param {Object} self
  10955. */
  10956. SelectPage.prototype.setCssFocusedInput = function (self) {
  10957. //$(self.elem.results).addClass(self.css_class.re_off);
  10958. //$(self.elem.combo_input).removeClass(self.css_class.input_off);
  10959. };
  10960. /**
  10961. * set result list get focus and input element lost focus
  10962. * @param {Object} self
  10963. */
  10964. SelectPage.prototype.setCssFocusedResults = function (self) {
  10965. //$(self.elem.results).removeClass(self.css_class.re_off);
  10966. //$(self.elem.combo_input).addClass(self.css_class.input_off);
  10967. };
  10968. /**
  10969. * Quick search input keywords listener
  10970. * @param {Object} self
  10971. */
  10972. SelectPage.prototype.checkValue = function (self) {
  10973. var now_value = self.elem.combo_input.val();
  10974. if (now_value != self.prop.prev_value) {
  10975. self.prop.prev_value = now_value;
  10976. self.prop.first_show = false;
  10977. if (self.option.selectOnly)
  10978. self.setButtonAttrDefault();
  10979. if (!self.option.multiple && !now_value) {
  10980. self.elem.combo_input.val('');
  10981. self.elem.hidden.val('');
  10982. self.elem.clear_btn.remove();
  10983. }
  10984. self.suggest(self);
  10985. }
  10986. };
  10987. /**
  10988. * Input handle(regular input)
  10989. * @param {Object} self
  10990. * @param {Object} e - event object
  10991. */
  10992. SelectPage.prototype.processKey = function (self, e) {
  10993. if ($.inArray(e.keyCode, [37, 38, 39, 40, 27, 9, 13]) === -1) {
  10994. if (e.keyCode != 16)
  10995. self.setCssFocusedInput(self); // except Shift(16)
  10996. self.inputResize(self);
  10997. if ($.type(self.option.data) === 'string') {
  10998. self.prop.last_input_time = e.timeStamp;
  10999. setTimeout(function () {
  11000. if ((e.timeStamp - self.prop.last_input_time) === 0)
  11001. self.checkValue(self);
  11002. }, self.option.inputDelay * 1000);
  11003. } else {
  11004. self.checkValue(self);
  11005. }
  11006. }
  11007. }
  11008. /**
  11009. * Input handle(control key)
  11010. * @param {Object} self
  11011. * @param {Object} e - event object
  11012. */
  11013. SelectPage.prototype.processControl = function (self, e) {
  11014. if (($.inArray(e.keyCode, [37, 38, 39, 40, 27, 9]) > -1 && self.elem.result_area.is(':visible')) ||
  11015. ($.inArray(e.keyCode, [13, 9]) > -1 && self.getCurrentLine(self))) {
  11016. e.preventDefault();
  11017. e.stopPropagation();
  11018. e.cancelBubble = true;
  11019. e.returnValue = false;
  11020. switch (e.keyCode) {
  11021. case 37:// left
  11022. if (e.shiftKey)
  11023. self.firstPage(self);
  11024. else
  11025. self.prevPage(self);
  11026. break;
  11027. case 38:// up
  11028. self.prop.key_select = true;
  11029. self.prevLine(self);
  11030. break;
  11031. case 39:// right
  11032. if (e.shiftKey)
  11033. self.lastPage(self);
  11034. else
  11035. self.nextPage(self);
  11036. break;
  11037. case 40:// down
  11038. if (self.elem.results.children('li').length) {
  11039. self.prop.key_select = true;
  11040. self.nextLine(self);
  11041. } else
  11042. self.suggest(self);
  11043. break;
  11044. case 9:// tab
  11045. self.prop.key_paging = true;
  11046. self.selectCurrentLine(self, true);
  11047. //self.hideResults(self);
  11048. break;
  11049. case 13:// return
  11050. self.selectCurrentLine(self, true);
  11051. break;
  11052. case 27:// escape
  11053. self.prop.key_paging = true;
  11054. self.hideResults(self);
  11055. break;
  11056. }
  11057. }
  11058. };
  11059. /**
  11060. * Abort Ajax request
  11061. * @param {Object} self
  11062. */
  11063. SelectPage.prototype.abortAjax = function (self) {
  11064. if (self.prop.xhr) {
  11065. self.prop.xhr.abort();
  11066. self.prop.xhr = false;
  11067. }
  11068. };
  11069. /**
  11070. * Suggest result of search keywords
  11071. * @param {Object} self
  11072. */
  11073. SelectPage.prototype.suggest = function (self) {
  11074. var q_word, val = $.trim(self.elem.combo_input.val());
  11075. if (self.option.multiple)
  11076. q_word = val;
  11077. else {
  11078. if (val && val === self.prop.selected_text)
  11079. q_word = '';
  11080. else
  11081. q_word = val;
  11082. }
  11083. q_word = q_word.split(/[\s ]+/);
  11084. //Before show up result list callback
  11085. if (self.option.eOpen && $.isFunction(self.option.eOpen))
  11086. self.option.eOpen.call(self);
  11087. self.abortAjax(self);
  11088. //self.setLoading(self);
  11089. var which_page_num = self.prop.current_page || 1;
  11090. if (typeof self.option.data == 'object')
  11091. self.searchForJson(self, q_word, which_page_num);
  11092. else
  11093. self.searchForDb(self, q_word, which_page_num);
  11094. };
  11095. /**
  11096. * Loading
  11097. * @param {Object} self
  11098. */
  11099. SelectPage.prototype.setLoading = function (self) {
  11100. if (self.elem.results.html() === '') {
  11101. //self.calcResultsSize(self);
  11102. self.setOpenStatus(self, true);
  11103. }
  11104. };
  11105. /**
  11106. * Search for ajax
  11107. * @param {Object} self
  11108. * @param {Array} q_word - query keyword
  11109. * @param {number} which_page_num - target page number
  11110. */
  11111. SelectPage.prototype.searchForDb = function (self, q_word, which_page_num) {
  11112. var p = self.option;
  11113. if (!p.eAjaxSuccess || !$.isFunction(p.eAjaxSuccess))
  11114. self.hideResults(self);
  11115. var _paramsFunc = p.params, _params = {}, searchKey = p.searchField;
  11116. //when have new query keyword, then reset page number to 1.
  11117. if (q_word.length && q_word[0] && q_word[0] !== self.prop.prev_value)
  11118. which_page_num = 1;
  11119. var _orgParams = {
  11120. q_word: q_word,
  11121. pageNumber: which_page_num,
  11122. pageSize: p.pageSize,
  11123. andOr: p.andOr,
  11124. orderBy: p.orderBy,
  11125. searchTable: p.dbTable,
  11126. showField: self.option.showField,
  11127. keyField: self.option.keyField,
  11128. searchField: self.option.searchField
  11129. };
  11130. _orgParams[searchKey] = q_word[0];
  11131. if (_paramsFunc) {
  11132. var result = $.isFunction(_paramsFunc) ? _paramsFunc() : _paramsFunc;
  11133. if (result && $.isPlainObject(result)) {
  11134. _params = $.extend({}, _orgParams, result);
  11135. } else {
  11136. _params = _orgParams;
  11137. }
  11138. } else
  11139. _params = _orgParams;
  11140. self.prop.xhr = $.ajax({
  11141. dataType: 'json',
  11142. url: p.data,
  11143. type: 'POST',
  11144. data: _params,
  11145. success: function (returnData) {
  11146. if (!returnData || !$.isPlainObject(returnData)) {
  11147. self.hideResults(self);
  11148. self.ajaxErrorNotify(self, errorThrown);
  11149. return;
  11150. }
  11151. var data = {}, json = {};
  11152. try {
  11153. data = p.eAjaxSuccess(returnData);
  11154. json.originalResult = data.list;
  11155. json.cnt_whole = data.totalRow;
  11156. } catch (e) {
  11157. self.showMessage(self, self.message.ajax_error);
  11158. return;
  11159. }
  11160. if(self.elem.navi) {
  11161. $(self.elem.navi).toggleClass("hide", json.cnt_whole <= json.originalResult.length);
  11162. }
  11163. json.candidate = [];
  11164. json.keyField = [];
  11165. if (typeof json.originalResult != 'object') {
  11166. self.prop.xhr = null;
  11167. self.notFoundSearch(self);
  11168. return;
  11169. }
  11170. json.cnt_page = json.originalResult.length;
  11171. for (var i = 0; i < json.cnt_page; i++) {
  11172. for (var key in json.originalResult[i]) {
  11173. if (key == p.keyField) {
  11174. json.keyField.push(json.originalResult[i][key]);
  11175. }
  11176. if (key == p.showField) {
  11177. json.candidate.push(json.originalResult[i][key]);
  11178. }
  11179. }
  11180. }
  11181. self.prepareResults(self, json, q_word, which_page_num);
  11182. },
  11183. error: function (jqXHR, textStatus, errorThrown) {
  11184. if (textStatus != 'abort') {
  11185. self.hideResults(self);
  11186. self.ajaxErrorNotify(self, errorThrown);
  11187. }
  11188. },
  11189. complete: function () {
  11190. self.prop.xhr = null;
  11191. }
  11192. });
  11193. };
  11194. /**
  11195. * Search for json data source
  11196. * @param {Object} self
  11197. * @param {Array} q_word
  11198. * @param {number} which_page_num
  11199. */
  11200. SelectPage.prototype.searchForJson = function (self, q_word, which_page_num) {
  11201. var p = self.option, matched = [], esc_q = [], sorted = [], json = {}, i = 0, arr_reg = [];
  11202. //query keyword filter
  11203. do {
  11204. //'/\W/g'正则代表全部不是字母,数字,下划线,汉字的字符
  11205. //将非法字符进行转义
  11206. esc_q[i] = q_word[i].replace(/\W/g, '\\$&').toString();
  11207. arr_reg[i] = new RegExp(esc_q[i], 'gi');
  11208. i++;
  11209. } while (i < q_word.length);
  11210. // SELECT * FROM data WHERE field LIKE q_word;
  11211. for (i = 0; i < p.data.length; i++) {
  11212. var flag = false, row = p.data[i], itemText;
  11213. for (var j = 0; j < arr_reg.length; j++) {
  11214. itemText = row[p.searchField];
  11215. if (p.formatItem && $.isFunction(p.formatItem))
  11216. itemText = p.formatItem(row);
  11217. if (itemText.match(arr_reg[j])) {
  11218. flag = true;
  11219. if (p.andOr == 'OR')
  11220. break;
  11221. } else {
  11222. flag = false;
  11223. if (p.andOr == 'AND')
  11224. break;
  11225. }
  11226. }
  11227. if (flag)
  11228. matched.push(row);
  11229. }
  11230. // (CASE WHEN ...) then く order some column
  11231. var reg1 = new RegExp('^' + esc_q[0] + '$', 'gi'),
  11232. reg2 = new RegExp('^' + esc_q[0], 'gi'),
  11233. matched1 = [], matched2 = [], matched3 = [];
  11234. for (i = 0; i < matched.length; i++) {
  11235. var orderField = p.orderBy[0][0];
  11236. var orderValue = String(matched[i][orderField]);
  11237. if (orderValue.match(reg1)) {
  11238. matched1.push(matched[i]);
  11239. } else if (orderValue.match(reg2)) {
  11240. matched2.push(matched[i]);
  11241. } else {
  11242. matched3.push(matched[i]);
  11243. }
  11244. }
  11245. if (p.orderBy[0][1].match(/^asc$/i)) {
  11246. matched1 = self.sortAsc(self, matched1);
  11247. matched2 = self.sortAsc(self, matched2);
  11248. matched3 = self.sortAsc(self, matched3);
  11249. } else {
  11250. matched1 = self.sortDesc(self, matched1);
  11251. matched2 = self.sortDesc(self, matched2);
  11252. matched3 = self.sortDesc(self, matched3);
  11253. }
  11254. sorted = sorted.concat(matched1).concat(matched2).concat(matched3);
  11255. /*
  11256. if (sorted.length === undefined || sorted.length === 0 ) {
  11257. self.notFoundSearch(self);
  11258. return;
  11259. }
  11260. */
  11261. json.cnt_whole = sorted.length;
  11262. //page_move used to distinguish between init plugin or page moving
  11263. if (!self.prop.page_move) {
  11264. //only single mode can be used page number relocation
  11265. if (!p.multiple) {
  11266. //get selected item belong page number
  11267. var currentValue = self.elem.hidden.val();
  11268. if ($.type(currentValue) !== 'undefined' && $.trim(currentValue) !== '') {
  11269. var index = 0;
  11270. $.each(sorted, function (i, row) {
  11271. if (row[p.keyField] == currentValue) {
  11272. index = i + 1;
  11273. return false;
  11274. }
  11275. });
  11276. which_page_num = Math.ceil(index / p.pageSize);
  11277. if (which_page_num < 1)
  11278. which_page_num = 1;
  11279. self.prop.current_page = which_page_num;
  11280. }
  11281. }
  11282. } else {
  11283. //set page number to 1 when result number less then page size
  11284. if (sorted.length <= ((which_page_num - 1) * p.pageSize)) {
  11285. which_page_num = 1;
  11286. self.prop.current_page = 1;
  11287. }
  11288. }
  11289. //LIMIT xx OFFSET xx
  11290. var start = (which_page_num - 1) * p.pageSize, end = start + p.pageSize;
  11291. //save original data
  11292. json.originalResult = [];
  11293. //after data filter handle
  11294. for (i = start; i < end; i++) {
  11295. if (sorted[i] === undefined)
  11296. break;
  11297. json.originalResult.push(sorted[i]);
  11298. for (var key in sorted[i]) {
  11299. if (key == p.keyField) {
  11300. if (json.keyField === undefined)
  11301. json.keyField = [];
  11302. json.keyField.push(sorted[i][key]);
  11303. }
  11304. if (key == p.showField) {
  11305. if (json.candidate === undefined)
  11306. json.candidate = [];
  11307. json.candidate.push(sorted[i][key]);
  11308. }
  11309. }
  11310. }
  11311. if (json.candidate === undefined)
  11312. json.candidate = [];
  11313. json.cnt_page = json.candidate.length;
  11314. self.prepareResults(self, json, q_word, which_page_num);
  11315. };
  11316. /**
  11317. * Set order asc
  11318. * @param {Object} self
  11319. * @param {Array} arr - result array
  11320. */
  11321. SelectPage.prototype.sortAsc = function (self, arr) {
  11322. arr.sort(function (a, b) {
  11323. var valA = a[self.option.orderBy[0][0]], valB = b[self.option.orderBy[0][0]];
  11324. return $.type(valA) === 'number' ? valA - valB : String(valA).localeCompare(String(valB));
  11325. });
  11326. return arr;
  11327. };
  11328. /**
  11329. * Set order desc
  11330. * @param {Object} self
  11331. * @param {Array} arr - result array
  11332. */
  11333. SelectPage.prototype.sortDesc = function (self, arr) {
  11334. arr.sort(function (a, b) {
  11335. var valA = a[self.option.orderBy[0][0]], valB = b[self.option.orderBy[0][0]];
  11336. return $.type(valA) === 'number' ? valB - valA : String(valB).localeCompare(String(valA));
  11337. });
  11338. return arr;
  11339. };
  11340. /**
  11341. * Not result found handle
  11342. * @param {Object} self
  11343. */
  11344. SelectPage.prototype.notFoundSearch = function (self) {
  11345. self.elem.results.empty();
  11346. self.calcResultsSize(self);
  11347. self.setOpenStatus(self, true);
  11348. self.setCssFocusedInput(self);
  11349. };
  11350. /**
  11351. * Prepare data to show
  11352. * @param {Object} self
  11353. * @param {Object} json - data result
  11354. * @param {Array} q_word - query keyword
  11355. * @param {number} which_page_num - target page number
  11356. */
  11357. SelectPage.prototype.prepareResults = function (self, json, q_word, which_page_num) {
  11358. if (self.option.pagination)
  11359. self.setNavi(self, json.cnt_whole, json.cnt_page, which_page_num);
  11360. if (!json.keyField)
  11361. json.keyField = false;
  11362. if (self.option.selectOnly && json.candidate.length === 1 && json.candidate[0] == q_word[0]) {
  11363. self.elem.hidden.val(json.keyField[0]);
  11364. this.setButtonAttrDefault();
  11365. }
  11366. var is_query = false;
  11367. if (q_word && q_word.length && q_word[0])
  11368. is_query = true;
  11369. self.displayResults(self, json, is_query);
  11370. };
  11371. /**
  11372. * Build page bar
  11373. * @param {Object} self
  11374. * @param {number} cnt_whole - total record count
  11375. * @param {number} cnt_page
  11376. * @param {number} page_num - current page number
  11377. */
  11378. SelectPage.prototype.setNavi = function (self, cnt_whole, cnt_page, page_num) {
  11379. var msg = self.message;
  11380. /**
  11381. * build pagination bar
  11382. */
  11383. var buildPageNav = function (self, pagebar, page_num, last_page) {
  11384. var updatePageInfo = function () {
  11385. var pageInfo = msg.page_info;
  11386. return pageInfo.replace(self.template.page.current, page_num).replace(self.template.page.total, last_page);
  11387. };
  11388. if (pagebar.find('li').size() === 0) {
  11389. pagebar.hide().empty();
  11390. var iconFist = 'spfont sp-first',
  11391. iconPrev = 'spfont sp-previous',
  11392. iconNext = 'spfont sp-next',
  11393. iconLast = 'spfont sp-last';
  11394. pagebar.append('<li class="csFirstPage" title="' + msg.first_title + '" ><a href="javascript:void(0);"> <i class="' + iconFist + '"></i> </a></li>');
  11395. pagebar.append('<li class="csPreviousPage" title="' + msg.prev_title + '" ><a href="javascript:void(0);"><i class="' + iconPrev + '"></i></a></li>');
  11396. //pagination information
  11397. pagebar.append('<li class="pageInfoBox"><a href="javascript:void(0);"> ' + updatePageInfo() + ' </a></li>');
  11398. pagebar.append('<li class="csNextPage" title="' + msg.next_title + '" ><a href="javascript:void(0);"><i class="' + iconNext + '"></i></a></li>');
  11399. pagebar.append('<li class="csLastPage" title="' + msg.last_title + '" ><a href="javascript:void(0);"> <i class="' + iconLast + '"></i> </a></li>');
  11400. pagebar.show();
  11401. } else {
  11402. pagebar.find('li.pageInfoBox a').html(updatePageInfo());
  11403. }
  11404. };
  11405. var pagebar = self.elem.navi.find('ul'),
  11406. last_page = Math.ceil(cnt_whole / self.option.pageSize); //calculate total page
  11407. if (last_page === 0)
  11408. page_num = 0;
  11409. else {
  11410. if (last_page < page_num)
  11411. page_num = last_page;
  11412. else if (page_num === 0)
  11413. page_num = 1;
  11414. }
  11415. self.prop.current_page = page_num;//update current page number
  11416. self.prop.max_page = last_page;//update page count
  11417. buildPageNav(self, pagebar, page_num, last_page);
  11418. //update paging status
  11419. var dClass = 'disabled',
  11420. first = pagebar.find('li.csFirstPage'),
  11421. previous = pagebar.find('li.csPreviousPage'),
  11422. next = pagebar.find('li.csNextPage'),
  11423. last = pagebar.find('li.csLastPage');
  11424. //first and previous
  11425. if (page_num === 1 || page_num === 0) {
  11426. if (!first.hasClass(dClass))
  11427. first.addClass(dClass);
  11428. if (!previous.hasClass(dClass))
  11429. previous.addClass(dClass);
  11430. } else {
  11431. if (first.hasClass(dClass))
  11432. first.removeClass(dClass);
  11433. if (previous.hasClass(dClass))
  11434. previous.removeClass(dClass);
  11435. }
  11436. //next and last
  11437. if (page_num === last_page || last_page === 0) {
  11438. if (!next.hasClass(dClass))
  11439. next.addClass(dClass);
  11440. if (!last.hasClass(dClass))
  11441. last.addClass(dClass);
  11442. } else {
  11443. if (next.hasClass(dClass))
  11444. next.removeClass(dClass);
  11445. if (last.hasClass(dClass))
  11446. last.removeClass(dClass);
  11447. }
  11448. if (last_page > 1)
  11449. self.ePaging(); //pagination event bind
  11450. };
  11451. /**
  11452. * Render result list
  11453. * @param {Object} self
  11454. * @param {Object} json - result data
  11455. * @param {boolean} is_query - used to different from search to open and just click to open
  11456. */
  11457. SelectPage.prototype.displayResults = function (self, json, is_query) {
  11458. var p = self.option, el = self.elem;
  11459. el.results.hide().empty();
  11460. if (p.multiple && $.type(p.maxSelectLimit) === 'number' && p.maxSelectLimit > 0) {
  11461. var selectedSize = el.element_box.find('li.selected_tag').size();
  11462. if (selectedSize > 0 && selectedSize >= p.maxSelectLimit) {
  11463. var msg = self.message.max_selected;
  11464. self.showMessage(self, msg.replace(self.template.msg.maxSelectLimit, p.maxSelectLimit));
  11465. return;
  11466. }
  11467. }
  11468. if (json.candidate.length) {
  11469. var arr_candidate = json.candidate,
  11470. arr_primary_key = json.keyField,
  11471. keystr = el.hidden.val(),
  11472. keyArr = keystr ? keystr.split(',') : new Array(),
  11473. itemText = '';
  11474. for (var i = 0; i < arr_candidate.length; i++) {
  11475. if (p.formatItem && $.isFunction(p.formatItem)) {
  11476. try {
  11477. itemText = p.formatItem(json.originalResult[i]);
  11478. } catch (e) {
  11479. console.error('formatItem内容格式化函数内容设置不正确!');
  11480. itemText = arr_candidate[i];
  11481. }
  11482. } else
  11483. itemText = arr_candidate[i];
  11484. var list = $('<li>').html(itemText).attr({
  11485. pkey: arr_primary_key[i]
  11486. });
  11487. if (!p.formatItem)
  11488. list.attr('title', itemText);
  11489. //Set selected item highlight
  11490. if ($.inArray(arr_primary_key[i].toString(), keyArr) !== -1) {
  11491. list.addClass(self.css_class.selected);
  11492. }
  11493. //cache item data
  11494. list.data('dataObj', json.originalResult[i]);
  11495. el.results.append(list);
  11496. }
  11497. } else {
  11498. var li = '<li class="' + self.css_class.message_box + '"><i class="spfont sp-warning"></i> ' +
  11499. self.message.not_found + '</li>';
  11500. el.results.append(li);
  11501. }
  11502. el.results.show();
  11503. if (p.multiple && p.multipleControlbar)
  11504. el.control.show();
  11505. if (p.pagination)
  11506. el.navi.show();
  11507. self.calcResultsSize(self);
  11508. self.setOpenStatus(self, true);
  11509. //Result item event bind
  11510. self.eResultList();
  11511. //scrolling listen
  11512. self.eScroll();
  11513. //auto highlight first item in search, have result and set autoSelectFirst to true situation
  11514. if (is_query && json.candidate.length && p.autoSelectFirst)
  11515. self.nextLine(self);
  11516. };
  11517. /**
  11518. * Calculate result list size and position
  11519. * @param {Object} self
  11520. */
  11521. SelectPage.prototype.calcResultsSize = function (self) {
  11522. var p = self.option, el = self.elem;
  11523. var rePosition = function () {
  11524. if (el.container.css('position') === 'static') {
  11525. // position: static
  11526. var offset = el.combo_input.offset();
  11527. el.result_area.css({
  11528. top: offset.top + el.combo_input.outerHeight() + 'px',
  11529. left: offset.left + 'px'
  11530. });
  11531. } else {
  11532. if (!p.pagination) {
  11533. var itemHeight = el.results.find('li:first').outerHeight(true),
  11534. listHeight = itemHeight * p.listSize;
  11535. el.results.css({
  11536. 'max-height': listHeight,
  11537. 'overflow-y': 'auto'
  11538. });
  11539. }
  11540. //handle result list show up side(left, right, up or down)
  11541. var docWidth = $(document).width(),
  11542. docHeight = $(document).height(), //the document full height
  11543. viewHeight = $(window).height(), //browser visible area height
  11544. offset = el.container.offset(),
  11545. screenScrollTop = $(window).scrollTop(),
  11546. listWidth = el.result_area.outerWidth(),
  11547. //result list height
  11548. listHeight = el.result_area.outerHeight(),
  11549. //default left used input element left
  11550. defaultLeft = offset.left, //p.multiple ? -1 : 0;
  11551. //input element height
  11552. inputHeight = el.container.outerHeight(),
  11553. left = (offset.left + listWidth) > docWidth ?
  11554. defaultLeft - (listWidth - el.container.outerWidth()) :
  11555. defaultLeft,
  11556. //the actual top coordinate of input element(outer div)
  11557. screenTop = offset.top, //$(el.container).scrollTop();//offset.top - screenScrollTop;
  11558. top = 0, dist = 5, //set distance between input element and result list
  11559. //the actual top coordinate of result list
  11560. listBottom = screenTop + inputHeight + listHeight + dist,
  11561. hasOverflow = docHeight > viewHeight;
  11562. if ((screenTop - screenScrollTop - dist > listHeight) &&
  11563. (hasOverflow && listBottom > (viewHeight + screenScrollTop)) ||
  11564. (!hasOverflow && listBottom > viewHeight)) {
  11565. //open up
  11566. top = offset.top - listHeight - dist;
  11567. el.result_area.removeClass('shadowUp shadowDown').addClass('shadowUp');
  11568. } else {
  11569. //open down
  11570. top = offset.top + (p.multiple ? el.container.outerHeight() : inputHeight);
  11571. el.result_area.removeClass('shadowUp shadowDown').addClass('shadowDown');
  11572. top += dist;
  11573. }
  11574. return {
  11575. top: top + 'px', left: left + 'px'
  11576. };
  11577. }
  11578. };
  11579. if (el.result_area.is(':visible')) {
  11580. el.result_area.css(rePosition());
  11581. } else {
  11582. var pss = rePosition();
  11583. el.result_area.css(pss).show(1, function () {
  11584. var repss = rePosition();
  11585. if (pss.top !== repss.top || pss.left !== repss.left)
  11586. el.result_area.css(repss);
  11587. });
  11588. }
  11589. };
  11590. /**
  11591. * hide result list
  11592. * @param {Object} self
  11593. */
  11594. SelectPage.prototype.hideResults = function (self) {
  11595. if (self.prop.key_paging) {
  11596. self.scrollWindow(self, true);
  11597. self.prop.key_paging = false;
  11598. }
  11599. self.setCssFocusedInput(self);
  11600. if (self.option.autoFillResult) {
  11601. //self.selectCurrentLine(self, true);
  11602. }
  11603. self.elem.results.empty();
  11604. self.elem.result_area.hide();
  11605. self.setOpenStatus(self, false);
  11606. //unbind window scroll listen
  11607. $(window).off('scroll.SelectPage');
  11608. self.abortAjax(self);
  11609. self.setButtonAttrDefault();
  11610. };
  11611. /**
  11612. * set plugin to disabled / enabled
  11613. * @param self
  11614. * @param disabled
  11615. */
  11616. SelectPage.prototype.disabled = function (self, disabled) {
  11617. var p = self.option, el = self.elem;
  11618. if ($.type(disabled) === 'undefined')
  11619. return el.combo_input.prop('disabled');
  11620. if ($.type(disabled) === 'boolean') {
  11621. el.combo_input.prop('disabled', disabled);
  11622. if (disabled)
  11623. el.container.addClass(self.css_class.disabled);
  11624. else
  11625. el.container.removeClass(self.css_class.disabled);
  11626. }
  11627. };
  11628. /**
  11629. * Go fist page
  11630. * @param {Object} self
  11631. */
  11632. SelectPage.prototype.firstPage = function (self) {
  11633. if (self.prop.current_page > 1) {
  11634. self.prop.current_page = 1;
  11635. self.prop.page_move = true;
  11636. self.suggest(self);
  11637. }
  11638. };
  11639. /**
  11640. * Go previous page
  11641. * @param {Object} self
  11642. */
  11643. SelectPage.prototype.prevPage = function (self) {
  11644. if (self.prop.current_page > 1) {
  11645. self.prop.current_page--;
  11646. self.prop.page_move = true;
  11647. self.suggest(self);
  11648. }
  11649. };
  11650. /**
  11651. * Go next page
  11652. * @param {Object} self
  11653. */
  11654. SelectPage.prototype.nextPage = function (self) {
  11655. if (self.prop.current_page < self.prop.max_page) {
  11656. self.prop.current_page++;
  11657. self.prop.page_move = true;
  11658. self.suggest(self);
  11659. }
  11660. };
  11661. /**
  11662. * Go last page
  11663. * @param {Object} self
  11664. */
  11665. SelectPage.prototype.lastPage = function (self) {
  11666. if (self.prop.current_page < self.prop.max_page) {
  11667. self.prop.current_page = self.prop.max_page;
  11668. self.prop.page_move = true;
  11669. self.suggest(self);
  11670. }
  11671. };
  11672. /**
  11673. * do something after select/unSelect action
  11674. * @param {Object} self
  11675. */
  11676. SelectPage.prototype.afterAction = function (self) {
  11677. self.inputResize(self);
  11678. self.elem.combo_input.change();
  11679. self.setCssFocusedInput(self);
  11680. if (self.prop.init_set)
  11681. return;
  11682. if (self.option.multiple) {
  11683. if (self.option.selectToCloseList) {
  11684. self.hideResults(self);
  11685. self.elem.combo_input.blur();
  11686. } else {
  11687. self.suggest(self);
  11688. self.elem.combo_input.focus();
  11689. }
  11690. } else {
  11691. self.hideResults(self);
  11692. self.elem.combo_input.blur();
  11693. }
  11694. };
  11695. /**
  11696. * Select current list item
  11697. * @param {Object} self
  11698. * @param {boolean} is_enter_key
  11699. */
  11700. SelectPage.prototype.selectCurrentLine = function (self, is_enter_key) {
  11701. self.scrollWindow(self, true);
  11702. var p = self.option, current = self.getCurrentLine(self);
  11703. if (current) {
  11704. if (!p.multiple) {
  11705. self.elem.combo_input.val(current.text());
  11706. self.elem.hidden.val(current.attr('pkey'));
  11707. } else {
  11708. //build tags in multiple selection mode
  11709. self.elem.combo_input.val('');
  11710. var item = {text: current.text(), value: current.attr('pkey')};
  11711. if (!self.isAlreadySelected(self, item)) {
  11712. self.addNewTag(self, item);
  11713. self.tagValuesSet(self);
  11714. }
  11715. }
  11716. if (p.selectOnly)
  11717. self.setButtonAttrDefault();
  11718. //Select item callback
  11719. if (p.eSelect && $.isFunction(p.eSelect))
  11720. p.eSelect(current.data('dataObj'), self);
  11721. self.prop.prev_value = self.elem.combo_input.val();
  11722. self.prop.selected_text = self.elem.combo_input.val();
  11723. self.putClearButton();
  11724. }
  11725. self.afterAction(self);
  11726. };
  11727. /**
  11728. * Show clear button when item selected in single selection mode
  11729. */
  11730. SelectPage.prototype.putClearButton = function () {
  11731. if (!this.option.multiple && !this.elem.combo_input.prop('disabled'))
  11732. this.elem.container.append(this.elem.clear_btn);
  11733. };
  11734. /**
  11735. * Select all list item
  11736. * @param {Object} self
  11737. */
  11738. SelectPage.prototype.selectAllLine = function (self) {
  11739. var p = self.option, jsonarr = new Array();
  11740. self.elem.results.find('li').each(function (i, row) {
  11741. var $row = $(row);
  11742. var item = {text: $row.text(), value: $row.attr('pkey')};
  11743. if (!self.isAlreadySelected(self, item)) {
  11744. self.addNewTag(self, item);
  11745. self.tagValuesSet(self);
  11746. }
  11747. jsonarr.push($row.data('dataObj'));
  11748. //limited max selected items
  11749. if ($.type(p.maxSelectLimit) === 'number' &&
  11750. p.maxSelectLimit > 0 &&
  11751. p.maxSelectLimit === self.elem.element_box.find('li.selected_tag').size()) {
  11752. return false;
  11753. }
  11754. });
  11755. if (p.eSelect && $.isFunction(p.eSelect))
  11756. p.eSelect(jsonarr, self);
  11757. self.afterAction(self);
  11758. };
  11759. /**
  11760. * Cancel select all item in current page
  11761. * @param {Object} self
  11762. */
  11763. SelectPage.prototype.unSelectAllLine = function (self) {
  11764. var p = self.option, size = self.elem.results.find('li').size();
  11765. self.elem.results.find('li').each(function (i, row) {
  11766. var key = $(row).attr('pkey');
  11767. var tag = self.elem.element_box.find('li.selected_tag[itemvalue="' + key + '"]');
  11768. self.removeTag(self, tag);
  11769. });
  11770. self.afterAction(self);
  11771. if (p.eTagRemove && $.isFunction(p.eTagRemove))
  11772. p.eTagRemove(size, self);
  11773. };
  11774. /**
  11775. * Clear all selected items
  11776. * @param {Object} self
  11777. */
  11778. SelectPage.prototype.clearAll = function (self) {
  11779. var p = self.option, size = 0;
  11780. if (p.multiple) {
  11781. size = self.elem.element_box.find('li.selected_tag').size();
  11782. self.elem.element_box.find('li.selected_tag').remove();
  11783. }
  11784. self.reset(self);
  11785. self.afterAction(self);
  11786. if (!p.multiple)
  11787. self.elem.clear_btn.remove();
  11788. if (p.multiple) {
  11789. if (p.eTagRemove && $.isFunction(p.eTagRemove))
  11790. p.eTagRemove(size, self);
  11791. }
  11792. };
  11793. /**
  11794. * reset
  11795. */
  11796. SelectPage.prototype.reset = function (self) {
  11797. self.elem.combo_input.val('');
  11798. self.elem.hidden.val('');
  11799. self.prop.prev_value = '';
  11800. self.prop.selected_text = '';
  11801. self.prop.current_page = 1;
  11802. };
  11803. /**
  11804. * Get current highlight item
  11805. * @param {Object} self
  11806. */
  11807. SelectPage.prototype.getCurrentLine = function (self) {
  11808. if (self.elem.result_area.is(':hidden'))
  11809. return false;
  11810. var obj = self.elem.results.find('li.' + self.css_class.select);
  11811. if (obj.size())
  11812. return obj;
  11813. else
  11814. return false;
  11815. };
  11816. /**
  11817. * Check the result item is already selected or not
  11818. * @param {Object} self
  11819. * @param {Object} item - item info
  11820. */
  11821. SelectPage.prototype.isAlreadySelected = function (self, item) {
  11822. var isExist = false;
  11823. if (item.value) {
  11824. var keys = self.elem.hidden.val();
  11825. if (keys) {
  11826. var karr = keys.split(',');
  11827. if (karr && karr.length && $.inArray(item.value, karr) != -1)
  11828. isExist = true;
  11829. }
  11830. }
  11831. return isExist;
  11832. };
  11833. /**
  11834. * Add a new tag in multiple selection mode
  11835. * @param {Object} self
  11836. * @param {Object} item
  11837. */
  11838. SelectPage.prototype.addNewTag = function (self, item) {
  11839. if (!self.option.multiple || !item)
  11840. return;
  11841. var tmp = self.template.tag.content, tag;
  11842. tmp = tmp.replace(self.template.tag.textKey, item.text);
  11843. tmp = tmp.replace(self.template.tag.valueKey, item.value);
  11844. tag = $(tmp);
  11845. if (self.elem.combo_input.prop('disabled'))
  11846. tag.find('span.tag_close').hide();
  11847. self.elem.combo_input.closest('li').before(tag);
  11848. };
  11849. /**
  11850. * Remove a tag in multiple selection mode
  11851. * @param {Object} self
  11852. * @param {Object} item
  11853. */
  11854. SelectPage.prototype.removeTag = function (self, item) {
  11855. var key = $(item).attr('itemvalue');
  11856. var keys = self.elem.hidden.val();
  11857. if ($.type(key) != 'undefined' && keys) {
  11858. var keyarr = keys.split(','),
  11859. index = $.inArray(key.toString(), keyarr);
  11860. if (index != -1) {
  11861. keyarr.splice(index, 1);
  11862. self.elem.hidden.val(keyarr.toString());
  11863. }
  11864. }
  11865. $(item).remove();
  11866. self.afterAction(self);
  11867. };
  11868. /**
  11869. * Selected item value(keyField) put in to hidden element
  11870. * @param {Object} self
  11871. */
  11872. SelectPage.prototype.tagValuesSet = function (self) {
  11873. if (!self.option.multiple)
  11874. return;
  11875. var tags = self.elem.element_box.find('li.selected_tag');
  11876. if (tags && tags.size()) {
  11877. var result = new Array();
  11878. $.each(tags, function (i, li) {
  11879. var v = $(li).attr('itemvalue');
  11880. if ($.type(v) !== 'undefined')
  11881. result.push(v);
  11882. });
  11883. if (result.length) {
  11884. self.elem.hidden.val(result.join(','));
  11885. }
  11886. }
  11887. };
  11888. /**
  11889. * auto resize input element width in multiple select mode
  11890. * @param {Object} self
  11891. */
  11892. SelectPage.prototype.inputResize = function (self) {
  11893. if (!self.option.multiple)
  11894. return;
  11895. var width = '',
  11896. inputLi = self.elem.combo_input.closest('li');
  11897. var setDefaultSize = function (self, inputLi) {
  11898. inputLi.removeClass('full_width');
  11899. var minimumWidth = self.elem.combo_input.val().length + 1,
  11900. width = (minimumWidth * 0.75) + 'em';
  11901. self.elem.combo_input.css('width', width).removeAttr('placeholder');
  11902. };
  11903. if (self.elem.element_box.find('li.selected_tag').size() === 0) {
  11904. if (self.elem.combo_input.attr('placeholder_bak')) {
  11905. if (!inputLi.hasClass('full_width'))
  11906. inputLi.addClass('full_width');
  11907. self.elem.combo_input.attr('placeholder', self.elem.combo_input.attr('placeholder_bak')).removeAttr('style');
  11908. } else
  11909. setDefaultSize(self, inputLi);
  11910. } else
  11911. setDefaultSize(self, inputLi);
  11912. };
  11913. /**
  11914. * Move to next line
  11915. * @param {Object} self
  11916. */
  11917. SelectPage.prototype.nextLine = function (self) {
  11918. var obj = self.getCurrentLine(self), idx;
  11919. if (!obj)
  11920. idx = -1;
  11921. else {
  11922. idx = self.elem.results.children('li').index(obj);
  11923. obj.removeClass(self.css_class.select);
  11924. }
  11925. idx++;
  11926. if (idx < self.elem.results.children('li').length) {
  11927. var next = self.elem.results.children('li').eq(idx);
  11928. next.addClass(self.css_class.select);
  11929. self.setCssFocusedResults(self);
  11930. } else
  11931. self.setCssFocusedInput(self);
  11932. self.scrollWindow(self, false);
  11933. };
  11934. /**
  11935. * Move to previous line
  11936. * @param {Object} self
  11937. */
  11938. SelectPage.prototype.prevLine = function (self) {
  11939. var obj = self.getCurrentLine(self), idx;
  11940. if (!obj)
  11941. idx = self.elem.results.children('li').length;
  11942. else {
  11943. idx = self.elem.results.children('li').index(obj);
  11944. obj.removeClass(self.css_class.select);
  11945. }
  11946. idx--;
  11947. if (idx > -1) {
  11948. var prev = self.elem.results.children('li').eq(idx);
  11949. prev.addClass(self.css_class.select);
  11950. self.setCssFocusedResults(self);
  11951. } else
  11952. self.setCssFocusedInput(self);
  11953. self.scrollWindow(self, false);
  11954. };
  11955. /**
  11956. * SelectPage plugin definition
  11957. * @global
  11958. * @param option {Object} init plugin option
  11959. */
  11960. function Plugin(option) {
  11961. return this.each(function () {
  11962. var $this = $(this),
  11963. data = $this.data(SelectPage.dataKey),
  11964. params = $.extend({}, defaults, $this.data(), data && data.option, typeof option === 'object' && option);
  11965. if (!data)
  11966. $this.data(SelectPage.dataKey, (data = new SelectPage(this, params)));
  11967. });
  11968. }
  11969. /**
  11970. * Get plugin object
  11971. * @param {object} obj
  11972. * @returns
  11973. */
  11974. function getPlugin(obj) {
  11975. return $(obj).closest('div.sp_container').find('input.sp_input');
  11976. }
  11977. /**
  11978. * Clear all selected item
  11979. */
  11980. function ClearSelected() {
  11981. return this.each(function () {
  11982. var $this = getPlugin(this),
  11983. data = $this.data(SelectPage.dataKey);
  11984. if (data) {
  11985. data.prop.init_set = true;
  11986. data.clearAll(data);
  11987. data.prop.init_set = false;
  11988. }
  11989. });
  11990. }
  11991. /**
  11992. * Refresh result list
  11993. * use case:
  11994. * 1.use $(obj).val('xxx') to modify selectpage selected item key
  11995. * 2.refresh selected item show content/tag text
  11996. */
  11997. function SelectedRefresh() {
  11998. return this.each(function () {
  11999. var $this = getPlugin(this),
  12000. data = $this.data(SelectPage.dataKey);
  12001. if (data && data.elem.hidden.val())
  12002. data.setInitRecord(true);
  12003. });
  12004. }
  12005. /**
  12006. * Modify plugin datasource, only work on json datasource mode
  12007. * @param {array} data - new datasource
  12008. * @example
  12009. * [{name:'aa',sex:1},{name:'bb',sex:0},{...}]
  12010. */
  12011. function ModifyDataSource(data) {
  12012. return this.each(function () {
  12013. if (data && $.isArray(data)) {
  12014. var $this = getPlugin(this),
  12015. plugin = $this.data(SelectPage.dataKey);
  12016. if (plugin) {
  12017. plugin.clearAll(plugin);
  12018. plugin.option.data = data;
  12019. }
  12020. }
  12021. });
  12022. }
  12023. /**
  12024. * Get plugin disabled status or Modify plugin disabled status
  12025. * @param disabled {boolean} set disabled status
  12026. */
  12027. function PluginDisabled(disabled) {
  12028. var status = false;
  12029. this.each(function () {
  12030. var $this = getPlugin(this),
  12031. plugin = $this.data(SelectPage.dataKey);
  12032. if (plugin) {
  12033. if ($.type(disabled) !== 'undefined')
  12034. plugin.disabled(plugin, disabled);
  12035. else
  12036. status = plugin.disabled(plugin);
  12037. }
  12038. });
  12039. return status;
  12040. }
  12041. /**
  12042. * Get selected item text
  12043. * @returns {string}
  12044. */
  12045. function GetInputText() {
  12046. var str = '';
  12047. this.each(function () {
  12048. var $this = getPlugin(this), data = $this.data(SelectPage.dataKey);
  12049. if (data) {
  12050. if (data.option.multiple) {
  12051. var tags = [];
  12052. data.elem.element_box.find('li.selected_tag').each(function (i, tag) {
  12053. tags.push($(tag).text());
  12054. });
  12055. str += tags.toString();
  12056. } else {
  12057. str += data.elem.combo_input.val();
  12058. }
  12059. }
  12060. });
  12061. return str;
  12062. }
  12063. var old = $.fn.selectPage;
  12064. $.fn.selectPage = Plugin;
  12065. $.fn.selectPage.Constructor = SelectPage;
  12066. $.fn.selectPageClear = ClearSelected;
  12067. $.fn.selectPageRefresh = SelectedRefresh;
  12068. $.fn.selectPageData = ModifyDataSource;
  12069. $.fn.selectPageDisabled = PluginDisabled;
  12070. $.fn.selectPageText = GetInputText;
  12071. // SelectPage no conflict
  12072. // =================
  12073. $.fn.selectPage.noConflict = function () {
  12074. $.fn.selectPage = old;
  12075. return this;
  12076. };
  12077. })(window.jQuery);
  12078. define("selectpage", function(){});