require-backend.min.js 831 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756
  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.3.7 (http://getbootstrap.com)
  7. * Copyright 2011-2016 Twitter, Inc.
  8. * Licensed under the MIT license
  9. */
  10. if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1||b[0]>3)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){if(a(b.target).is(this))return b.handleObj.handler.apply(this,arguments)}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.7",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a("#"===f?[]:f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.7",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c).prop(c,!0)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c).prop(c,!1))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")?(c.prop("checked")&&(a=!1),b.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==c.prop("type")&&(c.prop("checked")!==this.$element.hasClass("active")&&(a=!1),this.$element.toggleClass("active")),c.prop("checked",this.$element.hasClass("active")),a&&c.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target).closest(".btn");b.call(d,"toggle"),a(c.target).is('input[type="radio"], input[type="checkbox"]')||(c.preventDefault(),d.is("input,button")?d.trigger("focus"):d.find("input:visible,button:visible").first().trigger("focus"))}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.7",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));if(!(a>this.$items.length-1||a<0))return this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.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(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.7",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[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 e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function c(c){c&&3===c.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=b(d),f={relatedTarget:this};e.hasClass("open")&&(c&&"click"==c.type&&/input|textarea/i.test(c.target.tagName)&&a.contains(e[0],c.target)||(e.trigger(c=a.Event("hide.bs.dropdown",f)),c.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger(a.Event("hidden.bs.dropdown",f)))))}))}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.7",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=b(e),g=f.hasClass("open");if(c(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(a(this)).on("click",c);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger(a.Event("shown.bs.dropdown",h))}return!1}},g.prototype.keydown=function(c){if(/(38|40|27|32)/.test(c.which)&&!/input|textarea/i.test(c.target.tagName)){var d=a(this);if(c.preventDefault(),c.stopPropagation(),!d.is(".disabled, :disabled")){var e=b(d),g=e.hasClass("open");if(!g&&27!=c.which||g&&27==c.which)return 27==c.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find(".dropdown-menu"+h);if(i.length){var j=i.index(c.target);38==c.which&&j>0&&j--,40==c.which&&j<i.length-1&&j++,~j||(j=0),i.eq(j).trigger("focus")}}}};var h=a.fn.dropdown;a.fn.dropdown=d,a.fn.dropdown.Constructor=g,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=h,this},a(document).on("click.bs.dropdown.data-api",c).on("click.bs.dropdown.data-api",".dropdown form",function(a){a.stopPropagation()}).on("click.bs.dropdown.data-api",f,g.prototype.toggle).on("keydown.bs.dropdown.data-api",f,g.prototype.keydown).on("keydown.bs.dropdown.data-api",".dropdown-menu",g.prototype.keydown)}(jQuery),+function(a){"use strict";function b(b,d){return this.each(function(){var e=a(this),f=e.data("bs.modal"),g=a.extend({},c.DEFAULTS,e.data(),"object"==typeof b&&b);f||e.data("bs.modal",f=new c(this,g)),"string"==typeof b?f[b](d):g.show&&f.show(d)})}var c=function(b,c){this.options=c,this.$body=a(document.body),this.$element=a(b),this.$dialog=this.$element.find(".modal-dialog"),this.$backdrop=null,this.isShown=null,this.originalBodyPad=null,this.scrollbarWidth=0,this.ignoreBackdropClick=!1,this.options.remote&&this.$element.find(".modal-content").load(this.options.remote,a.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};c.VERSION="3.3.7",c.TRANSITION_DURATION=300,c.BACKDROP_TRANSITION_DURATION=150,c.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},c.prototype.toggle=function(a){return this.isShown?this.hide():this.show(a)},c.prototype.show=function(b){var d=this,e=a.Event("show.bs.modal",{relatedTarget:b});this.$element.trigger(e),this.isShown||e.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(){d.$element.one("mouseup.dismiss.bs.modal",function(b){a(b.target).is(d.$element)&&(d.ignoreBackdropClick=!0)})}),this.backdrop(function(){var e=a.support.transition&&d.$element.hasClass("fade");d.$element.parent().length||d.$element.appendTo(d.$body),d.$element.show().scrollTop(0),d.adjustDialog(),e&&d.$element[0].offsetWidth,d.$element.addClass("in"),d.enforceFocus();var f=a.Event("shown.bs.modal",{relatedTarget:b});e?d.$dialog.one("bsTransitionEnd",function(){d.$element.trigger("focus").trigger(f)}).emulateTransitionEnd(c.TRANSITION_DURATION):d.$element.trigger("focus").trigger(f)}))},c.prototype.hide=function(b){b&&b.preventDefault(),b=a.Event("hide.bs.modal"),this.$element.trigger(b),this.isShown&&!b.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(c.TRANSITION_DURATION):this.hideModal())},c.prototype.enforceFocus=function(){a(document).off("focusin.bs.modal").on("focusin.bs.modal",a.proxy(function(a){document===a.target||this.$element[0]===a.target||this.$element.has(a.target).length||this.$element.trigger("focus")},this))},c.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keydown.dismiss.bs.modal",a.proxy(function(a){27==a.which&&this.hide()},this)):this.isShown||this.$element.off("keydown.dismiss.bs.modal")},c.prototype.resize=function(){this.isShown?a(window).on("resize.bs.modal",a.proxy(this.handleUpdate,this)):a(window).off("resize.bs.modal")},c.prototype.hideModal=function(){var a=this;this.$element.hide(),this.backdrop(function(){a.$body.removeClass("modal-open"),a.resetAdjustments(),a.resetScrollbar(),a.$element.trigger("hidden.bs.modal")})},c.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},c.prototype.backdrop=function(b){var d=this,e=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var f=a.support.transition&&e;if(this.$backdrop=a(document.createElement("div")).addClass("modal-backdrop "+e).appendTo(this.$body),this.$element.on("click.dismiss.bs.modal",a.proxy(function(a){return this.ignoreBackdropClick?void(this.ignoreBackdropClick=!1):void(a.target===a.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus():this.hide()))},this)),f&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!b)return;f?this.$backdrop.one("bsTransitionEnd",b).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):b()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("in");var g=function(){d.removeBackdrop(),b&&b()};a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one("bsTransitionEnd",g).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):g()}else b&&b()},c.prototype.handleUpdate=function(){this.adjustDialog()},c.prototype.adjustDialog=function(){var a=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth<a,this.scrollbarWidth=this.measureScrollbar()},c.prototype.setScrollbar=function(){var a=parseInt(this.$body.css("padding-right")||0,10);this.originalBodyPad=document.body.style.paddingRight||"",this.bodyIsOverflowing&&this.$body.css("padding-right",a+this.scrollbarWidth)},c.prototype.resetScrollbar=function(){this.$body.css("padding-right",this.originalBodyPad)},c.prototype.measureScrollbar=function(){var a=document.createElement("div");a.className="modal-scrollbar-measure",this.$body.append(a);var b=a.offsetWidth-a.clientWidth;return this.$body[0].removeChild(a),b};var d=a.fn.modal;a.fn.modal=b,a.fn.modal.Constructor=c,a.fn.modal.noConflict=function(){return a.fn.modal=d,this},a(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(c){var d=a(this),e=d.attr("href"),f=a(d.attr("data-target")||e&&e.replace(/.*(?=#[^\s]+$)/,"")),g=f.data("bs.modal")?"toggle":a.extend({remote:!/#/.test(e)&&e},f.data(),d.data());d.is("a")&&c.preventDefault(),f.one("show.bs.modal",function(a){a.isDefaultPrevented()||f.one("hidden.bs.modal",function(){d.is(":visible")&&d.trigger("focus")})}),b.call(f,g,this)})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tooltip"),f="object"==typeof b&&b;!e&&/destroy|hide/.test(b)||(e||d.data("bs.tooltip",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.type=null,this.options=null,this.enabled=null,this.timeout=null,this.hoverState=null,this.$element=null,this.inState=null,this.init("tooltip",a,b)};c.VERSION="3.3.7",c.TRANSITION_DURATION=150,c.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}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(a.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 e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusin"==b.type?"focus":"hover"]=!0),c.tip().hasClass("in")||"in"==c.hoverState?void(c.hoverState="in"):(clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.isInStateTrue=function(){for(var a in this.inState)if(this.inState[a])return!0;return!1},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);if(c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusout"==b.type?"focus":"hover"]=!1),!c.isInStateTrue())return clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide()},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.getPosition(this.$viewport);h="bottom"==h&&k.bottom+m>o.bottom?"top":"top"==h&&k.top-m<o.top?"bottom":"right"==h&&k.right+l>o.width?"left":"left"==h&&k.left-l<o.left?"right":h,f.removeClass(n).addClass(h)}var p=this.getCalculatedOffset(h,k,l,m);this.applyPlacement(p,h);var q=function(){var a=e.hoverState;e.$element.trigger("shown.bs."+e.type),e.hoverState=null,"out"==a&&e.leave(e)};a.support.transition&&this.$tip.hasClass("fade")?f.one("bsTransitionEnd",q).emulateTransitionEnd(c.TRANSITION_DURATION):q()}},c.prototype.applyPlacement=function(b,c){var d=this.tip(),e=d[0].offsetWidth,f=d[0].offsetHeight,g=parseInt(d.css("margin-top"),10),h=parseInt(d.css("margin-left"),10);isNaN(g)&&(g=0),isNaN(h)&&(h=0),b.top+=g,b.left+=h,a.offset.setOffset(d[0],a.extend({using:function(a){d.css({top:Math.round(a.top),left:Math.round(a.left)})}},b),0),d.addClass("in");var i=d[0].offsetWidth,j=d[0].offsetHeight;"top"==c&&j!=f&&(b.top=b.top+f-j);var k=this.getViewportAdjustedDelta(c,b,i,j);k.left?b.left+=k.left:b.top+=k.top;var l=/top|bottom/.test(c),m=l?2*k.left-e+i:2*k.top-f+j,n=l?"offsetWidth":"offsetHeight";d.offset(b),this.replaceArrow(m,d[0][n],l)},c.prototype.replaceArrow=function(a,b,c){this.arrow().css(c?"left":"top",50*(1-a/b)+"%").css(c?"top":"left","")},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},c.prototype.hide=function(b){function d(){"in"!=e.hoverState&&f.detach(),e.$element&&e.$element.removeAttr("aria-describedby").trigger("hidden.bs."+e.type),b&&b()}var e=this,f=a(this.$tip),g=a.Event("hide.bs."+this.type);if(this.$element.trigger(g),!g.isDefaultPrevented())return f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one("bsTransitionEnd",d).emulateTransitionEnd(c.TRANSITION_DURATION):d(),this.hoverState=null,this},c.prototype.fixTitle=function(){var a=this.$element;(a.attr("title")||"string"!=typeof a.attr("data-original-title"))&&a.attr("data-original-title",a.attr("title")||"").attr("title","")},c.prototype.hasContent=function(){return this.getTitle()},c.prototype.getPosition=function(b){b=b||this.$element;var c=b[0],d="BODY"==c.tagName,e=c.getBoundingClientRect();null==e.width&&(e=a.extend({},e,{width:e.right-e.left,height:e.bottom-e.top}));var f=window.SVGElement&&c instanceof window.SVGElement,g=d?{top:0,left:0}:f?null:b.offset(),h={scroll:d?document.documentElement.scrollTop||document.body.scrollTop:b.scrollTop()},i=d?{width:a(window).width(),height:a(window).height()}:null;return a.extend({},e,h,i,g)},c.prototype.getCalculatedOffset=function(a,b,c,d){return"bottom"==a?{top:b.top+b.height,left:b.left+b.width/2-c/2}:"top"==a?{top:b.top-d,left:b.left+b.width/2-c/2}:"left"==a?{top:b.top+b.height/2-d/2,left:b.left-c}:{top:b.top+b.height/2-d/2,left:b.left+b.width}},c.prototype.getViewportAdjustedDelta=function(a,b,c,d){var e={top:0,left:0};if(!this.$viewport)return e;var f=this.options.viewport&&this.options.viewport.padding||0,g=this.getPosition(this.$viewport);if(/right|left/.test(a)){var h=b.top-f-g.scroll,i=b.top+f-g.scroll+d;h<g.top?e.top=g.top-h:i>g.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;j<g.left?e.left=g.left-j:k>g.right&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){if(!this.$tip&&(this.$tip=a(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},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),b?(c.inState.click=!c.inState.click,c.isInStateTrue()?c.enter(c):c.leave(c)):c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type),a.$tip&&a.$tip.detach(),a.$tip=null,a.$arrow=null,a.$viewport=null,a.$element=null})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;!e&&/destroy|hide/.test(b)||(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.7",c.DEFAULTS=a.extend({},a.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>'}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.7",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b<e[0])return this.activeTarget=null,this.clear();for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(void 0===e[a+1]||b<e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){
  11. this.activeTarget=b,this.clear();var c=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',d=a(c).parents("li").addClass("active");d.parent(".dropdown-menu").length&&(d=d.closest("li.dropdown").addClass("active")),d.trigger("activate.bs.scrollspy")},b.prototype.clear=function(){a(this.selector).parentsUntil(this.options.target,".active").removeClass("active")};var d=a.fn.scrollspy;a.fn.scrollspy=c,a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=d,this},a(window).on("load.bs.scrollspy.data-api",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);c.call(b,b.data())})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new c(this)),"string"==typeof b&&e[b]()})}var c=function(b){this.element=a(b)};c.VERSION="3.3.7",c.TRANSITION_DURATION=150,c.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.data("target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){var e=c.find(".active:last a"),f=a.Event("hide.bs.tab",{relatedTarget:b[0]}),g=a.Event("show.bs.tab",{relatedTarget:e[0]});if(e.trigger(f),b.trigger(g),!g.isDefaultPrevented()&&!f.isDefaultPrevented()){var h=a(d);this.activate(b.closest("li"),c),this.activate(h,h.parent(),function(){e.trigger({type:"hidden.bs.tab",relatedTarget:b[0]}),b.trigger({type:"shown.bs.tab",relatedTarget:e[0]})})}}},c.prototype.activate=function(b,d,e){function f(){g.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.7",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return e<c&&"top";if("bottom"==this.affixed)return null!=c?!(e+this.unpin<=f.top)&&"bottom":!(e+g<=a-d)&&"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&e<=c?"top":null!=d&&i+j>=a-d&&"bottom"},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=Math.max(a(document).height(),a(document.body).height());"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery);
  12. define("bootstrap", ["jquery"], function(){});
  13. require.config({
  14. urlArgs: "v=" + requirejs.s.contexts._.config.config.site.version,
  15. packages: [{
  16. name: 'moment',
  17. location: '../libs/moment',
  18. main: 'moment'
  19. }
  20. ],
  21. //在打包压缩时将会把include中的模块合并到主文件中
  22. include: ['css', 'layer', 'toastr', 'fast', 'backend', 'backend-init', 'table', 'form', 'dragsort', 'drag', 'drop', 'addtabs', 'selectpage'],
  23. paths: {
  24. 'lang': "empty:",
  25. 'form': 'require-form',
  26. 'table': 'require-table',
  27. 'upload': 'require-upload',
  28. 'validator': 'require-validator',
  29. 'drag': 'jquery.drag.min',
  30. 'drop': 'jquery.drop.min',
  31. 'echarts': 'echarts.min',
  32. 'echarts-theme': 'echarts-theme',
  33. 'adminlte': 'adminlte',
  34. 'bootstrap-table-commonsearch': 'bootstrap-table-commonsearch',
  35. 'bootstrap-table-template': 'bootstrap-table-template',
  36. //
  37. // 以下的包从bower的libs目录加载
  38. 'jquery': '../libs/jquery/dist/jquery.min',
  39. 'bootstrap': '../libs/bootstrap/dist/js/bootstrap.min',
  40. 'bootstrap-datetimepicker': '../libs/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min',
  41. 'bootstrap-daterangepicker': '../libs/bootstrap-daterangepicker/daterangepicker',
  42. 'bootstrap-select': '../libs/bootstrap-select/dist/js/bootstrap-select.min',
  43. 'bootstrap-select-lang': '../libs/bootstrap-select/dist/js/i18n/defaults-zh_CN',
  44. 'bootstrap-table': '../libs/bootstrap-table/dist/bootstrap-table.min',
  45. 'bootstrap-table-export': '../libs/bootstrap-table/dist/extensions/export/bootstrap-table-export.min',
  46. 'bootstrap-table-mobile': '../libs/bootstrap-table/dist/extensions/mobile/bootstrap-table-mobile',
  47. 'bootstrap-table-lang': '../libs/bootstrap-table/dist/locale/bootstrap-table-zh-CN',
  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/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/city-picker/dist/js/city-picker.min',
  64. 'citypicker-data': '../libs/city-picker/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/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/city-picker/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||{},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&&!o.config.skin)&&(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) {
  684. return /^(?:[a-z]+:)?\/\//i.test(url) ? url : Config.upload.cdnurl + url;
  685. },
  686. //查询Url参数
  687. query: function (name, url) {
  688. if (!url) {
  689. url = window.location.href;
  690. }
  691. name = name.replace(/[\[\]]/g, "\\$&");
  692. var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"),
  693. results = regex.exec(url);
  694. if (!results)
  695. return null;
  696. if (!results[2])
  697. return '';
  698. return decodeURIComponent(results[2].replace(/\+/g, " "));
  699. },
  700. //打开一个弹出窗口
  701. open: function (url, title, options) {
  702. title = title ? title : "";
  703. url = Fast.api.fixurl(url);
  704. url = url + (url.indexOf("?") > -1 ? "&" : "?") + "dialog=1";
  705. var area = [$(window).width() > 800 ? '800px' : '95%', $(window).height() > 600 ? '600px' : '95%'];
  706. options = $.extend({
  707. type: 2,
  708. title: title,
  709. shadeClose: true,
  710. shade: false,
  711. maxmin: true,
  712. moveOut: true,
  713. area: area,
  714. content: url,
  715. zIndex: Layer.zIndex,
  716. success: function (layero, index) {
  717. var that = this;
  718. //存储callback事件
  719. $(layero).data("callback", that.callback);
  720. //$(layero).removeClass("layui-layer-border");
  721. Layer.setTop(layero);
  722. var frame = Layer.getChildFrame('html', index);
  723. var layerfooter = frame.find(".layer-footer");
  724. Fast.api.layerfooter(layero, index, that);
  725. //绑定事件
  726. if (layerfooter.size() > 0) {
  727. // 监听窗口内的元素及属性变化
  728. // Firefox和Chrome早期版本中带有前缀
  729. var MutationObserver = window.MutationObserver || window.WebKitMutationObserver || window.MozMutationObserver
  730. // 选择目标节点
  731. var target = layerfooter[0];
  732. // 创建观察者对象
  733. var observer = new MutationObserver(function (mutations) {
  734. Fast.api.layerfooter(layero, index, that);
  735. mutations.forEach(function (mutation) {
  736. });
  737. });
  738. // 配置观察选项:
  739. var config = {attributes: true, childList: true, characterData: true, subtree: true}
  740. // 传入目标节点和观察选项
  741. observer.observe(target, config);
  742. // 随后,你还可以停止观察
  743. // observer.disconnect();
  744. }
  745. }
  746. }, options ? options : {});
  747. if ($(window).width() < 480 || (/iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream && top.$(".tab-pane.active").size() > 0)) {
  748. options.area = [top.$(".tab-pane.active").width() + "px", top.$(".tab-pane.active").height() + "px"];
  749. options.offset = [top.$(".tab-pane.active").scrollTop() + "px", "0px"];
  750. }
  751. return Layer.open(options);
  752. },
  753. //关闭窗口并回传数据
  754. close: function (data) {
  755. var index = parent.Layer.getFrameIndex(window.name);
  756. var callback = parent.$("#layui-layer" + index).data("callback");
  757. //再执行关闭
  758. parent.Layer.close(index);
  759. //再调用回传函数
  760. if (typeof callback === 'function') {
  761. callback.call(undefined, data);
  762. }
  763. },
  764. layerfooter: function (layero, index, that) {
  765. var frame = Layer.getChildFrame('html', index);
  766. var layerfooter = frame.find(".layer-footer");
  767. if (layerfooter.size() > 0) {
  768. $(".layui-layer-footer", layero).remove();
  769. var footer = $("<div />").addClass('layui-layer-btn layui-layer-footer');
  770. footer.html(layerfooter.html());
  771. if ($(".row", footer).size() === 0) {
  772. $(">", footer).wrapAll("<div class='row'></div>");
  773. }
  774. footer.insertAfter(layero.find('.layui-layer-content'));
  775. //绑定事件
  776. footer.on("click", ".btn", function () {
  777. if ($(this).hasClass("disabled") || $(this).parent().hasClass("disabled")) {
  778. return;
  779. }
  780. $(".btn:eq(" + $(this).index() + ")", layerfooter).trigger("click");
  781. });
  782. var titHeight = layero.find('.layui-layer-title').outerHeight() || 0;
  783. var btnHeight = layero.find('.layui-layer-btn').outerHeight() || 0;
  784. //重设iframe高度
  785. $("iframe", layero).height(layero.height() - titHeight - btnHeight);
  786. }
  787. //修复iOS下弹出窗口的高度和iOS下iframe无法滚动的BUG
  788. if (/iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream) {
  789. var titHeight = layero.find('.layui-layer-title').outerHeight() || 0;
  790. var btnHeight = layero.find('.layui-layer-btn').outerHeight() || 0;
  791. $("iframe", layero).parent().css("height", layero.height() - titHeight - btnHeight);
  792. $("iframe", layero).css("height", "100%");
  793. }
  794. },
  795. success: function (options, callback) {
  796. var type = typeof options === 'function';
  797. if (type) {
  798. callback = options;
  799. }
  800. return Layer.msg(__('Operation completed'), $.extend({
  801. offset: 0, icon: 1
  802. }, type ? {} : options), callback);
  803. },
  804. error: function (options, callback) {
  805. var type = typeof options === 'function';
  806. if (type) {
  807. callback = options;
  808. }
  809. return Layer.msg(__('Operation failed'), $.extend({
  810. offset: 0, icon: 2
  811. }, type ? {} : options), callback);
  812. },
  813. toastr: Toastr,
  814. layer: Layer
  815. },
  816. lang: function () {
  817. var args = arguments,
  818. string = args[0],
  819. i = 1;
  820. string = string.toLowerCase();
  821. //string = typeof Lang[string] != 'undefined' ? Lang[string] : string;
  822. if (typeof Lang[string] != 'undefined') {
  823. if (typeof Lang[string] == 'object')
  824. return Lang[string];
  825. string = Lang[string];
  826. } else if (string.indexOf('.') !== -1 && false) {
  827. var arr = string.split('.');
  828. var current = Lang[arr[0]];
  829. for (var i = 1; i < arr.length; i++) {
  830. current = typeof current[arr[i]] != 'undefined' ? current[arr[i]] : '';
  831. if (typeof current != 'object')
  832. break;
  833. }
  834. if (typeof current == 'object')
  835. return current;
  836. string = current;
  837. } else {
  838. string = args[0];
  839. }
  840. return string.replace(/%((%)|s|d)/g, function (m) {
  841. // m is the matched format, e.g. %s, %d
  842. var val = null;
  843. if (m[2]) {
  844. val = m[2];
  845. } else {
  846. val = args[i];
  847. // A switch statement so that the formatter can be extended. Default is %s
  848. switch (m) {
  849. case '%d':
  850. val = parseFloat(val);
  851. if (isNaN(val)) {
  852. val = 0;
  853. }
  854. break;
  855. }
  856. i++;
  857. }
  858. return val;
  859. });
  860. },
  861. init: function () {
  862. // 对相对地址进行处理
  863. $.ajaxSetup({
  864. beforeSend: function (xhr, setting) {
  865. setting.url = Fast.api.fixurl(setting.url);
  866. }
  867. });
  868. Layer.config({
  869. skin: 'layui-layer-fast'
  870. });
  871. // 绑定ESC关闭窗口事件
  872. $(window).keyup(function (e) {
  873. if (e.keyCode == 27) {
  874. if ($(".layui-layer").size() > 0) {
  875. var index = 0;
  876. $(".layui-layer").each(function () {
  877. index = Math.max(index, parseInt($(this).attr("times")));
  878. });
  879. if (index) {
  880. Layer.close(index);
  881. }
  882. }
  883. }
  884. });
  885. //公共代码
  886. //配置Toastr的参数
  887. Toastr.options = Fast.config.toastr;
  888. }
  889. };
  890. //将Layer暴露到全局中去
  891. window.Layer = Layer;
  892. //将Toastr暴露到全局中去
  893. window.Toastr = Toastr;
  894. //将语言方法暴露到全局中去
  895. window.__ = Fast.lang;
  896. //将Fast渲染至全局
  897. window.Fast = Fast;
  898. //默认初始化执行的代码
  899. Fast.init();
  900. return Fast;
  901. });
  902. /*!art-template - Template Engine | http://aui.github.com/artTemplate/*/
  903. !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}();
  904. //! moment.js
  905. //! version : 2.15.2
  906. //! authors : Tim Wood, Iskren Chernev, Moment.js contributors
  907. //! license : MIT
  908. //! momentjs.com
  909. ;(function (global, factory) {
  910. typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
  911. typeof define === 'function' && define.amd ? define('moment/moment',factory) :
  912. global.moment = factory()
  913. }(this, function () { 'use strict';
  914. var hookCallback;
  915. function utils_hooks__hooks () {
  916. return hookCallback.apply(null, arguments);
  917. }
  918. // This is done to register the method called with moment()
  919. // without creating circular dependencies.
  920. function setHookCallback (callback) {
  921. hookCallback = callback;
  922. }
  923. function isArray(input) {
  924. return input instanceof Array || Object.prototype.toString.call(input) === '[object Array]';
  925. }
  926. function isObject(input) {
  927. // IE8 will treat undefined and null as object if it wasn't for
  928. // input != null
  929. return input != null && Object.prototype.toString.call(input) === '[object Object]';
  930. }
  931. function isObjectEmpty(obj) {
  932. var k;
  933. for (k in obj) {
  934. // even if its not own property I'd still call it non-empty
  935. return false;
  936. }
  937. return true;
  938. }
  939. function isDate(input) {
  940. return input instanceof Date || Object.prototype.toString.call(input) === '[object Date]';
  941. }
  942. function map(arr, fn) {
  943. var res = [], i;
  944. for (i = 0; i < arr.length; ++i) {
  945. res.push(fn(arr[i], i));
  946. }
  947. return res;
  948. }
  949. function hasOwnProp(a, b) {
  950. return Object.prototype.hasOwnProperty.call(a, b);
  951. }
  952. function extend(a, b) {
  953. for (var i in b) {
  954. if (hasOwnProp(b, i)) {
  955. a[i] = b[i];
  956. }
  957. }
  958. if (hasOwnProp(b, 'toString')) {
  959. a.toString = b.toString;
  960. }
  961. if (hasOwnProp(b, 'valueOf')) {
  962. a.valueOf = b.valueOf;
  963. }
  964. return a;
  965. }
  966. function create_utc__createUTC (input, format, locale, strict) {
  967. return createLocalOrUTC(input, format, locale, strict, true).utc();
  968. }
  969. function defaultParsingFlags() {
  970. // We need to deep clone this object.
  971. return {
  972. empty : false,
  973. unusedTokens : [],
  974. unusedInput : [],
  975. overflow : -2,
  976. charsLeftOver : 0,
  977. nullInput : false,
  978. invalidMonth : null,
  979. invalidFormat : false,
  980. userInvalidated : false,
  981. iso : false,
  982. parsedDateParts : [],
  983. meridiem : null
  984. };
  985. }
  986. function getParsingFlags(m) {
  987. if (m._pf == null) {
  988. m._pf = defaultParsingFlags();
  989. }
  990. return m._pf;
  991. }
  992. var some;
  993. if (Array.prototype.some) {
  994. some = Array.prototype.some;
  995. } else {
  996. some = function (fun) {
  997. var t = Object(this);
  998. var len = t.length >>> 0;
  999. for (var i = 0; i < len; i++) {
  1000. if (i in t && fun.call(this, t[i], i, t)) {
  1001. return true;
  1002. }
  1003. }
  1004. return false;
  1005. };
  1006. }
  1007. function valid__isValid(m) {
  1008. if (m._isValid == null) {
  1009. var flags = getParsingFlags(m);
  1010. var parsedParts = some.call(flags.parsedDateParts, function (i) {
  1011. return i != null;
  1012. });
  1013. var isNowValid = !isNaN(m._d.getTime()) &&
  1014. flags.overflow < 0 &&
  1015. !flags.empty &&
  1016. !flags.invalidMonth &&
  1017. !flags.invalidWeekday &&
  1018. !flags.nullInput &&
  1019. !flags.invalidFormat &&
  1020. !flags.userInvalidated &&
  1021. (!flags.meridiem || (flags.meridiem && parsedParts));
  1022. if (m._strict) {
  1023. isNowValid = isNowValid &&
  1024. flags.charsLeftOver === 0 &&
  1025. flags.unusedTokens.length === 0 &&
  1026. flags.bigHour === undefined;
  1027. }
  1028. if (Object.isFrozen == null || !Object.isFrozen(m)) {
  1029. m._isValid = isNowValid;
  1030. }
  1031. else {
  1032. return isNowValid;
  1033. }
  1034. }
  1035. return m._isValid;
  1036. }
  1037. function valid__createInvalid (flags) {
  1038. var m = create_utc__createUTC(NaN);
  1039. if (flags != null) {
  1040. extend(getParsingFlags(m), flags);
  1041. }
  1042. else {
  1043. getParsingFlags(m).userInvalidated = true;
  1044. }
  1045. return m;
  1046. }
  1047. function isUndefined(input) {
  1048. return input === void 0;
  1049. }
  1050. // Plugins that add properties should also add the key here (null value),
  1051. // so we can properly clone ourselves.
  1052. var momentProperties = utils_hooks__hooks.momentProperties = [];
  1053. function copyConfig(to, from) {
  1054. var i, prop, val;
  1055. if (!isUndefined(from._isAMomentObject)) {
  1056. to._isAMomentObject = from._isAMomentObject;
  1057. }
  1058. if (!isUndefined(from._i)) {
  1059. to._i = from._i;
  1060. }
  1061. if (!isUndefined(from._f)) {
  1062. to._f = from._f;
  1063. }
  1064. if (!isUndefined(from._l)) {
  1065. to._l = from._l;
  1066. }
  1067. if (!isUndefined(from._strict)) {
  1068. to._strict = from._strict;
  1069. }
  1070. if (!isUndefined(from._tzm)) {
  1071. to._tzm = from._tzm;
  1072. }
  1073. if (!isUndefined(from._isUTC)) {
  1074. to._isUTC = from._isUTC;
  1075. }
  1076. if (!isUndefined(from._offset)) {
  1077. to._offset = from._offset;
  1078. }
  1079. if (!isUndefined(from._pf)) {
  1080. to._pf = getParsingFlags(from);
  1081. }
  1082. if (!isUndefined(from._locale)) {
  1083. to._locale = from._locale;
  1084. }
  1085. if (momentProperties.length > 0) {
  1086. for (i in momentProperties) {
  1087. prop = momentProperties[i];
  1088. val = from[prop];
  1089. if (!isUndefined(val)) {
  1090. to[prop] = val;
  1091. }
  1092. }
  1093. }
  1094. return to;
  1095. }
  1096. var updateInProgress = false;
  1097. // Moment prototype object
  1098. function Moment(config) {
  1099. copyConfig(this, config);
  1100. this._d = new Date(config._d != null ? config._d.getTime() : NaN);
  1101. // Prevent infinite loop in case updateOffset creates new moment
  1102. // objects.
  1103. if (updateInProgress === false) {
  1104. updateInProgress = true;
  1105. utils_hooks__hooks.updateOffset(this);
  1106. updateInProgress = false;
  1107. }
  1108. }
  1109. function isMoment (obj) {
  1110. return obj instanceof Moment || (obj != null && obj._isAMomentObject != null);
  1111. }
  1112. function absFloor (number) {
  1113. if (number < 0) {
  1114. // -0 -> 0
  1115. return Math.ceil(number) || 0;
  1116. } else {
  1117. return Math.floor(number);
  1118. }
  1119. }
  1120. function toInt(argumentForCoercion) {
  1121. var coercedNumber = +argumentForCoercion,
  1122. value = 0;
  1123. if (coercedNumber !== 0 && isFinite(coercedNumber)) {
  1124. value = absFloor(coercedNumber);
  1125. }
  1126. return value;
  1127. }
  1128. // compare two arrays, return the number of differences
  1129. function compareArrays(array1, array2, dontConvert) {
  1130. var len = Math.min(array1.length, array2.length),
  1131. lengthDiff = Math.abs(array1.length - array2.length),
  1132. diffs = 0,
  1133. i;
  1134. for (i = 0; i < len; i++) {
  1135. if ((dontConvert && array1[i] !== array2[i]) ||
  1136. (!dontConvert && toInt(array1[i]) !== toInt(array2[i]))) {
  1137. diffs++;
  1138. }
  1139. }
  1140. return diffs + lengthDiff;
  1141. }
  1142. function warn(msg) {
  1143. if (utils_hooks__hooks.suppressDeprecationWarnings === false &&
  1144. (typeof console !== 'undefined') && console.warn) {
  1145. console.warn('Deprecation warning: ' + msg);
  1146. }
  1147. }
  1148. function deprecate(msg, fn) {
  1149. var firstTime = true;
  1150. return extend(function () {
  1151. if (utils_hooks__hooks.deprecationHandler != null) {
  1152. utils_hooks__hooks.deprecationHandler(null, msg);
  1153. }
  1154. if (firstTime) {
  1155. var args = [];
  1156. var arg;
  1157. for (var i = 0; i < arguments.length; i++) {
  1158. arg = '';
  1159. if (typeof arguments[i] === 'object') {
  1160. arg += '\n[' + i + '] ';
  1161. for (var key in arguments[0]) {
  1162. arg += key + ': ' + arguments[0][key] + ', ';
  1163. }
  1164. arg = arg.slice(0, -2); // Remove trailing comma and space
  1165. } else {
  1166. arg = arguments[i];
  1167. }
  1168. args.push(arg);
  1169. }
  1170. warn(msg + '\nArguments: ' + Array.prototype.slice.call(args).join('') + '\n' + (new Error()).stack);
  1171. firstTime = false;
  1172. }
  1173. return fn.apply(this, arguments);
  1174. }, fn);
  1175. }
  1176. var deprecations = {};
  1177. function deprecateSimple(name, msg) {
  1178. if (utils_hooks__hooks.deprecationHandler != null) {
  1179. utils_hooks__hooks.deprecationHandler(name, msg);
  1180. }
  1181. if (!deprecations[name]) {
  1182. warn(msg);
  1183. deprecations[name] = true;
  1184. }
  1185. }
  1186. utils_hooks__hooks.suppressDeprecationWarnings = false;
  1187. utils_hooks__hooks.deprecationHandler = null;
  1188. function isFunction(input) {
  1189. return input instanceof Function || Object.prototype.toString.call(input) === '[object Function]';
  1190. }
  1191. function locale_set__set (config) {
  1192. var prop, i;
  1193. for (i in config) {
  1194. prop = config[i];
  1195. if (isFunction(prop)) {
  1196. this[i] = prop;
  1197. } else {
  1198. this['_' + i] = prop;
  1199. }
  1200. }
  1201. this._config = config;
  1202. // Lenient ordinal parsing accepts just a number in addition to
  1203. // number + (possibly) stuff coming from _ordinalParseLenient.
  1204. this._ordinalParseLenient = new RegExp(this._ordinalParse.source + '|' + (/\d{1,2}/).source);
  1205. }
  1206. function mergeConfigs(parentConfig, childConfig) {
  1207. var res = extend({}, parentConfig), prop;
  1208. for (prop in childConfig) {
  1209. if (hasOwnProp(childConfig, prop)) {
  1210. if (isObject(parentConfig[prop]) && isObject(childConfig[prop])) {
  1211. res[prop] = {};
  1212. extend(res[prop], parentConfig[prop]);
  1213. extend(res[prop], childConfig[prop]);
  1214. } else if (childConfig[prop] != null) {
  1215. res[prop] = childConfig[prop];
  1216. } else {
  1217. delete res[prop];
  1218. }
  1219. }
  1220. }
  1221. for (prop in parentConfig) {
  1222. if (hasOwnProp(parentConfig, prop) &&
  1223. !hasOwnProp(childConfig, prop) &&
  1224. isObject(parentConfig[prop])) {
  1225. // make sure changes to properties don't modify parent config
  1226. res[prop] = extend({}, res[prop]);
  1227. }
  1228. }
  1229. return res;
  1230. }
  1231. function Locale(config) {
  1232. if (config != null) {
  1233. this.set(config);
  1234. }
  1235. }
  1236. var keys;
  1237. if (Object.keys) {
  1238. keys = Object.keys;
  1239. } else {
  1240. keys = function (obj) {
  1241. var i, res = [];
  1242. for (i in obj) {
  1243. if (hasOwnProp(obj, i)) {
  1244. res.push(i);
  1245. }
  1246. }
  1247. return res;
  1248. };
  1249. }
  1250. var defaultCalendar = {
  1251. sameDay : '[Today at] LT',
  1252. nextDay : '[Tomorrow at] LT',
  1253. nextWeek : 'dddd [at] LT',
  1254. lastDay : '[Yesterday at] LT',
  1255. lastWeek : '[Last] dddd [at] LT',
  1256. sameElse : 'L'
  1257. };
  1258. function locale_calendar__calendar (key, mom, now) {
  1259. var output = this._calendar[key] || this._calendar['sameElse'];
  1260. return isFunction(output) ? output.call(mom, now) : output;
  1261. }
  1262. var defaultLongDateFormat = {
  1263. LTS : 'h:mm:ss A',
  1264. LT : 'h:mm A',
  1265. L : 'MM/DD/YYYY',
  1266. LL : 'MMMM D, YYYY',
  1267. LLL : 'MMMM D, YYYY h:mm A',
  1268. LLLL : 'dddd, MMMM D, YYYY h:mm A'
  1269. };
  1270. function longDateFormat (key) {
  1271. var format = this._longDateFormat[key],
  1272. formatUpper = this._longDateFormat[key.toUpperCase()];
  1273. if (format || !formatUpper) {
  1274. return format;
  1275. }
  1276. this._longDateFormat[key] = formatUpper.replace(/MMMM|MM|DD|dddd/g, function (val) {
  1277. return val.slice(1);
  1278. });
  1279. return this._longDateFormat[key];
  1280. }
  1281. var defaultInvalidDate = 'Invalid date';
  1282. function invalidDate () {
  1283. return this._invalidDate;
  1284. }
  1285. var defaultOrdinal = '%d';
  1286. var defaultOrdinalParse = /\d{1,2}/;
  1287. function ordinal (number) {
  1288. return this._ordinal.replace('%d', number);
  1289. }
  1290. var defaultRelativeTime = {
  1291. future : 'in %s',
  1292. past : '%s ago',
  1293. s : 'a few seconds',
  1294. m : 'a minute',
  1295. mm : '%d minutes',
  1296. h : 'an hour',
  1297. hh : '%d hours',
  1298. d : 'a day',
  1299. dd : '%d days',
  1300. M : 'a month',
  1301. MM : '%d months',
  1302. y : 'a year',
  1303. yy : '%d years'
  1304. };
  1305. function relative__relativeTime (number, withoutSuffix, string, isFuture) {
  1306. var output = this._relativeTime[string];
  1307. return (isFunction(output)) ?
  1308. output(number, withoutSuffix, string, isFuture) :
  1309. output.replace(/%d/i, number);
  1310. }
  1311. function pastFuture (diff, output) {
  1312. var format = this._relativeTime[diff > 0 ? 'future' : 'past'];
  1313. return isFunction(format) ? format(output) : format.replace(/%s/i, output);
  1314. }
  1315. var aliases = {};
  1316. function addUnitAlias (unit, shorthand) {
  1317. var lowerCase = unit.toLowerCase();
  1318. aliases[lowerCase] = aliases[lowerCase + 's'] = aliases[shorthand] = unit;
  1319. }
  1320. function normalizeUnits(units) {
  1321. return typeof units === 'string' ? aliases[units] || aliases[units.toLowerCase()] : undefined;
  1322. }
  1323. function normalizeObjectUnits(inputObject) {
  1324. var normalizedInput = {},
  1325. normalizedProp,
  1326. prop;
  1327. for (prop in inputObject) {
  1328. if (hasOwnProp(inputObject, prop)) {
  1329. normalizedProp = normalizeUnits(prop);
  1330. if (normalizedProp) {
  1331. normalizedInput[normalizedProp] = inputObject[prop];
  1332. }
  1333. }
  1334. }
  1335. return normalizedInput;
  1336. }
  1337. var priorities = {};
  1338. function addUnitPriority(unit, priority) {
  1339. priorities[unit] = priority;
  1340. }
  1341. function getPrioritizedUnits(unitsObj) {
  1342. var units = [];
  1343. for (var u in unitsObj) {
  1344. units.push({unit: u, priority: priorities[u]});
  1345. }
  1346. units.sort(function (a, b) {
  1347. return a.priority - b.priority;
  1348. });
  1349. return units;
  1350. }
  1351. function makeGetSet (unit, keepTime) {
  1352. return function (value) {
  1353. if (value != null) {
  1354. get_set__set(this, unit, value);
  1355. utils_hooks__hooks.updateOffset(this, keepTime);
  1356. return this;
  1357. } else {
  1358. return get_set__get(this, unit);
  1359. }
  1360. };
  1361. }
  1362. function get_set__get (mom, unit) {
  1363. return mom.isValid() ?
  1364. mom._d['get' + (mom._isUTC ? 'UTC' : '') + unit]() : NaN;
  1365. }
  1366. function get_set__set (mom, unit, value) {
  1367. if (mom.isValid()) {
  1368. mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value);
  1369. }
  1370. }
  1371. // MOMENTS
  1372. function stringGet (units) {
  1373. units = normalizeUnits(units);
  1374. if (isFunction(this[units])) {
  1375. return this[units]();
  1376. }
  1377. return this;
  1378. }
  1379. function stringSet (units, value) {
  1380. if (typeof units === 'object') {
  1381. units = normalizeObjectUnits(units);
  1382. var prioritized = getPrioritizedUnits(units);
  1383. for (var i = 0; i < prioritized.length; i++) {
  1384. this[prioritized[i].unit](units[prioritized[i].unit]);
  1385. }
  1386. } else {
  1387. units = normalizeUnits(units);
  1388. if (isFunction(this[units])) {
  1389. return this[units](value);
  1390. }
  1391. }
  1392. return this;
  1393. }
  1394. function zeroFill(number, targetLength, forceSign) {
  1395. var absNumber = '' + Math.abs(number),
  1396. zerosToFill = targetLength - absNumber.length,
  1397. sign = number >= 0;
  1398. return (sign ? (forceSign ? '+' : '') : '-') +
  1399. Math.pow(10, Math.max(0, zerosToFill)).toString().substr(1) + absNumber;
  1400. }
  1401. 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;
  1402. var localFormattingTokens = /(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g;
  1403. var formatFunctions = {};
  1404. var formatTokenFunctions = {};
  1405. // token: 'M'
  1406. // padded: ['MM', 2]
  1407. // ordinal: 'Mo'
  1408. // callback: function () { this.month() + 1 }
  1409. function addFormatToken (token, padded, ordinal, callback) {
  1410. var func = callback;
  1411. if (typeof callback === 'string') {
  1412. func = function () {
  1413. return this[callback]();
  1414. };
  1415. }
  1416. if (token) {
  1417. formatTokenFunctions[token] = func;
  1418. }
  1419. if (padded) {
  1420. formatTokenFunctions[padded[0]] = function () {
  1421. return zeroFill(func.apply(this, arguments), padded[1], padded[2]);
  1422. };
  1423. }
  1424. if (ordinal) {
  1425. formatTokenFunctions[ordinal] = function () {
  1426. return this.localeData().ordinal(func.apply(this, arguments), token);
  1427. };
  1428. }
  1429. }
  1430. function removeFormattingTokens(input) {
  1431. if (input.match(/\[[\s\S]/)) {
  1432. return input.replace(/^\[|\]$/g, '');
  1433. }
  1434. return input.replace(/\\/g, '');
  1435. }
  1436. function makeFormatFunction(format) {
  1437. var array = format.match(formattingTokens), i, length;
  1438. for (i = 0, length = array.length; i < length; i++) {
  1439. if (formatTokenFunctions[array[i]]) {
  1440. array[i] = formatTokenFunctions[array[i]];
  1441. } else {
  1442. array[i] = removeFormattingTokens(array[i]);
  1443. }
  1444. }
  1445. return function (mom) {
  1446. var output = '', i;
  1447. for (i = 0; i < length; i++) {
  1448. output += array[i] instanceof Function ? array[i].call(mom, format) : array[i];
  1449. }
  1450. return output;
  1451. };
  1452. }
  1453. // format date using native date object
  1454. function formatMoment(m, format) {
  1455. if (!m.isValid()) {
  1456. return m.localeData().invalidDate();
  1457. }
  1458. format = expandFormat(format, m.localeData());
  1459. formatFunctions[format] = formatFunctions[format] || makeFormatFunction(format);
  1460. return formatFunctions[format](m);
  1461. }
  1462. function expandFormat(format, locale) {
  1463. var i = 5;
  1464. function replaceLongDateFormatTokens(input) {
  1465. return locale.longDateFormat(input) || input;
  1466. }
  1467. localFormattingTokens.lastIndex = 0;
  1468. while (i >= 0 && localFormattingTokens.test(format)) {
  1469. format = format.replace(localFormattingTokens, replaceLongDateFormatTokens);
  1470. localFormattingTokens.lastIndex = 0;
  1471. i -= 1;
  1472. }
  1473. return format;
  1474. }
  1475. var match1 = /\d/; // 0 - 9
  1476. var match2 = /\d\d/; // 00 - 99
  1477. var match3 = /\d{3}/; // 000 - 999
  1478. var match4 = /\d{4}/; // 0000 - 9999
  1479. var match6 = /[+-]?\d{6}/; // -999999 - 999999
  1480. var match1to2 = /\d\d?/; // 0 - 99
  1481. var match3to4 = /\d\d\d\d?/; // 999 - 9999
  1482. var match5to6 = /\d\d\d\d\d\d?/; // 99999 - 999999
  1483. var match1to3 = /\d{1,3}/; // 0 - 999
  1484. var match1to4 = /\d{1,4}/; // 0 - 9999
  1485. var match1to6 = /[+-]?\d{1,6}/; // -999999 - 999999
  1486. var matchUnsigned = /\d+/; // 0 - inf
  1487. var matchSigned = /[+-]?\d+/; // -inf - inf
  1488. var matchOffset = /Z|[+-]\d\d:?\d\d/gi; // +00:00 -00:00 +0000 -0000 or Z
  1489. var matchShortOffset = /Z|[+-]\d\d(?::?\d\d)?/gi; // +00 -00 +00:00 -00:00 +0000 -0000 or Z
  1490. var matchTimestamp = /[+-]?\d+(\.\d{1,3})?/; // 123456789 123456789.123
  1491. // any word (or two) characters or numbers including two/three word month in arabic.
  1492. // includes scottish gaelic two word and hyphenated months
  1493. var matchWord = /[0-9]*['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+|[\u0600-\u06FF\/]+(\s*?[\u0600-\u06FF]+){1,2}/i;
  1494. var regexes = {};
  1495. function addRegexToken (token, regex, strictRegex) {
  1496. regexes[token] = isFunction(regex) ? regex : function (isStrict, localeData) {
  1497. return (isStrict && strictRegex) ? strictRegex : regex;
  1498. };
  1499. }
  1500. function getParseRegexForToken (token, config) {
  1501. if (!hasOwnProp(regexes, token)) {
  1502. return new RegExp(unescapeFormat(token));
  1503. }
  1504. return regexes[token](config._strict, config._locale);
  1505. }
  1506. // Code from http://stackoverflow.com/questions/3561493/is-there-a-regexp-escape-function-in-javascript
  1507. function unescapeFormat(s) {
  1508. return regexEscape(s.replace('\\', '').replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g, function (matched, p1, p2, p3, p4) {
  1509. return p1 || p2 || p3 || p4;
  1510. }));
  1511. }
  1512. function regexEscape(s) {
  1513. return s.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&');
  1514. }
  1515. var tokens = {};
  1516. function addParseToken (token, callback) {
  1517. var i, func = callback;
  1518. if (typeof token === 'string') {
  1519. token = [token];
  1520. }
  1521. if (typeof callback === 'number') {
  1522. func = function (input, array) {
  1523. array[callback] = toInt(input);
  1524. };
  1525. }
  1526. for (i = 0; i < token.length; i++) {
  1527. tokens[token[i]] = func;
  1528. }
  1529. }
  1530. function addWeekParseToken (token, callback) {
  1531. addParseToken(token, function (input, array, config, token) {
  1532. config._w = config._w || {};
  1533. callback(input, config._w, config, token);
  1534. });
  1535. }
  1536. function addTimeToArrayFromToken(token, input, config) {
  1537. if (input != null && hasOwnProp(tokens, token)) {
  1538. tokens[token](input, config._a, config, token);
  1539. }
  1540. }
  1541. var YEAR = 0;
  1542. var MONTH = 1;
  1543. var DATE = 2;
  1544. var HOUR = 3;
  1545. var MINUTE = 4;
  1546. var SECOND = 5;
  1547. var MILLISECOND = 6;
  1548. var WEEK = 7;
  1549. var WEEKDAY = 8;
  1550. var indexOf;
  1551. if (Array.prototype.indexOf) {
  1552. indexOf = Array.prototype.indexOf;
  1553. } else {
  1554. indexOf = function (o) {
  1555. // I know
  1556. var i;
  1557. for (i = 0; i < this.length; ++i) {
  1558. if (this[i] === o) {
  1559. return i;
  1560. }
  1561. }
  1562. return -1;
  1563. };
  1564. }
  1565. function daysInMonth(year, month) {
  1566. return new Date(Date.UTC(year, month + 1, 0)).getUTCDate();
  1567. }
  1568. // FORMATTING
  1569. addFormatToken('M', ['MM', 2], 'Mo', function () {
  1570. return this.month() + 1;
  1571. });
  1572. addFormatToken('MMM', 0, 0, function (format) {
  1573. return this.localeData().monthsShort(this, format);
  1574. });
  1575. addFormatToken('MMMM', 0, 0, function (format) {
  1576. return this.localeData().months(this, format);
  1577. });
  1578. // ALIASES
  1579. addUnitAlias('month', 'M');
  1580. // PRIORITY
  1581. addUnitPriority('month', 8);
  1582. // PARSING
  1583. addRegexToken('M', match1to2);
  1584. addRegexToken('MM', match1to2, match2);
  1585. addRegexToken('MMM', function (isStrict, locale) {
  1586. return locale.monthsShortRegex(isStrict);
  1587. });
  1588. addRegexToken('MMMM', function (isStrict, locale) {
  1589. return locale.monthsRegex(isStrict);
  1590. });
  1591. addParseToken(['M', 'MM'], function (input, array) {
  1592. array[MONTH] = toInt(input) - 1;
  1593. });
  1594. addParseToken(['MMM', 'MMMM'], function (input, array, config, token) {
  1595. var month = config._locale.monthsParse(input, token, config._strict);
  1596. // if we didn't find a month name, mark the date as invalid.
  1597. if (month != null) {
  1598. array[MONTH] = month;
  1599. } else {
  1600. getParsingFlags(config).invalidMonth = input;
  1601. }
  1602. });
  1603. // LOCALES
  1604. var MONTHS_IN_FORMAT = /D[oD]?(\[[^\[\]]*\]|\s)+MMMM?/;
  1605. var defaultLocaleMonths = 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_');
  1606. function localeMonths (m, format) {
  1607. if (!m) {
  1608. return this._months;
  1609. }
  1610. return isArray(this._months) ? this._months[m.month()] :
  1611. this._months[(this._months.isFormat || MONTHS_IN_FORMAT).test(format) ? 'format' : 'standalone'][m.month()];
  1612. }
  1613. var defaultLocaleMonthsShort = 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_');
  1614. function localeMonthsShort (m, format) {
  1615. if (!m) {
  1616. return this._monthsShort;
  1617. }
  1618. return isArray(this._monthsShort) ? this._monthsShort[m.month()] :
  1619. this._monthsShort[MONTHS_IN_FORMAT.test(format) ? 'format' : 'standalone'][m.month()];
  1620. }
  1621. function units_month__handleStrictParse(monthName, format, strict) {
  1622. var i, ii, mom, llc = monthName.toLocaleLowerCase();
  1623. if (!this._monthsParse) {
  1624. // this is not used
  1625. this._monthsParse = [];
  1626. this._longMonthsParse = [];
  1627. this._shortMonthsParse = [];
  1628. for (i = 0; i < 12; ++i) {
  1629. mom = create_utc__createUTC([2000, i]);
  1630. this._shortMonthsParse[i] = this.monthsShort(mom, '').toLocaleLowerCase();
  1631. this._longMonthsParse[i] = this.months(mom, '').toLocaleLowerCase();
  1632. }
  1633. }
  1634. if (strict) {
  1635. if (format === 'MMM') {
  1636. ii = indexOf.call(this._shortMonthsParse, llc);
  1637. return ii !== -1 ? ii : null;
  1638. } else {
  1639. ii = indexOf.call(this._longMonthsParse, llc);
  1640. return ii !== -1 ? ii : null;
  1641. }
  1642. } else {
  1643. if (format === 'MMM') {
  1644. ii = indexOf.call(this._shortMonthsParse, llc);
  1645. if (ii !== -1) {
  1646. return ii;
  1647. }
  1648. ii = indexOf.call(this._longMonthsParse, llc);
  1649. return ii !== -1 ? ii : null;
  1650. } else {
  1651. ii = indexOf.call(this._longMonthsParse, llc);
  1652. if (ii !== -1) {
  1653. return ii;
  1654. }
  1655. ii = indexOf.call(this._shortMonthsParse, llc);
  1656. return ii !== -1 ? ii : null;
  1657. }
  1658. }
  1659. }
  1660. function localeMonthsParse (monthName, format, strict) {
  1661. var i, mom, regex;
  1662. if (this._monthsParseExact) {
  1663. return units_month__handleStrictParse.call(this, monthName, format, strict);
  1664. }
  1665. if (!this._monthsParse) {
  1666. this._monthsParse = [];
  1667. this._longMonthsParse = [];
  1668. this._shortMonthsParse = [];
  1669. }
  1670. // TODO: add sorting
  1671. // Sorting makes sure if one month (or abbr) is a prefix of another
  1672. // see sorting in computeMonthsParse
  1673. for (i = 0; i < 12; i++) {
  1674. // make the regex if we don't have it already
  1675. mom = create_utc__createUTC([2000, i]);
  1676. if (strict && !this._longMonthsParse[i]) {
  1677. this._longMonthsParse[i] = new RegExp('^' + this.months(mom, '').replace('.', '') + '$', 'i');
  1678. this._shortMonthsParse[i] = new RegExp('^' + this.monthsShort(mom, '').replace('.', '') + '$', 'i');
  1679. }
  1680. if (!strict && !this._monthsParse[i]) {
  1681. regex = '^' + this.months(mom, '') + '|^' + this.monthsShort(mom, '');
  1682. this._monthsParse[i] = new RegExp(regex.replace('.', ''), 'i');
  1683. }
  1684. // test the regex
  1685. if (strict && format === 'MMMM' && this._longMonthsParse[i].test(monthName)) {
  1686. return i;
  1687. } else if (strict && format === 'MMM' && this._shortMonthsParse[i].test(monthName)) {
  1688. return i;
  1689. } else if (!strict && this._monthsParse[i].test(monthName)) {
  1690. return i;
  1691. }
  1692. }
  1693. }
  1694. // MOMENTS
  1695. function setMonth (mom, value) {
  1696. var dayOfMonth;
  1697. if (!mom.isValid()) {
  1698. // No op
  1699. return mom;
  1700. }
  1701. if (typeof value === 'string') {
  1702. if (/^\d+$/.test(value)) {
  1703. value = toInt(value);
  1704. } else {
  1705. value = mom.localeData().monthsParse(value);
  1706. // TODO: Another silent failure?
  1707. if (typeof value !== 'number') {
  1708. return mom;
  1709. }
  1710. }
  1711. }
  1712. dayOfMonth = Math.min(mom.date(), daysInMonth(mom.year(), value));
  1713. mom._d['set' + (mom._isUTC ? 'UTC' : '') + 'Month'](value, dayOfMonth);
  1714. return mom;
  1715. }
  1716. function getSetMonth (value) {
  1717. if (value != null) {
  1718. setMonth(this, value);
  1719. utils_hooks__hooks.updateOffset(this, true);
  1720. return this;
  1721. } else {
  1722. return get_set__get(this, 'Month');
  1723. }
  1724. }
  1725. function getDaysInMonth () {
  1726. return daysInMonth(this.year(), this.month());
  1727. }
  1728. var defaultMonthsShortRegex = matchWord;
  1729. function monthsShortRegex (isStrict) {
  1730. if (this._monthsParseExact) {
  1731. if (!hasOwnProp(this, '_monthsRegex')) {
  1732. computeMonthsParse.call(this);
  1733. }
  1734. if (isStrict) {
  1735. return this._monthsShortStrictRegex;
  1736. } else {
  1737. return this._monthsShortRegex;
  1738. }
  1739. } else {
  1740. if (!hasOwnProp(this, '_monthsShortRegex')) {
  1741. this._monthsShortRegex = defaultMonthsShortRegex;
  1742. }
  1743. return this._monthsShortStrictRegex && isStrict ?
  1744. this._monthsShortStrictRegex : this._monthsShortRegex;
  1745. }
  1746. }
  1747. var defaultMonthsRegex = matchWord;
  1748. function monthsRegex (isStrict) {
  1749. if (this._monthsParseExact) {
  1750. if (!hasOwnProp(this, '_monthsRegex')) {
  1751. computeMonthsParse.call(this);
  1752. }
  1753. if (isStrict) {
  1754. return this._monthsStrictRegex;
  1755. } else {
  1756. return this._monthsRegex;
  1757. }
  1758. } else {
  1759. if (!hasOwnProp(this, '_monthsRegex')) {
  1760. this._monthsRegex = defaultMonthsRegex;
  1761. }
  1762. return this._monthsStrictRegex && isStrict ?
  1763. this._monthsStrictRegex : this._monthsRegex;
  1764. }
  1765. }
  1766. function computeMonthsParse () {
  1767. function cmpLenRev(a, b) {
  1768. return b.length - a.length;
  1769. }
  1770. var shortPieces = [], longPieces = [], mixedPieces = [],
  1771. i, mom;
  1772. for (i = 0; i < 12; i++) {
  1773. // make the regex if we don't have it already
  1774. mom = create_utc__createUTC([2000, i]);
  1775. shortPieces.push(this.monthsShort(mom, ''));
  1776. longPieces.push(this.months(mom, ''));
  1777. mixedPieces.push(this.months(mom, ''));
  1778. mixedPieces.push(this.monthsShort(mom, ''));
  1779. }
  1780. // Sorting makes sure if one month (or abbr) is a prefix of another it
  1781. // will match the longer piece.
  1782. shortPieces.sort(cmpLenRev);
  1783. longPieces.sort(cmpLenRev);
  1784. mixedPieces.sort(cmpLenRev);
  1785. for (i = 0; i < 12; i++) {
  1786. shortPieces[i] = regexEscape(shortPieces[i]);
  1787. longPieces[i] = regexEscape(longPieces[i]);
  1788. }
  1789. for (i = 0; i < 24; i++) {
  1790. mixedPieces[i] = regexEscape(mixedPieces[i]);
  1791. }
  1792. this._monthsRegex = new RegExp('^(' + mixedPieces.join('|') + ')', 'i');
  1793. this._monthsShortRegex = this._monthsRegex;
  1794. this._monthsStrictRegex = new RegExp('^(' + longPieces.join('|') + ')', 'i');
  1795. this._monthsShortStrictRegex = new RegExp('^(' + shortPieces.join('|') + ')', 'i');
  1796. }
  1797. // FORMATTING
  1798. addFormatToken('Y', 0, 0, function () {
  1799. var y = this.year();
  1800. return y <= 9999 ? '' + y : '+' + y;
  1801. });
  1802. addFormatToken(0, ['YY', 2], 0, function () {
  1803. return this.year() % 100;
  1804. });
  1805. addFormatToken(0, ['YYYY', 4], 0, 'year');
  1806. addFormatToken(0, ['YYYYY', 5], 0, 'year');
  1807. addFormatToken(0, ['YYYYYY', 6, true], 0, 'year');
  1808. // ALIASES
  1809. addUnitAlias('year', 'y');
  1810. // PRIORITIES
  1811. addUnitPriority('year', 1);
  1812. // PARSING
  1813. addRegexToken('Y', matchSigned);
  1814. addRegexToken('YY', match1to2, match2);
  1815. addRegexToken('YYYY', match1to4, match4);
  1816. addRegexToken('YYYYY', match1to6, match6);
  1817. addRegexToken('YYYYYY', match1to6, match6);
  1818. addParseToken(['YYYYY', 'YYYYYY'], YEAR);
  1819. addParseToken('YYYY', function (input, array) {
  1820. array[YEAR] = input.length === 2 ? utils_hooks__hooks.parseTwoDigitYear(input) : toInt(input);
  1821. });
  1822. addParseToken('YY', function (input, array) {
  1823. array[YEAR] = utils_hooks__hooks.parseTwoDigitYear(input);
  1824. });
  1825. addParseToken('Y', function (input, array) {
  1826. array[YEAR] = parseInt(input, 10);
  1827. });
  1828. // HELPERS
  1829. function daysInYear(year) {
  1830. return isLeapYear(year) ? 366 : 365;
  1831. }
  1832. function isLeapYear(year) {
  1833. return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0;
  1834. }
  1835. // HOOKS
  1836. utils_hooks__hooks.parseTwoDigitYear = function (input) {
  1837. return toInt(input) + (toInt(input) > 68 ? 1900 : 2000);
  1838. };
  1839. // MOMENTS
  1840. var getSetYear = makeGetSet('FullYear', true);
  1841. function getIsLeapYear () {
  1842. return isLeapYear(this.year());
  1843. }
  1844. function createDate (y, m, d, h, M, s, ms) {
  1845. //can't just apply() to create a date:
  1846. //http://stackoverflow.com/questions/181348/instantiating-a-javascript-object-by-calling-prototype-constructor-apply
  1847. var date = new Date(y, m, d, h, M, s, ms);
  1848. //the date constructor remaps years 0-99 to 1900-1999
  1849. if (y < 100 && y >= 0 && isFinite(date.getFullYear())) {
  1850. date.setFullYear(y);
  1851. }
  1852. return date;
  1853. }
  1854. function createUTCDate (y) {
  1855. var date = new Date(Date.UTC.apply(null, arguments));
  1856. //the Date.UTC function remaps years 0-99 to 1900-1999
  1857. if (y < 100 && y >= 0 && isFinite(date.getUTCFullYear())) {
  1858. date.setUTCFullYear(y);
  1859. }
  1860. return date;
  1861. }
  1862. // start-of-first-week - start-of-year
  1863. function firstWeekOffset(year, dow, doy) {
  1864. var // first-week day -- which january is always in the first week (4 for iso, 1 for other)
  1865. fwd = 7 + dow - doy,
  1866. // first-week day local weekday -- which local weekday is fwd
  1867. fwdlw = (7 + createUTCDate(year, 0, fwd).getUTCDay() - dow) % 7;
  1868. return -fwdlw + fwd - 1;
  1869. }
  1870. //http://en.wikipedia.org/wiki/ISO_week_date#Calculating_a_date_given_the_year.2C_week_number_and_weekday
  1871. function dayOfYearFromWeeks(year, week, weekday, dow, doy) {
  1872. var localWeekday = (7 + weekday - dow) % 7,
  1873. weekOffset = firstWeekOffset(year, dow, doy),
  1874. dayOfYear = 1 + 7 * (week - 1) + localWeekday + weekOffset,
  1875. resYear, resDayOfYear;
  1876. if (dayOfYear <= 0) {
  1877. resYear = year - 1;
  1878. resDayOfYear = daysInYear(resYear) + dayOfYear;
  1879. } else if (dayOfYear > daysInYear(year)) {
  1880. resYear = year + 1;
  1881. resDayOfYear = dayOfYear - daysInYear(year);
  1882. } else {
  1883. resYear = year;
  1884. resDayOfYear = dayOfYear;
  1885. }
  1886. return {
  1887. year: resYear,
  1888. dayOfYear: resDayOfYear
  1889. };
  1890. }
  1891. function weekOfYear(mom, dow, doy) {
  1892. var weekOffset = firstWeekOffset(mom.year(), dow, doy),
  1893. week = Math.floor((mom.dayOfYear() - weekOffset - 1) / 7) + 1,
  1894. resWeek, resYear;
  1895. if (week < 1) {
  1896. resYear = mom.year() - 1;
  1897. resWeek = week + weeksInYear(resYear, dow, doy);
  1898. } else if (week > weeksInYear(mom.year(), dow, doy)) {
  1899. resWeek = week - weeksInYear(mom.year(), dow, doy);
  1900. resYear = mom.year() + 1;
  1901. } else {
  1902. resYear = mom.year();
  1903. resWeek = week;
  1904. }
  1905. return {
  1906. week: resWeek,
  1907. year: resYear
  1908. };
  1909. }
  1910. function weeksInYear(year, dow, doy) {
  1911. var weekOffset = firstWeekOffset(year, dow, doy),
  1912. weekOffsetNext = firstWeekOffset(year + 1, dow, doy);
  1913. return (daysInYear(year) - weekOffset + weekOffsetNext) / 7;
  1914. }
  1915. // FORMATTING
  1916. addFormatToken('w', ['ww', 2], 'wo', 'week');
  1917. addFormatToken('W', ['WW', 2], 'Wo', 'isoWeek');
  1918. // ALIASES
  1919. addUnitAlias('week', 'w');
  1920. addUnitAlias('isoWeek', 'W');
  1921. // PRIORITIES
  1922. addUnitPriority('week', 5);
  1923. addUnitPriority('isoWeek', 5);
  1924. // PARSING
  1925. addRegexToken('w', match1to2);
  1926. addRegexToken('ww', match1to2, match2);
  1927. addRegexToken('W', match1to2);
  1928. addRegexToken('WW', match1to2, match2);
  1929. addWeekParseToken(['w', 'ww', 'W', 'WW'], function (input, week, config, token) {
  1930. week[token.substr(0, 1)] = toInt(input);
  1931. });
  1932. // HELPERS
  1933. // LOCALES
  1934. function localeWeek (mom) {
  1935. return weekOfYear(mom, this._week.dow, this._week.doy).week;
  1936. }
  1937. var defaultLocaleWeek = {
  1938. dow : 0, // Sunday is the first day of the week.
  1939. doy : 6 // The week that contains Jan 1st is the first week of the year.
  1940. };
  1941. function localeFirstDayOfWeek () {
  1942. return this._week.dow;
  1943. }
  1944. function localeFirstDayOfYear () {
  1945. return this._week.doy;
  1946. }
  1947. // MOMENTS
  1948. function getSetWeek (input) {
  1949. var week = this.localeData().week(this);
  1950. return input == null ? week : this.add((input - week) * 7, 'd');
  1951. }
  1952. function getSetISOWeek (input) {
  1953. var week = weekOfYear(this, 1, 4).week;
  1954. return input == null ? week : this.add((input - week) * 7, 'd');
  1955. }
  1956. // FORMATTING
  1957. addFormatToken('d', 0, 'do', 'day');
  1958. addFormatToken('dd', 0, 0, function (format) {
  1959. return this.localeData().weekdaysMin(this, format);
  1960. });
  1961. addFormatToken('ddd', 0, 0, function (format) {
  1962. return this.localeData().weekdaysShort(this, format);
  1963. });
  1964. addFormatToken('dddd', 0, 0, function (format) {
  1965. return this.localeData().weekdays(this, format);
  1966. });
  1967. addFormatToken('e', 0, 0, 'weekday');
  1968. addFormatToken('E', 0, 0, 'isoWeekday');
  1969. // ALIASES
  1970. addUnitAlias('day', 'd');
  1971. addUnitAlias('weekday', 'e');
  1972. addUnitAlias('isoWeekday', 'E');
  1973. // PRIORITY
  1974. addUnitPriority('day', 11);
  1975. addUnitPriority('weekday', 11);
  1976. addUnitPriority('isoWeekday', 11);
  1977. // PARSING
  1978. addRegexToken('d', match1to2);
  1979. addRegexToken('e', match1to2);
  1980. addRegexToken('E', match1to2);
  1981. addRegexToken('dd', function (isStrict, locale) {
  1982. return locale.weekdaysMinRegex(isStrict);
  1983. });
  1984. addRegexToken('ddd', function (isStrict, locale) {
  1985. return locale.weekdaysShortRegex(isStrict);
  1986. });
  1987. addRegexToken('dddd', function (isStrict, locale) {
  1988. return locale.weekdaysRegex(isStrict);
  1989. });
  1990. addWeekParseToken(['dd', 'ddd', 'dddd'], function (input, week, config, token) {
  1991. var weekday = config._locale.weekdaysParse(input, token, config._strict);
  1992. // if we didn't get a weekday name, mark the date as invalid
  1993. if (weekday != null) {
  1994. week.d = weekday;
  1995. } else {
  1996. getParsingFlags(config).invalidWeekday = input;
  1997. }
  1998. });
  1999. addWeekParseToken(['d', 'e', 'E'], function (input, week, config, token) {
  2000. week[token] = toInt(input);
  2001. });
  2002. // HELPERS
  2003. function parseWeekday(input, locale) {
  2004. if (typeof input !== 'string') {
  2005. return input;
  2006. }
  2007. if (!isNaN(input)) {
  2008. return parseInt(input, 10);
  2009. }
  2010. input = locale.weekdaysParse(input);
  2011. if (typeof input === 'number') {
  2012. return input;
  2013. }
  2014. return null;
  2015. }
  2016. function parseIsoWeekday(input, locale) {
  2017. if (typeof input === 'string') {
  2018. return locale.weekdaysParse(input) % 7 || 7;
  2019. }
  2020. return isNaN(input) ? null : input;
  2021. }
  2022. // LOCALES
  2023. var defaultLocaleWeekdays = 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_');
  2024. function localeWeekdays (m, format) {
  2025. if (!m) {
  2026. return this._weekdays;
  2027. }
  2028. return isArray(this._weekdays) ? this._weekdays[m.day()] :
  2029. this._weekdays[this._weekdays.isFormat.test(format) ? 'format' : 'standalone'][m.day()];
  2030. }
  2031. var defaultLocaleWeekdaysShort = 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_');
  2032. function localeWeekdaysShort (m) {
  2033. return (m) ? this._weekdaysShort[m.day()] : this._weekdaysShort;
  2034. }
  2035. var defaultLocaleWeekdaysMin = 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_');
  2036. function localeWeekdaysMin (m) {
  2037. return (m) ? this._weekdaysMin[m.day()] : this._weekdaysMin;
  2038. }
  2039. function day_of_week__handleStrictParse(weekdayName, format, strict) {
  2040. var i, ii, mom, llc = weekdayName.toLocaleLowerCase();
  2041. if (!this._weekdaysParse) {
  2042. this._weekdaysParse = [];
  2043. this._shortWeekdaysParse = [];
  2044. this._minWeekdaysParse = [];
  2045. for (i = 0; i < 7; ++i) {
  2046. mom = create_utc__createUTC([2000, 1]).day(i);
  2047. this._minWeekdaysParse[i] = this.weekdaysMin(mom, '').toLocaleLowerCase();
  2048. this._shortWeekdaysParse[i] = this.weekdaysShort(mom, '').toLocaleLowerCase();
  2049. this._weekdaysParse[i] = this.weekdays(mom, '').toLocaleLowerCase();
  2050. }
  2051. }
  2052. if (strict) {
  2053. if (format === 'dddd') {
  2054. ii = indexOf.call(this._weekdaysParse, llc);
  2055. return ii !== -1 ? ii : null;
  2056. } else if (format === 'ddd') {
  2057. ii = indexOf.call(this._shortWeekdaysParse, llc);
  2058. return ii !== -1 ? ii : null;
  2059. } else {
  2060. ii = indexOf.call(this._minWeekdaysParse, llc);
  2061. return ii !== -1 ? ii : null;
  2062. }
  2063. } else {
  2064. if (format === 'dddd') {
  2065. ii = indexOf.call(this._weekdaysParse, llc);
  2066. if (ii !== -1) {
  2067. return ii;
  2068. }
  2069. ii = indexOf.call(this._shortWeekdaysParse, llc);
  2070. if (ii !== -1) {
  2071. return ii;
  2072. }
  2073. ii = indexOf.call(this._minWeekdaysParse, llc);
  2074. return ii !== -1 ? ii : null;
  2075. } else if (format === 'ddd') {
  2076. ii = indexOf.call(this._shortWeekdaysParse, llc);
  2077. if (ii !== -1) {
  2078. return ii;
  2079. }
  2080. ii = indexOf.call(this._weekdaysParse, llc);
  2081. if (ii !== -1) {
  2082. return ii;
  2083. }
  2084. ii = indexOf.call(this._minWeekdaysParse, llc);
  2085. return ii !== -1 ? ii : null;
  2086. } else {
  2087. ii = indexOf.call(this._minWeekdaysParse, llc);
  2088. if (ii !== -1) {
  2089. return ii;
  2090. }
  2091. ii = indexOf.call(this._weekdaysParse, llc);
  2092. if (ii !== -1) {
  2093. return ii;
  2094. }
  2095. ii = indexOf.call(this._shortWeekdaysParse, llc);
  2096. return ii !== -1 ? ii : null;
  2097. }
  2098. }
  2099. }
  2100. function localeWeekdaysParse (weekdayName, format, strict) {
  2101. var i, mom, regex;
  2102. if (this._weekdaysParseExact) {
  2103. return day_of_week__handleStrictParse.call(this, weekdayName, format, strict);
  2104. }
  2105. if (!this._weekdaysParse) {
  2106. this._weekdaysParse = [];
  2107. this._minWeekdaysParse = [];
  2108. this._shortWeekdaysParse = [];
  2109. this._fullWeekdaysParse = [];
  2110. }
  2111. for (i = 0; i < 7; i++) {
  2112. // make the regex if we don't have it already
  2113. mom = create_utc__createUTC([2000, 1]).day(i);
  2114. if (strict && !this._fullWeekdaysParse[i]) {
  2115. this._fullWeekdaysParse[i] = new RegExp('^' + this.weekdays(mom, '').replace('.', '\.?') + '$', 'i');
  2116. this._shortWeekdaysParse[i] = new RegExp('^' + this.weekdaysShort(mom, '').replace('.', '\.?') + '$', 'i');
  2117. this._minWeekdaysParse[i] = new RegExp('^' + this.weekdaysMin(mom, '').replace('.', '\.?') + '$', 'i');
  2118. }
  2119. if (!this._weekdaysParse[i]) {
  2120. regex = '^' + this.weekdays(mom, '') + '|^' + this.weekdaysShort(mom, '') + '|^' + this.weekdaysMin(mom, '');
  2121. this._weekdaysParse[i] = new RegExp(regex.replace('.', ''), 'i');
  2122. }
  2123. // test the regex
  2124. if (strict && format === 'dddd' && this._fullWeekdaysParse[i].test(weekdayName)) {
  2125. return i;
  2126. } else if (strict && format === 'ddd' && this._shortWeekdaysParse[i].test(weekdayName)) {
  2127. return i;
  2128. } else if (strict && format === 'dd' && this._minWeekdaysParse[i].test(weekdayName)) {
  2129. return i;
  2130. } else if (!strict && this._weekdaysParse[i].test(weekdayName)) {
  2131. return i;
  2132. }
  2133. }
  2134. }
  2135. // MOMENTS
  2136. function getSetDayOfWeek (input) {
  2137. if (!this.isValid()) {
  2138. return input != null ? this : NaN;
  2139. }
  2140. var day = this._isUTC ? this._d.getUTCDay() : this._d.getDay();
  2141. if (input != null) {
  2142. input = parseWeekday(input, this.localeData());
  2143. return this.add(input - day, 'd');
  2144. } else {
  2145. return day;
  2146. }
  2147. }
  2148. function getSetLocaleDayOfWeek (input) {
  2149. if (!this.isValid()) {
  2150. return input != null ? this : NaN;
  2151. }
  2152. var weekday = (this.day() + 7 - this.localeData()._week.dow) % 7;
  2153. return input == null ? weekday : this.add(input - weekday, 'd');
  2154. }
  2155. function getSetISODayOfWeek (input) {
  2156. if (!this.isValid()) {
  2157. return input != null ? this : NaN;
  2158. }
  2159. // behaves the same as moment#day except
  2160. // as a getter, returns 7 instead of 0 (1-7 range instead of 0-6)
  2161. // as a setter, sunday should belong to the previous week.
  2162. if (input != null) {
  2163. var weekday = parseIsoWeekday(input, this.localeData());
  2164. return this.day(this.day() % 7 ? weekday : weekday - 7);
  2165. } else {
  2166. return this.day() || 7;
  2167. }
  2168. }
  2169. var defaultWeekdaysRegex = matchWord;
  2170. function weekdaysRegex (isStrict) {
  2171. if (this._weekdaysParseExact) {
  2172. if (!hasOwnProp(this, '_weekdaysRegex')) {
  2173. computeWeekdaysParse.call(this);
  2174. }
  2175. if (isStrict) {
  2176. return this._weekdaysStrictRegex;
  2177. } else {
  2178. return this._weekdaysRegex;
  2179. }
  2180. } else {
  2181. if (!hasOwnProp(this, '_weekdaysRegex')) {
  2182. this._weekdaysRegex = defaultWeekdaysRegex;
  2183. }
  2184. return this._weekdaysStrictRegex && isStrict ?
  2185. this._weekdaysStrictRegex : this._weekdaysRegex;
  2186. }
  2187. }
  2188. var defaultWeekdaysShortRegex = matchWord;
  2189. function weekdaysShortRegex (isStrict) {
  2190. if (this._weekdaysParseExact) {
  2191. if (!hasOwnProp(this, '_weekdaysRegex')) {
  2192. computeWeekdaysParse.call(this);
  2193. }
  2194. if (isStrict) {
  2195. return this._weekdaysShortStrictRegex;
  2196. } else {
  2197. return this._weekdaysShortRegex;
  2198. }
  2199. } else {
  2200. if (!hasOwnProp(this, '_weekdaysShortRegex')) {
  2201. this._weekdaysShortRegex = defaultWeekdaysShortRegex;
  2202. }
  2203. return this._weekdaysShortStrictRegex && isStrict ?
  2204. this._weekdaysShortStrictRegex : this._weekdaysShortRegex;
  2205. }
  2206. }
  2207. var defaultWeekdaysMinRegex = matchWord;
  2208. function weekdaysMinRegex (isStrict) {
  2209. if (this._weekdaysParseExact) {
  2210. if (!hasOwnProp(this, '_weekdaysRegex')) {
  2211. computeWeekdaysParse.call(this);
  2212. }
  2213. if (isStrict) {
  2214. return this._weekdaysMinStrictRegex;
  2215. } else {
  2216. return this._weekdaysMinRegex;
  2217. }
  2218. } else {
  2219. if (!hasOwnProp(this, '_weekdaysMinRegex')) {
  2220. this._weekdaysMinRegex = defaultWeekdaysMinRegex;
  2221. }
  2222. return this._weekdaysMinStrictRegex && isStrict ?
  2223. this._weekdaysMinStrictRegex : this._weekdaysMinRegex;
  2224. }
  2225. }
  2226. function computeWeekdaysParse () {
  2227. function cmpLenRev(a, b) {
  2228. return b.length - a.length;
  2229. }
  2230. var minPieces = [], shortPieces = [], longPieces = [], mixedPieces = [],
  2231. i, mom, minp, shortp, longp;
  2232. for (i = 0; i < 7; i++) {
  2233. // make the regex if we don't have it already
  2234. mom = create_utc__createUTC([2000, 1]).day(i);
  2235. minp = this.weekdaysMin(mom, '');
  2236. shortp = this.weekdaysShort(mom, '');
  2237. longp = this.weekdays(mom, '');
  2238. minPieces.push(minp);
  2239. shortPieces.push(shortp);
  2240. longPieces.push(longp);
  2241. mixedPieces.push(minp);
  2242. mixedPieces.push(shortp);
  2243. mixedPieces.push(longp);
  2244. }
  2245. // Sorting makes sure if one weekday (or abbr) is a prefix of another it
  2246. // will match the longer piece.
  2247. minPieces.sort(cmpLenRev);
  2248. shortPieces.sort(cmpLenRev);
  2249. longPieces.sort(cmpLenRev);
  2250. mixedPieces.sort(cmpLenRev);
  2251. for (i = 0; i < 7; i++) {
  2252. shortPieces[i] = regexEscape(shortPieces[i]);
  2253. longPieces[i] = regexEscape(longPieces[i]);
  2254. mixedPieces[i] = regexEscape(mixedPieces[i]);
  2255. }
  2256. this._weekdaysRegex = new RegExp('^(' + mixedPieces.join('|') + ')', 'i');
  2257. this._weekdaysShortRegex = this._weekdaysRegex;
  2258. this._weekdaysMinRegex = this._weekdaysRegex;
  2259. this._weekdaysStrictRegex = new RegExp('^(' + longPieces.join('|') + ')', 'i');
  2260. this._weekdaysShortStrictRegex = new RegExp('^(' + shortPieces.join('|') + ')', 'i');
  2261. this._weekdaysMinStrictRegex = new RegExp('^(' + minPieces.join('|') + ')', 'i');
  2262. }
  2263. // FORMATTING
  2264. function hFormat() {
  2265. return this.hours() % 12 || 12;
  2266. }
  2267. function kFormat() {
  2268. return this.hours() || 24;
  2269. }
  2270. addFormatToken('H', ['HH', 2], 0, 'hour');
  2271. addFormatToken('h', ['hh', 2], 0, hFormat);
  2272. addFormatToken('k', ['kk', 2], 0, kFormat);
  2273. addFormatToken('hmm', 0, 0, function () {
  2274. return '' + hFormat.apply(this) + zeroFill(this.minutes(), 2);
  2275. });
  2276. addFormatToken('hmmss', 0, 0, function () {
  2277. return '' + hFormat.apply(this) + zeroFill(this.minutes(), 2) +
  2278. zeroFill(this.seconds(), 2);
  2279. });
  2280. addFormatToken('Hmm', 0, 0, function () {
  2281. return '' + this.hours() + zeroFill(this.minutes(), 2);
  2282. });
  2283. addFormatToken('Hmmss', 0, 0, function () {
  2284. return '' + this.hours() + zeroFill(this.minutes(), 2) +
  2285. zeroFill(this.seconds(), 2);
  2286. });
  2287. function meridiem (token, lowercase) {
  2288. addFormatToken(token, 0, 0, function () {
  2289. return this.localeData().meridiem(this.hours(), this.minutes(), lowercase);
  2290. });
  2291. }
  2292. meridiem('a', true);
  2293. meridiem('A', false);
  2294. // ALIASES
  2295. addUnitAlias('hour', 'h');
  2296. // PRIORITY
  2297. addUnitPriority('hour', 13);
  2298. // PARSING
  2299. function matchMeridiem (isStrict, locale) {
  2300. return locale._meridiemParse;
  2301. }
  2302. addRegexToken('a', matchMeridiem);
  2303. addRegexToken('A', matchMeridiem);
  2304. addRegexToken('H', match1to2);
  2305. addRegexToken('h', match1to2);
  2306. addRegexToken('HH', match1to2, match2);
  2307. addRegexToken('hh', match1to2, match2);
  2308. addRegexToken('hmm', match3to4);
  2309. addRegexToken('hmmss', match5to6);
  2310. addRegexToken('Hmm', match3to4);
  2311. addRegexToken('Hmmss', match5to6);
  2312. addParseToken(['H', 'HH'], HOUR);
  2313. addParseToken(['a', 'A'], function (input, array, config) {
  2314. config._isPm = config._locale.isPM(input);
  2315. config._meridiem = input;
  2316. });
  2317. addParseToken(['h', 'hh'], function (input, array, config) {
  2318. array[HOUR] = toInt(input);
  2319. getParsingFlags(config).bigHour = true;
  2320. });
  2321. addParseToken('hmm', function (input, array, config) {
  2322. var pos = input.length - 2;
  2323. array[HOUR] = toInt(input.substr(0, pos));
  2324. array[MINUTE] = toInt(input.substr(pos));
  2325. getParsingFlags(config).bigHour = true;
  2326. });
  2327. addParseToken('hmmss', function (input, array, config) {
  2328. var pos1 = input.length - 4;
  2329. var pos2 = input.length - 2;
  2330. array[HOUR] = toInt(input.substr(0, pos1));
  2331. array[MINUTE] = toInt(input.substr(pos1, 2));
  2332. array[SECOND] = toInt(input.substr(pos2));
  2333. getParsingFlags(config).bigHour = true;
  2334. });
  2335. addParseToken('Hmm', function (input, array, config) {
  2336. var pos = input.length - 2;
  2337. array[HOUR] = toInt(input.substr(0, pos));
  2338. array[MINUTE] = toInt(input.substr(pos));
  2339. });
  2340. addParseToken('Hmmss', function (input, array, config) {
  2341. var pos1 = input.length - 4;
  2342. var pos2 = input.length - 2;
  2343. array[HOUR] = toInt(input.substr(0, pos1));
  2344. array[MINUTE] = toInt(input.substr(pos1, 2));
  2345. array[SECOND] = toInt(input.substr(pos2));
  2346. });
  2347. // LOCALES
  2348. function localeIsPM (input) {
  2349. // IE8 Quirks Mode & IE7 Standards Mode do not allow accessing strings like arrays
  2350. // Using charAt should be more compatible.
  2351. return ((input + '').toLowerCase().charAt(0) === 'p');
  2352. }
  2353. var defaultLocaleMeridiemParse = /[ap]\.?m?\.?/i;
  2354. function localeMeridiem (hours, minutes, isLower) {
  2355. if (hours > 11) {
  2356. return isLower ? 'pm' : 'PM';
  2357. } else {
  2358. return isLower ? 'am' : 'AM';
  2359. }
  2360. }
  2361. // MOMENTS
  2362. // Setting the hour should keep the time, because the user explicitly
  2363. // specified which hour he wants. So trying to maintain the same hour (in
  2364. // a new timezone) makes sense. Adding/subtracting hours does not follow
  2365. // this rule.
  2366. var getSetHour = makeGetSet('Hours', true);
  2367. var baseConfig = {
  2368. calendar: defaultCalendar,
  2369. longDateFormat: defaultLongDateFormat,
  2370. invalidDate: defaultInvalidDate,
  2371. ordinal: defaultOrdinal,
  2372. ordinalParse: defaultOrdinalParse,
  2373. relativeTime: defaultRelativeTime,
  2374. months: defaultLocaleMonths,
  2375. monthsShort: defaultLocaleMonthsShort,
  2376. week: defaultLocaleWeek,
  2377. weekdays: defaultLocaleWeekdays,
  2378. weekdaysMin: defaultLocaleWeekdaysMin,
  2379. weekdaysShort: defaultLocaleWeekdaysShort,
  2380. meridiemParse: defaultLocaleMeridiemParse
  2381. };
  2382. // internal storage for locale config files
  2383. var locales = {};
  2384. var globalLocale;
  2385. function normalizeLocale(key) {
  2386. return key ? key.toLowerCase().replace('_', '-') : key;
  2387. }
  2388. // pick the locale from the array
  2389. // try ['en-au', 'en-gb'] as 'en-au', 'en-gb', 'en', as in move through the list trying each
  2390. // substring from most specific to least, but move to the next array item if it's a more specific variant than the current root
  2391. function chooseLocale(names) {
  2392. var i = 0, j, next, locale, split;
  2393. while (i < names.length) {
  2394. split = normalizeLocale(names[i]).split('-');
  2395. j = split.length;
  2396. next = normalizeLocale(names[i + 1]);
  2397. next = next ? next.split('-') : null;
  2398. while (j > 0) {
  2399. locale = loadLocale(split.slice(0, j).join('-'));
  2400. if (locale) {
  2401. return locale;
  2402. }
  2403. if (next && next.length >= j && compareArrays(split, next, true) >= j - 1) {
  2404. //the next array item is better than a shallower substring of this one
  2405. break;
  2406. }
  2407. j--;
  2408. }
  2409. i++;
  2410. }
  2411. return null;
  2412. }
  2413. function loadLocale(name) {
  2414. var oldLocale = null;
  2415. // TODO: Find a better way to register and load all the locales in Node
  2416. if (!locales[name] && (typeof module !== 'undefined') &&
  2417. module && module.exports) {
  2418. try {
  2419. oldLocale = globalLocale._abbr;
  2420. require('./locale/' + name);
  2421. // because defineLocale currently also sets the global locale, we
  2422. // want to undo that for lazy loaded locales
  2423. locale_locales__getSetGlobalLocale(oldLocale);
  2424. } catch (e) { }
  2425. }
  2426. return locales[name];
  2427. }
  2428. // This function will load locale and then set the global locale. If
  2429. // no arguments are passed in, it will simply return the current global
  2430. // locale key.
  2431. function locale_locales__getSetGlobalLocale (key, values) {
  2432. var data;
  2433. if (key) {
  2434. if (isUndefined(values)) {
  2435. data = locale_locales__getLocale(key);
  2436. }
  2437. else {
  2438. data = defineLocale(key, values);
  2439. }
  2440. if (data) {
  2441. // moment.duration._locale = moment._locale = data;
  2442. globalLocale = data;
  2443. }
  2444. }
  2445. return globalLocale._abbr;
  2446. }
  2447. function defineLocale (name, config) {
  2448. if (config !== null) {
  2449. var parentConfig = baseConfig;
  2450. config.abbr = name;
  2451. if (locales[name] != null) {
  2452. deprecateSimple('defineLocaleOverride',
  2453. 'use moment.updateLocale(localeName, config) to change ' +
  2454. 'an existing locale. moment.defineLocale(localeName, ' +
  2455. 'config) should only be used for creating a new locale ' +
  2456. 'See http://momentjs.com/guides/#/warnings/define-locale/ for more info.');
  2457. parentConfig = locales[name]._config;
  2458. } else if (config.parentLocale != null) {
  2459. if (locales[config.parentLocale] != null) {
  2460. parentConfig = locales[config.parentLocale]._config;
  2461. } else {
  2462. // treat as if there is no base config
  2463. deprecateSimple('parentLocaleUndefined',
  2464. 'specified parentLocale is not defined yet. See http://momentjs.com/guides/#/warnings/parent-locale/');
  2465. }
  2466. }
  2467. locales[name] = new Locale(mergeConfigs(parentConfig, config));
  2468. // backwards compat for now: also set the locale
  2469. locale_locales__getSetGlobalLocale(name);
  2470. return locales[name];
  2471. } else {
  2472. // useful for testing
  2473. delete locales[name];
  2474. return null;
  2475. }
  2476. }
  2477. function updateLocale(name, config) {
  2478. if (config != null) {
  2479. var locale, parentConfig = baseConfig;
  2480. // MERGE
  2481. if (locales[name] != null) {
  2482. parentConfig = locales[name]._config;
  2483. }
  2484. config = mergeConfigs(parentConfig, config);
  2485. locale = new Locale(config);
  2486. locale.parentLocale = locales[name];
  2487. locales[name] = locale;
  2488. // backwards compat for now: also set the locale
  2489. locale_locales__getSetGlobalLocale(name);
  2490. } else {
  2491. // pass null for config to unupdate, useful for tests
  2492. if (locales[name] != null) {
  2493. if (locales[name].parentLocale != null) {
  2494. locales[name] = locales[name].parentLocale;
  2495. } else if (locales[name] != null) {
  2496. delete locales[name];
  2497. }
  2498. }
  2499. }
  2500. return locales[name];
  2501. }
  2502. // returns locale data
  2503. function locale_locales__getLocale (key) {
  2504. var locale;
  2505. if (key && key._locale && key._locale._abbr) {
  2506. key = key._locale._abbr;
  2507. }
  2508. if (!key) {
  2509. return globalLocale;
  2510. }
  2511. if (!isArray(key)) {
  2512. //short-circuit everything else
  2513. locale = loadLocale(key);
  2514. if (locale) {
  2515. return locale;
  2516. }
  2517. key = [key];
  2518. }
  2519. return chooseLocale(key);
  2520. }
  2521. function locale_locales__listLocales() {
  2522. return keys(locales);
  2523. }
  2524. function checkOverflow (m) {
  2525. var overflow;
  2526. var a = m._a;
  2527. if (a && getParsingFlags(m).overflow === -2) {
  2528. overflow =
  2529. a[MONTH] < 0 || a[MONTH] > 11 ? MONTH :
  2530. a[DATE] < 1 || a[DATE] > daysInMonth(a[YEAR], a[MONTH]) ? DATE :
  2531. a[HOUR] < 0 || a[HOUR] > 24 || (a[HOUR] === 24 && (a[MINUTE] !== 0 || a[SECOND] !== 0 || a[MILLISECOND] !== 0)) ? HOUR :
  2532. a[MINUTE] < 0 || a[MINUTE] > 59 ? MINUTE :
  2533. a[SECOND] < 0 || a[SECOND] > 59 ? SECOND :
  2534. a[MILLISECOND] < 0 || a[MILLISECOND] > 999 ? MILLISECOND :
  2535. -1;
  2536. if (getParsingFlags(m)._overflowDayOfYear && (overflow < YEAR || overflow > DATE)) {
  2537. overflow = DATE;
  2538. }
  2539. if (getParsingFlags(m)._overflowWeeks && overflow === -1) {
  2540. overflow = WEEK;
  2541. }
  2542. if (getParsingFlags(m)._overflowWeekday && overflow === -1) {
  2543. overflow = WEEKDAY;
  2544. }
  2545. getParsingFlags(m).overflow = overflow;
  2546. }
  2547. return m;
  2548. }
  2549. // iso 8601 regex
  2550. // 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)
  2551. 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)?)?/;
  2552. 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)?)?/;
  2553. var tzRegex = /Z|[+-]\d\d(?::?\d\d)?/;
  2554. var isoDates = [
  2555. ['YYYYYY-MM-DD', /[+-]\d{6}-\d\d-\d\d/],
  2556. ['YYYY-MM-DD', /\d{4}-\d\d-\d\d/],
  2557. ['GGGG-[W]WW-E', /\d{4}-W\d\d-\d/],
  2558. ['GGGG-[W]WW', /\d{4}-W\d\d/, false],
  2559. ['YYYY-DDD', /\d{4}-\d{3}/],
  2560. ['YYYY-MM', /\d{4}-\d\d/, false],
  2561. ['YYYYYYMMDD', /[+-]\d{10}/],
  2562. ['YYYYMMDD', /\d{8}/],
  2563. // YYYYMM is NOT allowed by the standard
  2564. ['GGGG[W]WWE', /\d{4}W\d{3}/],
  2565. ['GGGG[W]WW', /\d{4}W\d{2}/, false],
  2566. ['YYYYDDD', /\d{7}/]
  2567. ];
  2568. // iso time formats and regexes
  2569. var isoTimes = [
  2570. ['HH:mm:ss.SSSS', /\d\d:\d\d:\d\d\.\d+/],
  2571. ['HH:mm:ss,SSSS', /\d\d:\d\d:\d\d,\d+/],
  2572. ['HH:mm:ss', /\d\d:\d\d:\d\d/],
  2573. ['HH:mm', /\d\d:\d\d/],
  2574. ['HHmmss.SSSS', /\d\d\d\d\d\d\.\d+/],
  2575. ['HHmmss,SSSS', /\d\d\d\d\d\d,\d+/],
  2576. ['HHmmss', /\d\d\d\d\d\d/],
  2577. ['HHmm', /\d\d\d\d/],
  2578. ['HH', /\d\d/]
  2579. ];
  2580. var aspNetJsonRegex = /^\/?Date\((\-?\d+)/i;
  2581. // date from iso format
  2582. function configFromISO(config) {
  2583. var i, l,
  2584. string = config._i,
  2585. match = extendedIsoRegex.exec(string) || basicIsoRegex.exec(string),
  2586. allowTime, dateFormat, timeFormat, tzFormat;
  2587. if (match) {
  2588. getParsingFlags(config).iso = true;
  2589. for (i = 0, l = isoDates.length; i < l; i++) {
  2590. if (isoDates[i][1].exec(match[1])) {
  2591. dateFormat = isoDates[i][0];
  2592. allowTime = isoDates[i][2] !== false;
  2593. break;
  2594. }
  2595. }
  2596. if (dateFormat == null) {
  2597. config._isValid = false;
  2598. return;
  2599. }
  2600. if (match[3]) {
  2601. for (i = 0, l = isoTimes.length; i < l; i++) {
  2602. if (isoTimes[i][1].exec(match[3])) {
  2603. // match[2] should be 'T' or space
  2604. timeFormat = (match[2] || ' ') + isoTimes[i][0];
  2605. break;
  2606. }
  2607. }
  2608. if (timeFormat == null) {
  2609. config._isValid = false;
  2610. return;
  2611. }
  2612. }
  2613. if (!allowTime && timeFormat != null) {
  2614. config._isValid = false;
  2615. return;
  2616. }
  2617. if (match[4]) {
  2618. if (tzRegex.exec(match[4])) {
  2619. tzFormat = 'Z';
  2620. } else {
  2621. config._isValid = false;
  2622. return;
  2623. }
  2624. }
  2625. config._f = dateFormat + (timeFormat || '') + (tzFormat || '');
  2626. configFromStringAndFormat(config);
  2627. } else {
  2628. config._isValid = false;
  2629. }
  2630. }
  2631. // date from iso format or fallback
  2632. function configFromString(config) {
  2633. var matched = aspNetJsonRegex.exec(config._i);
  2634. if (matched !== null) {
  2635. config._d = new Date(+matched[1]);
  2636. return;
  2637. }
  2638. configFromISO(config);
  2639. if (config._isValid === false) {
  2640. delete config._isValid;
  2641. utils_hooks__hooks.createFromInputFallback(config);
  2642. }
  2643. }
  2644. utils_hooks__hooks.createFromInputFallback = deprecate(
  2645. 'value provided is not in a recognized ISO format. moment construction falls back to js Date(), ' +
  2646. 'which is not reliable across all browsers and versions. Non ISO date formats are ' +
  2647. 'discouraged and will be removed in an upcoming major release. Please refer to ' +
  2648. 'http://momentjs.com/guides/#/warnings/js-date/ for more info.',
  2649. function (config) {
  2650. config._d = new Date(config._i + (config._useUTC ? ' UTC' : ''));
  2651. }
  2652. );
  2653. // Pick the first defined of two or three arguments.
  2654. function defaults(a, b, c) {
  2655. if (a != null) {
  2656. return a;
  2657. }
  2658. if (b != null) {
  2659. return b;
  2660. }
  2661. return c;
  2662. }
  2663. function currentDateArray(config) {
  2664. // hooks is actually the exported moment object
  2665. var nowValue = new Date(utils_hooks__hooks.now());
  2666. if (config._useUTC) {
  2667. return [nowValue.getUTCFullYear(), nowValue.getUTCMonth(), nowValue.getUTCDate()];
  2668. }
  2669. return [nowValue.getFullYear(), nowValue.getMonth(), nowValue.getDate()];
  2670. }
  2671. // convert an array to a date.
  2672. // the array should mirror the parameters below
  2673. // note: all values past the year are optional and will default to the lowest possible value.
  2674. // [year, month, day , hour, minute, second, millisecond]
  2675. function configFromArray (config) {
  2676. var i, date, input = [], currentDate, yearToUse;
  2677. if (config._d) {
  2678. return;
  2679. }
  2680. currentDate = currentDateArray(config);
  2681. //compute day of the year from weeks and weekdays
  2682. if (config._w && config._a[DATE] == null && config._a[MONTH] == null) {
  2683. dayOfYearFromWeekInfo(config);
  2684. }
  2685. //if the day of the year is set, figure out what it is
  2686. if (config._dayOfYear) {
  2687. yearToUse = defaults(config._a[YEAR], currentDate[YEAR]);
  2688. if (config._dayOfYear > daysInYear(yearToUse)) {
  2689. getParsingFlags(config)._overflowDayOfYear = true;
  2690. }
  2691. date = createUTCDate(yearToUse, 0, config._dayOfYear);
  2692. config._a[MONTH] = date.getUTCMonth();
  2693. config._a[DATE] = date.getUTCDate();
  2694. }
  2695. // Default to current date.
  2696. // * if no year, month, day of month are given, default to today
  2697. // * if day of month is given, default month and year
  2698. // * if month is given, default only year
  2699. // * if year is given, don't default anything
  2700. for (i = 0; i < 3 && config._a[i] == null; ++i) {
  2701. config._a[i] = input[i] = currentDate[i];
  2702. }
  2703. // Zero out whatever was not defaulted, including time
  2704. for (; i < 7; i++) {
  2705. config._a[i] = input[i] = (config._a[i] == null) ? (i === 2 ? 1 : 0) : config._a[i];
  2706. }
  2707. // Check for 24:00:00.000
  2708. if (config._a[HOUR] === 24 &&
  2709. config._a[MINUTE] === 0 &&
  2710. config._a[SECOND] === 0 &&
  2711. config._a[MILLISECOND] === 0) {
  2712. config._nextDay = true;
  2713. config._a[HOUR] = 0;
  2714. }
  2715. config._d = (config._useUTC ? createUTCDate : createDate).apply(null, input);
  2716. // Apply timezone offset from input. The actual utcOffset can be changed
  2717. // with parseZone.
  2718. if (config._tzm != null) {
  2719. config._d.setUTCMinutes(config._d.getUTCMinutes() - config._tzm);
  2720. }
  2721. if (config._nextDay) {
  2722. config._a[HOUR] = 24;
  2723. }
  2724. }
  2725. function dayOfYearFromWeekInfo(config) {
  2726. var w, weekYear, week, weekday, dow, doy, temp, weekdayOverflow;
  2727. w = config._w;
  2728. if (w.GG != null || w.W != null || w.E != null) {
  2729. dow = 1;
  2730. doy = 4;
  2731. // TODO: We need to take the current isoWeekYear, but that depends on
  2732. // how we interpret now (local, utc, fixed offset). So create
  2733. // a now version of current config (take local/utc/offset flags, and
  2734. // create now).
  2735. weekYear = defaults(w.GG, config._a[YEAR], weekOfYear(local__createLocal(), 1, 4).year);
  2736. week = defaults(w.W, 1);
  2737. weekday = defaults(w.E, 1);
  2738. if (weekday < 1 || weekday > 7) {
  2739. weekdayOverflow = true;
  2740. }
  2741. } else {
  2742. dow = config._locale._week.dow;
  2743. doy = config._locale._week.doy;
  2744. weekYear = defaults(w.gg, config._a[YEAR], weekOfYear(local__createLocal(), dow, doy).year);
  2745. week = defaults(w.w, 1);
  2746. if (w.d != null) {
  2747. // weekday -- low day numbers are considered next week
  2748. weekday = w.d;
  2749. if (weekday < 0 || weekday > 6) {
  2750. weekdayOverflow = true;
  2751. }
  2752. } else if (w.e != null) {
  2753. // local weekday -- counting starts from begining of week
  2754. weekday = w.e + dow;
  2755. if (w.e < 0 || w.e > 6) {
  2756. weekdayOverflow = true;
  2757. }
  2758. } else {
  2759. // default to begining of week
  2760. weekday = dow;
  2761. }
  2762. }
  2763. if (week < 1 || week > weeksInYear(weekYear, dow, doy)) {
  2764. getParsingFlags(config)._overflowWeeks = true;
  2765. } else if (weekdayOverflow != null) {
  2766. getParsingFlags(config)._overflowWeekday = true;
  2767. } else {
  2768. temp = dayOfYearFromWeeks(weekYear, week, weekday, dow, doy);
  2769. config._a[YEAR] = temp.year;
  2770. config._dayOfYear = temp.dayOfYear;
  2771. }
  2772. }
  2773. // constant that refers to the ISO standard
  2774. utils_hooks__hooks.ISO_8601 = function () {};
  2775. // date from string and format string
  2776. function configFromStringAndFormat(config) {
  2777. // TODO: Move this to another part of the creation flow to prevent circular deps
  2778. if (config._f === utils_hooks__hooks.ISO_8601) {
  2779. configFromISO(config);
  2780. return;
  2781. }
  2782. config._a = [];
  2783. getParsingFlags(config).empty = true;
  2784. // This array is used to make a Date, either with `new Date` or `Date.UTC`
  2785. var string = '' + config._i,
  2786. i, parsedInput, tokens, token, skipped,
  2787. stringLength = string.length,
  2788. totalParsedInputLength = 0;
  2789. tokens = expandFormat(config._f, config._locale).match(formattingTokens) || [];
  2790. for (i = 0; i < tokens.length; i++) {
  2791. token = tokens[i];
  2792. parsedInput = (string.match(getParseRegexForToken(token, config)) || [])[0];
  2793. // console.log('token', token, 'parsedInput', parsedInput,
  2794. // 'regex', getParseRegexForToken(token, config));
  2795. if (parsedInput) {
  2796. skipped = string.substr(0, string.indexOf(parsedInput));
  2797. if (skipped.length > 0) {
  2798. getParsingFlags(config).unusedInput.push(skipped);
  2799. }
  2800. string = string.slice(string.indexOf(parsedInput) + parsedInput.length);
  2801. totalParsedInputLength += parsedInput.length;
  2802. }
  2803. // don't parse if it's not a known token
  2804. if (formatTokenFunctions[token]) {
  2805. if (parsedInput) {
  2806. getParsingFlags(config).empty = false;
  2807. }
  2808. else {
  2809. getParsingFlags(config).unusedTokens.push(token);
  2810. }
  2811. addTimeToArrayFromToken(token, parsedInput, config);
  2812. }
  2813. else if (config._strict && !parsedInput) {
  2814. getParsingFlags(config).unusedTokens.push(token);
  2815. }
  2816. }
  2817. // add remaining unparsed input length to the string
  2818. getParsingFlags(config).charsLeftOver = stringLength - totalParsedInputLength;
  2819. if (string.length > 0) {
  2820. getParsingFlags(config).unusedInput.push(string);
  2821. }
  2822. // clear _12h flag if hour is <= 12
  2823. if (config._a[HOUR] <= 12 &&
  2824. getParsingFlags(config).bigHour === true &&
  2825. config._a[HOUR] > 0) {
  2826. getParsingFlags(config).bigHour = undefined;
  2827. }
  2828. getParsingFlags(config).parsedDateParts = config._a.slice(0);
  2829. getParsingFlags(config).meridiem = config._meridiem;
  2830. // handle meridiem
  2831. config._a[HOUR] = meridiemFixWrap(config._locale, config._a[HOUR], config._meridiem);
  2832. configFromArray(config);
  2833. checkOverflow(config);
  2834. }
  2835. function meridiemFixWrap (locale, hour, meridiem) {
  2836. var isPm;
  2837. if (meridiem == null) {
  2838. // nothing to do
  2839. return hour;
  2840. }
  2841. if (locale.meridiemHour != null) {
  2842. return locale.meridiemHour(hour, meridiem);
  2843. } else if (locale.isPM != null) {
  2844. // Fallback
  2845. isPm = locale.isPM(meridiem);
  2846. if (isPm && hour < 12) {
  2847. hour += 12;
  2848. }
  2849. if (!isPm && hour === 12) {
  2850. hour = 0;
  2851. }
  2852. return hour;
  2853. } else {
  2854. // this is not supposed to happen
  2855. return hour;
  2856. }
  2857. }
  2858. // date from string and array of format strings
  2859. function configFromStringAndArray(config) {
  2860. var tempConfig,
  2861. bestMoment,
  2862. scoreToBeat,
  2863. i,
  2864. currentScore;
  2865. if (config._f.length === 0) {
  2866. getParsingFlags(config).invalidFormat = true;
  2867. config._d = new Date(NaN);
  2868. return;
  2869. }
  2870. for (i = 0; i < config._f.length; i++) {
  2871. currentScore = 0;
  2872. tempConfig = copyConfig({}, config);
  2873. if (config._useUTC != null) {
  2874. tempConfig._useUTC = config._useUTC;
  2875. }
  2876. tempConfig._f = config._f[i];
  2877. configFromStringAndFormat(tempConfig);
  2878. if (!valid__isValid(tempConfig)) {
  2879. continue;
  2880. }
  2881. // if there is any input that was not parsed add a penalty for that format
  2882. currentScore += getParsingFlags(tempConfig).charsLeftOver;
  2883. //or tokens
  2884. currentScore += getParsingFlags(tempConfig).unusedTokens.length * 10;
  2885. getParsingFlags(tempConfig).score = currentScore;
  2886. if (scoreToBeat == null || currentScore < scoreToBeat) {
  2887. scoreToBeat = currentScore;
  2888. bestMoment = tempConfig;
  2889. }
  2890. }
  2891. extend(config, bestMoment || tempConfig);
  2892. }
  2893. function configFromObject(config) {
  2894. if (config._d) {
  2895. return;
  2896. }
  2897. var i = normalizeObjectUnits(config._i);
  2898. config._a = map([i.year, i.month, i.day || i.date, i.hour, i.minute, i.second, i.millisecond], function (obj) {
  2899. return obj && parseInt(obj, 10);
  2900. });
  2901. configFromArray(config);
  2902. }
  2903. function createFromConfig (config) {
  2904. var res = new Moment(checkOverflow(prepareConfig(config)));
  2905. if (res._nextDay) {
  2906. // Adding is smart enough around DST
  2907. res.add(1, 'd');
  2908. res._nextDay = undefined;
  2909. }
  2910. return res;
  2911. }
  2912. function prepareConfig (config) {
  2913. var input = config._i,
  2914. format = config._f;
  2915. config._locale = config._locale || locale_locales__getLocale(config._l);
  2916. if (input === null || (format === undefined && input === '')) {
  2917. return valid__createInvalid({nullInput: true});
  2918. }
  2919. if (typeof input === 'string') {
  2920. config._i = input = config._locale.preparse(input);
  2921. }
  2922. if (isMoment(input)) {
  2923. return new Moment(checkOverflow(input));
  2924. } else if (isArray(format)) {
  2925. configFromStringAndArray(config);
  2926. } else if (isDate(input)) {
  2927. config._d = input;
  2928. } else if (format) {
  2929. configFromStringAndFormat(config);
  2930. } else {
  2931. configFromInput(config);
  2932. }
  2933. if (!valid__isValid(config)) {
  2934. config._d = null;
  2935. }
  2936. return config;
  2937. }
  2938. function configFromInput(config) {
  2939. var input = config._i;
  2940. if (input === undefined) {
  2941. config._d = new Date(utils_hooks__hooks.now());
  2942. } else if (isDate(input)) {
  2943. config._d = new Date(input.valueOf());
  2944. } else if (typeof input === 'string') {
  2945. configFromString(config);
  2946. } else if (isArray(input)) {
  2947. config._a = map(input.slice(0), function (obj) {
  2948. return parseInt(obj, 10);
  2949. });
  2950. configFromArray(config);
  2951. } else if (typeof(input) === 'object') {
  2952. configFromObject(config);
  2953. } else if (typeof(input) === 'number') {
  2954. // from milliseconds
  2955. config._d = new Date(input);
  2956. } else {
  2957. utils_hooks__hooks.createFromInputFallback(config);
  2958. }
  2959. }
  2960. function createLocalOrUTC (input, format, locale, strict, isUTC) {
  2961. var c = {};
  2962. if (typeof(locale) === 'boolean') {
  2963. strict = locale;
  2964. locale = undefined;
  2965. }
  2966. if ((isObject(input) && isObjectEmpty(input)) ||
  2967. (isArray(input) && input.length === 0)) {
  2968. input = undefined;
  2969. }
  2970. // object construction must be done this way.
  2971. // https://github.com/moment/moment/issues/1423
  2972. c._isAMomentObject = true;
  2973. c._useUTC = c._isUTC = isUTC;
  2974. c._l = locale;
  2975. c._i = input;
  2976. c._f = format;
  2977. c._strict = strict;
  2978. return createFromConfig(c);
  2979. }
  2980. function local__createLocal (input, format, locale, strict) {
  2981. return createLocalOrUTC(input, format, locale, strict, false);
  2982. }
  2983. var prototypeMin = deprecate(
  2984. 'moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/',
  2985. function () {
  2986. var other = local__createLocal.apply(null, arguments);
  2987. if (this.isValid() && other.isValid()) {
  2988. return other < this ? this : other;
  2989. } else {
  2990. return valid__createInvalid();
  2991. }
  2992. }
  2993. );
  2994. var prototypeMax = deprecate(
  2995. 'moment().max is deprecated, use moment.min instead. http://momentjs.com/guides/#/warnings/min-max/',
  2996. function () {
  2997. var other = local__createLocal.apply(null, arguments);
  2998. if (this.isValid() && other.isValid()) {
  2999. return other > this ? this : other;
  3000. } else {
  3001. return valid__createInvalid();
  3002. }
  3003. }
  3004. );
  3005. // Pick a moment m from moments so that m[fn](other) is true for all
  3006. // other. This relies on the function fn to be transitive.
  3007. //
  3008. // moments should either be an array of moment objects or an array, whose
  3009. // first element is an array of moment objects.
  3010. function pickBy(fn, moments) {
  3011. var res, i;
  3012. if (moments.length === 1 && isArray(moments[0])) {
  3013. moments = moments[0];
  3014. }
  3015. if (!moments.length) {
  3016. return local__createLocal();
  3017. }
  3018. res = moments[0];
  3019. for (i = 1; i < moments.length; ++i) {
  3020. if (!moments[i].isValid() || moments[i][fn](res)) {
  3021. res = moments[i];
  3022. }
  3023. }
  3024. return res;
  3025. }
  3026. // TODO: Use [].sort instead?
  3027. function min () {
  3028. var args = [].slice.call(arguments, 0);
  3029. return pickBy('isBefore', args);
  3030. }
  3031. function max () {
  3032. var args = [].slice.call(arguments, 0);
  3033. return pickBy('isAfter', args);
  3034. }
  3035. var now = function () {
  3036. return Date.now ? Date.now() : +(new Date());
  3037. };
  3038. function Duration (duration) {
  3039. var normalizedInput = normalizeObjectUnits(duration),
  3040. years = normalizedInput.year || 0,
  3041. quarters = normalizedInput.quarter || 0,
  3042. months = normalizedInput.month || 0,
  3043. weeks = normalizedInput.week || 0,
  3044. days = normalizedInput.day || 0,
  3045. hours = normalizedInput.hour || 0,
  3046. minutes = normalizedInput.minute || 0,
  3047. seconds = normalizedInput.second || 0,
  3048. milliseconds = normalizedInput.millisecond || 0;
  3049. // representation for dateAddRemove
  3050. this._milliseconds = +milliseconds +
  3051. seconds * 1e3 + // 1000
  3052. minutes * 6e4 + // 1000 * 60
  3053. hours * 1000 * 60 * 60; //using 1000 * 60 * 60 instead of 36e5 to avoid floating point rounding errors https://github.com/moment/moment/issues/2978
  3054. // Because of dateAddRemove treats 24 hours as different from a
  3055. // day when working around DST, we need to store them separately
  3056. this._days = +days +
  3057. weeks * 7;
  3058. // It is impossible translate months into days without knowing
  3059. // which months you are are talking about, so we have to store
  3060. // it separately.
  3061. this._months = +months +
  3062. quarters * 3 +
  3063. years * 12;
  3064. this._data = {};
  3065. this._locale = locale_locales__getLocale();
  3066. this._bubble();
  3067. }
  3068. function isDuration (obj) {
  3069. return obj instanceof Duration;
  3070. }
  3071. function absRound (number) {
  3072. if (number < 0) {
  3073. return Math.round(-1 * number) * -1;
  3074. } else {
  3075. return Math.round(number);
  3076. }
  3077. }
  3078. // FORMATTING
  3079. function offset (token, separator) {
  3080. addFormatToken(token, 0, 0, function () {
  3081. var offset = this.utcOffset();
  3082. var sign = '+';
  3083. if (offset < 0) {
  3084. offset = -offset;
  3085. sign = '-';
  3086. }
  3087. return sign + zeroFill(~~(offset / 60), 2) + separator + zeroFill(~~(offset) % 60, 2);
  3088. });
  3089. }
  3090. offset('Z', ':');
  3091. offset('ZZ', '');
  3092. // PARSING
  3093. addRegexToken('Z', matchShortOffset);
  3094. addRegexToken('ZZ', matchShortOffset);
  3095. addParseToken(['Z', 'ZZ'], function (input, array, config) {
  3096. config._useUTC = true;
  3097. config._tzm = offsetFromString(matchShortOffset, input);
  3098. });
  3099. // HELPERS
  3100. // timezone chunker
  3101. // '+10:00' > ['10', '00']
  3102. // '-1530' > ['-15', '30']
  3103. var chunkOffset = /([\+\-]|\d\d)/gi;
  3104. function offsetFromString(matcher, string) {
  3105. var matches = ((string || '').match(matcher) || []);
  3106. var chunk = matches[matches.length - 1] || [];
  3107. var parts = (chunk + '').match(chunkOffset) || ['-', 0, 0];
  3108. var minutes = +(parts[1] * 60) + toInt(parts[2]);
  3109. return parts[0] === '+' ? minutes : -minutes;
  3110. }
  3111. // Return a moment from input, that is local/utc/zone equivalent to model.
  3112. function cloneWithOffset(input, model) {
  3113. var res, diff;
  3114. if (model._isUTC) {
  3115. res = model.clone();
  3116. diff = (isMoment(input) || isDate(input) ? input.valueOf() : local__createLocal(input).valueOf()) - res.valueOf();
  3117. // Use low-level api, because this fn is low-level api.
  3118. res._d.setTime(res._d.valueOf() + diff);
  3119. utils_hooks__hooks.updateOffset(res, false);
  3120. return res;
  3121. } else {
  3122. return local__createLocal(input).local();
  3123. }
  3124. }
  3125. function getDateOffset (m) {
  3126. // On Firefox.24 Date#getTimezoneOffset returns a floating point.
  3127. // https://github.com/moment/moment/pull/1871
  3128. return -Math.round(m._d.getTimezoneOffset() / 15) * 15;
  3129. }
  3130. // HOOKS
  3131. // This function will be called whenever a moment is mutated.
  3132. // It is intended to keep the offset in sync with the timezone.
  3133. utils_hooks__hooks.updateOffset = function () {};
  3134. // MOMENTS
  3135. // keepLocalTime = true means only change the timezone, without
  3136. // affecting the local hour. So 5:31:26 +0300 --[utcOffset(2, true)]-->
  3137. // 5:31:26 +0200 It is possible that 5:31:26 doesn't exist with offset
  3138. // +0200, so we adjust the time as needed, to be valid.
  3139. //
  3140. // Keeping the time actually adds/subtracts (one hour)
  3141. // from the actual represented time. That is why we call updateOffset
  3142. // a second time. In case it wants us to change the offset again
  3143. // _changeInProgress == true case, then we have to adjust, because
  3144. // there is no such time in the given timezone.
  3145. function getSetOffset (input, keepLocalTime) {
  3146. var offset = this._offset || 0,
  3147. localAdjust;
  3148. if (!this.isValid()) {
  3149. return input != null ? this : NaN;
  3150. }
  3151. if (input != null) {
  3152. if (typeof input === 'string') {
  3153. input = offsetFromString(matchShortOffset, input);
  3154. } else if (Math.abs(input) < 16) {
  3155. input = input * 60;
  3156. }
  3157. if (!this._isUTC && keepLocalTime) {
  3158. localAdjust = getDateOffset(this);
  3159. }
  3160. this._offset = input;
  3161. this._isUTC = true;
  3162. if (localAdjust != null) {
  3163. this.add(localAdjust, 'm');
  3164. }
  3165. if (offset !== input) {
  3166. if (!keepLocalTime || this._changeInProgress) {
  3167. add_subtract__addSubtract(this, create__createDuration(input - offset, 'm'), 1, false);
  3168. } else if (!this._changeInProgress) {
  3169. this._changeInProgress = true;
  3170. utils_hooks__hooks.updateOffset(this, true);
  3171. this._changeInProgress = null;
  3172. }
  3173. }
  3174. return this;
  3175. } else {
  3176. return this._isUTC ? offset : getDateOffset(this);
  3177. }
  3178. }
  3179. function getSetZone (input, keepLocalTime) {
  3180. if (input != null) {
  3181. if (typeof input !== 'string') {
  3182. input = -input;
  3183. }
  3184. this.utcOffset(input, keepLocalTime);
  3185. return this;
  3186. } else {
  3187. return -this.utcOffset();
  3188. }
  3189. }
  3190. function setOffsetToUTC (keepLocalTime) {
  3191. return this.utcOffset(0, keepLocalTime);
  3192. }
  3193. function setOffsetToLocal (keepLocalTime) {
  3194. if (this._isUTC) {
  3195. this.utcOffset(0, keepLocalTime);
  3196. this._isUTC = false;
  3197. if (keepLocalTime) {
  3198. this.subtract(getDateOffset(this), 'm');
  3199. }
  3200. }
  3201. return this;
  3202. }
  3203. function setOffsetToParsedOffset () {
  3204. if (this._tzm) {
  3205. this.utcOffset(this._tzm);
  3206. } else if (typeof this._i === 'string') {
  3207. var tZone = offsetFromString(matchOffset, this._i);
  3208. if (tZone === 0) {
  3209. this.utcOffset(0, true);
  3210. } else {
  3211. this.utcOffset(offsetFromString(matchOffset, this._i));
  3212. }
  3213. }
  3214. return this;
  3215. }
  3216. function hasAlignedHourOffset (input) {
  3217. if (!this.isValid()) {
  3218. return false;
  3219. }
  3220. input = input ? local__createLocal(input).utcOffset() : 0;
  3221. return (this.utcOffset() - input) % 60 === 0;
  3222. }
  3223. function isDaylightSavingTime () {
  3224. return (
  3225. this.utcOffset() > this.clone().month(0).utcOffset() ||
  3226. this.utcOffset() > this.clone().month(5).utcOffset()
  3227. );
  3228. }
  3229. function isDaylightSavingTimeShifted () {
  3230. if (!isUndefined(this._isDSTShifted)) {
  3231. return this._isDSTShifted;
  3232. }
  3233. var c = {};
  3234. copyConfig(c, this);
  3235. c = prepareConfig(c);
  3236. if (c._a) {
  3237. var other = c._isUTC ? create_utc__createUTC(c._a) : local__createLocal(c._a);
  3238. this._isDSTShifted = this.isValid() &&
  3239. compareArrays(c._a, other.toArray()) > 0;
  3240. } else {
  3241. this._isDSTShifted = false;
  3242. }
  3243. return this._isDSTShifted;
  3244. }
  3245. function isLocal () {
  3246. return this.isValid() ? !this._isUTC : false;
  3247. }
  3248. function isUtcOffset () {
  3249. return this.isValid() ? this._isUTC : false;
  3250. }
  3251. function isUtc () {
  3252. return this.isValid() ? this._isUTC && this._offset === 0 : false;
  3253. }
  3254. // ASP.NET json date format regex
  3255. var aspNetRegex = /^(\-)?(?:(\d*)[. ])?(\d+)\:(\d+)(?:\:(\d+)(\.\d*)?)?$/;
  3256. // from http://docs.closure-library.googlecode.com/git/closure_goog_date_date.js.source.html
  3257. // somewhat more in line with 4.4.3.2 2004 spec, but allows decimal anywhere
  3258. // and further modified to allow for strings containing both week and day
  3259. 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)?)?$/;
  3260. function create__createDuration (input, key) {
  3261. var duration = input,
  3262. // matching against regexp is expensive, do it on demand
  3263. match = null,
  3264. sign,
  3265. ret,
  3266. diffRes;
  3267. if (isDuration(input)) {
  3268. duration = {
  3269. ms : input._milliseconds,
  3270. d : input._days,
  3271. M : input._months
  3272. };
  3273. } else if (typeof input === 'number') {
  3274. duration = {};
  3275. if (key) {
  3276. duration[key] = input;
  3277. } else {
  3278. duration.milliseconds = input;
  3279. }
  3280. } else if (!!(match = aspNetRegex.exec(input))) {
  3281. sign = (match[1] === '-') ? -1 : 1;
  3282. duration = {
  3283. y : 0,
  3284. d : toInt(match[DATE]) * sign,
  3285. h : toInt(match[HOUR]) * sign,
  3286. m : toInt(match[MINUTE]) * sign,
  3287. s : toInt(match[SECOND]) * sign,
  3288. ms : toInt(absRound(match[MILLISECOND] * 1000)) * sign // the millisecond decimal point is included in the match
  3289. };
  3290. } else if (!!(match = isoRegex.exec(input))) {
  3291. sign = (match[1] === '-') ? -1 : 1;
  3292. duration = {
  3293. y : parseIso(match[2], sign),
  3294. M : parseIso(match[3], sign),
  3295. w : parseIso(match[4], sign),
  3296. d : parseIso(match[5], sign),
  3297. h : parseIso(match[6], sign),
  3298. m : parseIso(match[7], sign),
  3299. s : parseIso(match[8], sign)
  3300. };
  3301. } else if (duration == null) {// checks for null or undefined
  3302. duration = {};
  3303. } else if (typeof duration === 'object' && ('from' in duration || 'to' in duration)) {
  3304. diffRes = momentsDifference(local__createLocal(duration.from), local__createLocal(duration.to));
  3305. duration = {};
  3306. duration.ms = diffRes.milliseconds;
  3307. duration.M = diffRes.months;
  3308. }
  3309. ret = new Duration(duration);
  3310. if (isDuration(input) && hasOwnProp(input, '_locale')) {
  3311. ret._locale = input._locale;
  3312. }
  3313. return ret;
  3314. }
  3315. create__createDuration.fn = Duration.prototype;
  3316. function parseIso (inp, sign) {
  3317. // We'd normally use ~~inp for this, but unfortunately it also
  3318. // converts floats to ints.
  3319. // inp may be undefined, so careful calling replace on it.
  3320. var res = inp && parseFloat(inp.replace(',', '.'));
  3321. // apply sign while we're at it
  3322. return (isNaN(res) ? 0 : res) * sign;
  3323. }
  3324. function positiveMomentsDifference(base, other) {
  3325. var res = {milliseconds: 0, months: 0};
  3326. res.months = other.month() - base.month() +
  3327. (other.year() - base.year()) * 12;
  3328. if (base.clone().add(res.months, 'M').isAfter(other)) {
  3329. --res.months;
  3330. }
  3331. res.milliseconds = +other - +(base.clone().add(res.months, 'M'));
  3332. return res;
  3333. }
  3334. function momentsDifference(base, other) {
  3335. var res;
  3336. if (!(base.isValid() && other.isValid())) {
  3337. return {milliseconds: 0, months: 0};
  3338. }
  3339. other = cloneWithOffset(other, base);
  3340. if (base.isBefore(other)) {
  3341. res = positiveMomentsDifference(base, other);
  3342. } else {
  3343. res = positiveMomentsDifference(other, base);
  3344. res.milliseconds = -res.milliseconds;
  3345. res.months = -res.months;
  3346. }
  3347. return res;
  3348. }
  3349. // TODO: remove 'name' arg after deprecation is removed
  3350. function createAdder(direction, name) {
  3351. return function (val, period) {
  3352. var dur, tmp;
  3353. //invert the arguments, but complain about it
  3354. if (period !== null && !isNaN(+period)) {
  3355. deprecateSimple(name, 'moment().' + name + '(period, number) is deprecated. Please use moment().' + name + '(number, period). ' +
  3356. 'See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info.');
  3357. tmp = val; val = period; period = tmp;
  3358. }
  3359. val = typeof val === 'string' ? +val : val;
  3360. dur = create__createDuration(val, period);
  3361. add_subtract__addSubtract(this, dur, direction);
  3362. return this;
  3363. };
  3364. }
  3365. function add_subtract__addSubtract (mom, duration, isAdding, updateOffset) {
  3366. var milliseconds = duration._milliseconds,
  3367. days = absRound(duration._days),
  3368. months = absRound(duration._months);
  3369. if (!mom.isValid()) {
  3370. // No op
  3371. return;
  3372. }
  3373. updateOffset = updateOffset == null ? true : updateOffset;
  3374. if (milliseconds) {
  3375. mom._d.setTime(mom._d.valueOf() + milliseconds * isAdding);
  3376. }
  3377. if (days) {
  3378. get_set__set(mom, 'Date', get_set__get(mom, 'Date') + days * isAdding);
  3379. }
  3380. if (months) {
  3381. setMonth(mom, get_set__get(mom, 'Month') + months * isAdding);
  3382. }
  3383. if (updateOffset) {
  3384. utils_hooks__hooks.updateOffset(mom, days || months);
  3385. }
  3386. }
  3387. var add_subtract__add = createAdder(1, 'add');
  3388. var add_subtract__subtract = createAdder(-1, 'subtract');
  3389. function getCalendarFormat(myMoment, now) {
  3390. var diff = myMoment.diff(now, 'days', true);
  3391. return diff < -6 ? 'sameElse' :
  3392. diff < -1 ? 'lastWeek' :
  3393. diff < 0 ? 'lastDay' :
  3394. diff < 1 ? 'sameDay' :
  3395. diff < 2 ? 'nextDay' :
  3396. diff < 7 ? 'nextWeek' : 'sameElse';
  3397. }
  3398. function moment_calendar__calendar (time, formats) {
  3399. // We want to compare the start of today, vs this.
  3400. // Getting start-of-today depends on whether we're local/utc/offset or not.
  3401. var now = time || local__createLocal(),
  3402. sod = cloneWithOffset(now, this).startOf('day'),
  3403. format = utils_hooks__hooks.calendarFormat(this, sod) || 'sameElse';
  3404. var output = formats && (isFunction(formats[format]) ? formats[format].call(this, now) : formats[format]);
  3405. return this.format(output || this.localeData().calendar(format, this, local__createLocal(now)));
  3406. }
  3407. function clone () {
  3408. return new Moment(this);
  3409. }
  3410. function isAfter (input, units) {
  3411. var localInput = isMoment(input) ? input : local__createLocal(input);
  3412. if (!(this.isValid() && localInput.isValid())) {
  3413. return false;
  3414. }
  3415. units = normalizeUnits(!isUndefined(units) ? units : 'millisecond');
  3416. if (units === 'millisecond') {
  3417. return this.valueOf() > localInput.valueOf();
  3418. } else {
  3419. return localInput.valueOf() < this.clone().startOf(units).valueOf();
  3420. }
  3421. }
  3422. function isBefore (input, units) {
  3423. var localInput = isMoment(input) ? input : local__createLocal(input);
  3424. if (!(this.isValid() && localInput.isValid())) {
  3425. return false;
  3426. }
  3427. units = normalizeUnits(!isUndefined(units) ? units : 'millisecond');
  3428. if (units === 'millisecond') {
  3429. return this.valueOf() < localInput.valueOf();
  3430. } else {
  3431. return this.clone().endOf(units).valueOf() < localInput.valueOf();
  3432. }
  3433. }
  3434. function isBetween (from, to, units, inclusivity) {
  3435. inclusivity = inclusivity || '()';
  3436. return (inclusivity[0] === '(' ? this.isAfter(from, units) : !this.isBefore(from, units)) &&
  3437. (inclusivity[1] === ')' ? this.isBefore(to, units) : !this.isAfter(to, units));
  3438. }
  3439. function isSame (input, units) {
  3440. var localInput = isMoment(input) ? input : local__createLocal(input),
  3441. inputMs;
  3442. if (!(this.isValid() && localInput.isValid())) {
  3443. return false;
  3444. }
  3445. units = normalizeUnits(units || 'millisecond');
  3446. if (units === 'millisecond') {
  3447. return this.valueOf() === localInput.valueOf();
  3448. } else {
  3449. inputMs = localInput.valueOf();
  3450. return this.clone().startOf(units).valueOf() <= inputMs && inputMs <= this.clone().endOf(units).valueOf();
  3451. }
  3452. }
  3453. function isSameOrAfter (input, units) {
  3454. return this.isSame(input, units) || this.isAfter(input,units);
  3455. }
  3456. function isSameOrBefore (input, units) {
  3457. return this.isSame(input, units) || this.isBefore(input,units);
  3458. }
  3459. function diff (input, units, asFloat) {
  3460. var that,
  3461. zoneDelta,
  3462. delta, output;
  3463. if (!this.isValid()) {
  3464. return NaN;
  3465. }
  3466. that = cloneWithOffset(input, this);
  3467. if (!that.isValid()) {
  3468. return NaN;
  3469. }
  3470. zoneDelta = (that.utcOffset() - this.utcOffset()) * 6e4;
  3471. units = normalizeUnits(units);
  3472. if (units === 'year' || units === 'month' || units === 'quarter') {
  3473. output = monthDiff(this, that);
  3474. if (units === 'quarter') {
  3475. output = output / 3;
  3476. } else if (units === 'year') {
  3477. output = output / 12;
  3478. }
  3479. } else {
  3480. delta = this - that;
  3481. output = units === 'second' ? delta / 1e3 : // 1000
  3482. units === 'minute' ? delta / 6e4 : // 1000 * 60
  3483. units === 'hour' ? delta / 36e5 : // 1000 * 60 * 60
  3484. units === 'day' ? (delta - zoneDelta) / 864e5 : // 1000 * 60 * 60 * 24, negate dst
  3485. units === 'week' ? (delta - zoneDelta) / 6048e5 : // 1000 * 60 * 60 * 24 * 7, negate dst
  3486. delta;
  3487. }
  3488. return asFloat ? output : absFloor(output);
  3489. }
  3490. function monthDiff (a, b) {
  3491. // difference in months
  3492. var wholeMonthDiff = ((b.year() - a.year()) * 12) + (b.month() - a.month()),
  3493. // b is in (anchor - 1 month, anchor + 1 month)
  3494. anchor = a.clone().add(wholeMonthDiff, 'months'),
  3495. anchor2, adjust;
  3496. if (b - anchor < 0) {
  3497. anchor2 = a.clone().add(wholeMonthDiff - 1, 'months');
  3498. // linear across the month
  3499. adjust = (b - anchor) / (anchor - anchor2);
  3500. } else {
  3501. anchor2 = a.clone().add(wholeMonthDiff + 1, 'months');
  3502. // linear across the month
  3503. adjust = (b - anchor) / (anchor2 - anchor);
  3504. }
  3505. //check for negative zero, return zero if negative zero
  3506. return -(wholeMonthDiff + adjust) || 0;
  3507. }
  3508. utils_hooks__hooks.defaultFormat = 'YYYY-MM-DDTHH:mm:ssZ';
  3509. utils_hooks__hooks.defaultFormatUtc = 'YYYY-MM-DDTHH:mm:ss[Z]';
  3510. function toString () {
  3511. return this.clone().locale('en').format('ddd MMM DD YYYY HH:mm:ss [GMT]ZZ');
  3512. }
  3513. function moment_format__toISOString () {
  3514. var m = this.clone().utc();
  3515. if (0 < m.year() && m.year() <= 9999) {
  3516. if (isFunction(Date.prototype.toISOString)) {
  3517. // native implementation is ~50x faster, use it when we can
  3518. return this.toDate().toISOString();
  3519. } else {
  3520. return formatMoment(m, 'YYYY-MM-DD[T]HH:mm:ss.SSS[Z]');
  3521. }
  3522. } else {
  3523. return formatMoment(m, 'YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]');
  3524. }
  3525. }
  3526. function format (inputString) {
  3527. if (!inputString) {
  3528. inputString = this.isUtc() ? utils_hooks__hooks.defaultFormatUtc : utils_hooks__hooks.defaultFormat;
  3529. }
  3530. var output = formatMoment(this, inputString);
  3531. return this.localeData().postformat(output);
  3532. }
  3533. function from (time, withoutSuffix) {
  3534. if (this.isValid() &&
  3535. ((isMoment(time) && time.isValid()) ||
  3536. local__createLocal(time).isValid())) {
  3537. return create__createDuration({to: this, from: time}).locale(this.locale()).humanize(!withoutSuffix);
  3538. } else {
  3539. return this.localeData().invalidDate();
  3540. }
  3541. }
  3542. function fromNow (withoutSuffix) {
  3543. return this.from(local__createLocal(), withoutSuffix);
  3544. }
  3545. function to (time, withoutSuffix) {
  3546. if (this.isValid() &&
  3547. ((isMoment(time) && time.isValid()) ||
  3548. local__createLocal(time).isValid())) {
  3549. return create__createDuration({from: this, to: time}).locale(this.locale()).humanize(!withoutSuffix);
  3550. } else {
  3551. return this.localeData().invalidDate();
  3552. }
  3553. }
  3554. function toNow (withoutSuffix) {
  3555. return this.to(local__createLocal(), withoutSuffix);
  3556. }
  3557. // If passed a locale key, it will set the locale for this
  3558. // instance. Otherwise, it will return the locale configuration
  3559. // variables for this instance.
  3560. function locale (key) {
  3561. var newLocaleData;
  3562. if (key === undefined) {
  3563. return this._locale._abbr;
  3564. } else {
  3565. newLocaleData = locale_locales__getLocale(key);
  3566. if (newLocaleData != null) {
  3567. this._locale = newLocaleData;
  3568. }
  3569. return this;
  3570. }
  3571. }
  3572. var lang = deprecate(
  3573. 'moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.',
  3574. function (key) {
  3575. if (key === undefined) {
  3576. return this.localeData();
  3577. } else {
  3578. return this.locale(key);
  3579. }
  3580. }
  3581. );
  3582. function localeData () {
  3583. return this._locale;
  3584. }
  3585. function startOf (units) {
  3586. units = normalizeUnits(units);
  3587. // the following switch intentionally omits break keywords
  3588. // to utilize falling through the cases.
  3589. switch (units) {
  3590. case 'year':
  3591. this.month(0);
  3592. /* falls through */
  3593. case 'quarter':
  3594. case 'month':
  3595. this.date(1);
  3596. /* falls through */
  3597. case 'week':
  3598. case 'isoWeek':
  3599. case 'day':
  3600. case 'date':
  3601. this.hours(0);
  3602. /* falls through */
  3603. case 'hour':
  3604. this.minutes(0);
  3605. /* falls through */
  3606. case 'minute':
  3607. this.seconds(0);
  3608. /* falls through */
  3609. case 'second':
  3610. this.milliseconds(0);
  3611. }
  3612. // weeks are a special case
  3613. if (units === 'week') {
  3614. this.weekday(0);
  3615. }
  3616. if (units === 'isoWeek') {
  3617. this.isoWeekday(1);
  3618. }
  3619. // quarters are also special
  3620. if (units === 'quarter') {
  3621. this.month(Math.floor(this.month() / 3) * 3);
  3622. }
  3623. return this;
  3624. }
  3625. function endOf (units) {
  3626. units = normalizeUnits(units);
  3627. if (units === undefined || units === 'millisecond') {
  3628. return this;
  3629. }
  3630. // 'date' is an alias for 'day', so it should be considered as such.
  3631. if (units === 'date') {
  3632. units = 'day';
  3633. }
  3634. return this.startOf(units).add(1, (units === 'isoWeek' ? 'week' : units)).subtract(1, 'ms');
  3635. }
  3636. function to_type__valueOf () {
  3637. return this._d.valueOf() - ((this._offset || 0) * 60000);
  3638. }
  3639. function unix () {
  3640. return Math.floor(this.valueOf() / 1000);
  3641. }
  3642. function toDate () {
  3643. return new Date(this.valueOf());
  3644. }
  3645. function toArray () {
  3646. var m = this;
  3647. return [m.year(), m.month(), m.date(), m.hour(), m.minute(), m.second(), m.millisecond()];
  3648. }
  3649. function toObject () {
  3650. var m = this;
  3651. return {
  3652. years: m.year(),
  3653. months: m.month(),
  3654. date: m.date(),
  3655. hours: m.hours(),
  3656. minutes: m.minutes(),
  3657. seconds: m.seconds(),
  3658. milliseconds: m.milliseconds()
  3659. };
  3660. }
  3661. function toJSON () {
  3662. // new Date(NaN).toJSON() === null
  3663. return this.isValid() ? this.toISOString() : null;
  3664. }
  3665. function moment_valid__isValid () {
  3666. return valid__isValid(this);
  3667. }
  3668. function parsingFlags () {
  3669. return extend({}, getParsingFlags(this));
  3670. }
  3671. function invalidAt () {
  3672. return getParsingFlags(this).overflow;
  3673. }
  3674. function creationData() {
  3675. return {
  3676. input: this._i,
  3677. format: this._f,
  3678. locale: this._locale,
  3679. isUTC: this._isUTC,
  3680. strict: this._strict
  3681. };
  3682. }
  3683. // FORMATTING
  3684. addFormatToken(0, ['gg', 2], 0, function () {
  3685. return this.weekYear() % 100;
  3686. });
  3687. addFormatToken(0, ['GG', 2], 0, function () {
  3688. return this.isoWeekYear() % 100;
  3689. });
  3690. function addWeekYearFormatToken (token, getter) {
  3691. addFormatToken(0, [token, token.length], 0, getter);
  3692. }
  3693. addWeekYearFormatToken('gggg', 'weekYear');
  3694. addWeekYearFormatToken('ggggg', 'weekYear');
  3695. addWeekYearFormatToken('GGGG', 'isoWeekYear');
  3696. addWeekYearFormatToken('GGGGG', 'isoWeekYear');
  3697. // ALIASES
  3698. addUnitAlias('weekYear', 'gg');
  3699. addUnitAlias('isoWeekYear', 'GG');
  3700. // PRIORITY
  3701. addUnitPriority('weekYear', 1);
  3702. addUnitPriority('isoWeekYear', 1);
  3703. // PARSING
  3704. addRegexToken('G', matchSigned);
  3705. addRegexToken('g', matchSigned);
  3706. addRegexToken('GG', match1to2, match2);
  3707. addRegexToken('gg', match1to2, match2);
  3708. addRegexToken('GGGG', match1to4, match4);
  3709. addRegexToken('gggg', match1to4, match4);
  3710. addRegexToken('GGGGG', match1to6, match6);
  3711. addRegexToken('ggggg', match1to6, match6);
  3712. addWeekParseToken(['gggg', 'ggggg', 'GGGG', 'GGGGG'], function (input, week, config, token) {
  3713. week[token.substr(0, 2)] = toInt(input);
  3714. });
  3715. addWeekParseToken(['gg', 'GG'], function (input, week, config, token) {
  3716. week[token] = utils_hooks__hooks.parseTwoDigitYear(input);
  3717. });
  3718. // MOMENTS
  3719. function getSetWeekYear (input) {
  3720. return getSetWeekYearHelper.call(this,
  3721. input,
  3722. this.week(),
  3723. this.weekday(),
  3724. this.localeData()._week.dow,
  3725. this.localeData()._week.doy);
  3726. }
  3727. function getSetISOWeekYear (input) {
  3728. return getSetWeekYearHelper.call(this,
  3729. input, this.isoWeek(), this.isoWeekday(), 1, 4);
  3730. }
  3731. function getISOWeeksInYear () {
  3732. return weeksInYear(this.year(), 1, 4);
  3733. }
  3734. function getWeeksInYear () {
  3735. var weekInfo = this.localeData()._week;
  3736. return weeksInYear(this.year(), weekInfo.dow, weekInfo.doy);
  3737. }
  3738. function getSetWeekYearHelper(input, week, weekday, dow, doy) {
  3739. var weeksTarget;
  3740. if (input == null) {
  3741. return weekOfYear(this, dow, doy).year;
  3742. } else {
  3743. weeksTarget = weeksInYear(input, dow, doy);
  3744. if (week > weeksTarget) {
  3745. week = weeksTarget;
  3746. }
  3747. return setWeekAll.call(this, input, week, weekday, dow, doy);
  3748. }
  3749. }
  3750. function setWeekAll(weekYear, week, weekday, dow, doy) {
  3751. var dayOfYearData = dayOfYearFromWeeks(weekYear, week, weekday, dow, doy),
  3752. date = createUTCDate(dayOfYearData.year, 0, dayOfYearData.dayOfYear);
  3753. this.year(date.getUTCFullYear());
  3754. this.month(date.getUTCMonth());
  3755. this.date(date.getUTCDate());
  3756. return this;
  3757. }
  3758. // FORMATTING
  3759. addFormatToken('Q', 0, 'Qo', 'quarter');
  3760. // ALIASES
  3761. addUnitAlias('quarter', 'Q');
  3762. // PRIORITY
  3763. addUnitPriority('quarter', 7);
  3764. // PARSING
  3765. addRegexToken('Q', match1);
  3766. addParseToken('Q', function (input, array) {
  3767. array[MONTH] = (toInt(input) - 1) * 3;
  3768. });
  3769. // MOMENTS
  3770. function getSetQuarter (input) {
  3771. return input == null ? Math.ceil((this.month() + 1) / 3) : this.month((input - 1) * 3 + this.month() % 3);
  3772. }
  3773. // FORMATTING
  3774. addFormatToken('D', ['DD', 2], 'Do', 'date');
  3775. // ALIASES
  3776. addUnitAlias('date', 'D');
  3777. // PRIOROITY
  3778. addUnitPriority('date', 9);
  3779. // PARSING
  3780. addRegexToken('D', match1to2);
  3781. addRegexToken('DD', match1to2, match2);
  3782. addRegexToken('Do', function (isStrict, locale) {
  3783. return isStrict ? locale._ordinalParse : locale._ordinalParseLenient;
  3784. });
  3785. addParseToken(['D', 'DD'], DATE);
  3786. addParseToken('Do', function (input, array) {
  3787. array[DATE] = toInt(input.match(match1to2)[0], 10);
  3788. });
  3789. // MOMENTS
  3790. var getSetDayOfMonth = makeGetSet('Date', true);
  3791. // FORMATTING
  3792. addFormatToken('DDD', ['DDDD', 3], 'DDDo', 'dayOfYear');
  3793. // ALIASES
  3794. addUnitAlias('dayOfYear', 'DDD');
  3795. // PRIORITY
  3796. addUnitPriority('dayOfYear', 4);
  3797. // PARSING
  3798. addRegexToken('DDD', match1to3);
  3799. addRegexToken('DDDD', match3);
  3800. addParseToken(['DDD', 'DDDD'], function (input, array, config) {
  3801. config._dayOfYear = toInt(input);
  3802. });
  3803. // HELPERS
  3804. // MOMENTS
  3805. function getSetDayOfYear (input) {
  3806. var dayOfYear = Math.round((this.clone().startOf('day') - this.clone().startOf('year')) / 864e5) + 1;
  3807. return input == null ? dayOfYear : this.add((input - dayOfYear), 'd');
  3808. }
  3809. // FORMATTING
  3810. addFormatToken('m', ['mm', 2], 0, 'minute');
  3811. // ALIASES
  3812. addUnitAlias('minute', 'm');
  3813. // PRIORITY
  3814. addUnitPriority('minute', 14);
  3815. // PARSING
  3816. addRegexToken('m', match1to2);
  3817. addRegexToken('mm', match1to2, match2);
  3818. addParseToken(['m', 'mm'], MINUTE);
  3819. // MOMENTS
  3820. var getSetMinute = makeGetSet('Minutes', false);
  3821. // FORMATTING
  3822. addFormatToken('s', ['ss', 2], 0, 'second');
  3823. // ALIASES
  3824. addUnitAlias('second', 's');
  3825. // PRIORITY
  3826. addUnitPriority('second', 15);
  3827. // PARSING
  3828. addRegexToken('s', match1to2);
  3829. addRegexToken('ss', match1to2, match2);
  3830. addParseToken(['s', 'ss'], SECOND);
  3831. // MOMENTS
  3832. var getSetSecond = makeGetSet('Seconds', false);
  3833. // FORMATTING
  3834. addFormatToken('S', 0, 0, function () {
  3835. return ~~(this.millisecond() / 100);
  3836. });
  3837. addFormatToken(0, ['SS', 2], 0, function () {
  3838. return ~~(this.millisecond() / 10);
  3839. });
  3840. addFormatToken(0, ['SSS', 3], 0, 'millisecond');
  3841. addFormatToken(0, ['SSSS', 4], 0, function () {
  3842. return this.millisecond() * 10;
  3843. });
  3844. addFormatToken(0, ['SSSSS', 5], 0, function () {
  3845. return this.millisecond() * 100;
  3846. });
  3847. addFormatToken(0, ['SSSSSS', 6], 0, function () {
  3848. return this.millisecond() * 1000;
  3849. });
  3850. addFormatToken(0, ['SSSSSSS', 7], 0, function () {
  3851. return this.millisecond() * 10000;
  3852. });
  3853. addFormatToken(0, ['SSSSSSSS', 8], 0, function () {
  3854. return this.millisecond() * 100000;
  3855. });
  3856. addFormatToken(0, ['SSSSSSSSS', 9], 0, function () {
  3857. return this.millisecond() * 1000000;
  3858. });
  3859. // ALIASES
  3860. addUnitAlias('millisecond', 'ms');
  3861. // PRIORITY
  3862. addUnitPriority('millisecond', 16);
  3863. // PARSING
  3864. addRegexToken('S', match1to3, match1);
  3865. addRegexToken('SS', match1to3, match2);
  3866. addRegexToken('SSS', match1to3, match3);
  3867. var token;
  3868. for (token = 'SSSS'; token.length <= 9; token += 'S') {
  3869. addRegexToken(token, matchUnsigned);
  3870. }
  3871. function parseMs(input, array) {
  3872. array[MILLISECOND] = toInt(('0.' + input) * 1000);
  3873. }
  3874. for (token = 'S'; token.length <= 9; token += 'S') {
  3875. addParseToken(token, parseMs);
  3876. }
  3877. // MOMENTS
  3878. var getSetMillisecond = makeGetSet('Milliseconds', false);
  3879. // FORMATTING
  3880. addFormatToken('z', 0, 0, 'zoneAbbr');
  3881. addFormatToken('zz', 0, 0, 'zoneName');
  3882. // MOMENTS
  3883. function getZoneAbbr () {
  3884. return this._isUTC ? 'UTC' : '';
  3885. }
  3886. function getZoneName () {
  3887. return this._isUTC ? 'Coordinated Universal Time' : '';
  3888. }
  3889. var momentPrototype__proto = Moment.prototype;
  3890. momentPrototype__proto.add = add_subtract__add;
  3891. momentPrototype__proto.calendar = moment_calendar__calendar;
  3892. momentPrototype__proto.clone = clone;
  3893. momentPrototype__proto.diff = diff;
  3894. momentPrototype__proto.endOf = endOf;
  3895. momentPrototype__proto.format = format;
  3896. momentPrototype__proto.from = from;
  3897. momentPrototype__proto.fromNow = fromNow;
  3898. momentPrototype__proto.to = to;
  3899. momentPrototype__proto.toNow = toNow;
  3900. momentPrototype__proto.get = stringGet;
  3901. momentPrototype__proto.invalidAt = invalidAt;
  3902. momentPrototype__proto.isAfter = isAfter;
  3903. momentPrototype__proto.isBefore = isBefore;
  3904. momentPrototype__proto.isBetween = isBetween;
  3905. momentPrototype__proto.isSame = isSame;
  3906. momentPrototype__proto.isSameOrAfter = isSameOrAfter;
  3907. momentPrototype__proto.isSameOrBefore = isSameOrBefore;
  3908. momentPrototype__proto.isValid = moment_valid__isValid;
  3909. momentPrototype__proto.lang = lang;
  3910. momentPrototype__proto.locale = locale;
  3911. momentPrototype__proto.localeData = localeData;
  3912. momentPrototype__proto.max = prototypeMax;
  3913. momentPrototype__proto.min = prototypeMin;
  3914. momentPrototype__proto.parsingFlags = parsingFlags;
  3915. momentPrototype__proto.set = stringSet;
  3916. momentPrototype__proto.startOf = startOf;
  3917. momentPrototype__proto.subtract = add_subtract__subtract;
  3918. momentPrototype__proto.toArray = toArray;
  3919. momentPrototype__proto.toObject = toObject;
  3920. momentPrototype__proto.toDate = toDate;
  3921. momentPrototype__proto.toISOString = moment_format__toISOString;
  3922. momentPrototype__proto.toJSON = toJSON;
  3923. momentPrototype__proto.toString = toString;
  3924. momentPrototype__proto.unix = unix;
  3925. momentPrototype__proto.valueOf = to_type__valueOf;
  3926. momentPrototype__proto.creationData = creationData;
  3927. // Year
  3928. momentPrototype__proto.year = getSetYear;
  3929. momentPrototype__proto.isLeapYear = getIsLeapYear;
  3930. // Week Year
  3931. momentPrototype__proto.weekYear = getSetWeekYear;
  3932. momentPrototype__proto.isoWeekYear = getSetISOWeekYear;
  3933. // Quarter
  3934. momentPrototype__proto.quarter = momentPrototype__proto.quarters = getSetQuarter;
  3935. // Month
  3936. momentPrototype__proto.month = getSetMonth;
  3937. momentPrototype__proto.daysInMonth = getDaysInMonth;
  3938. // Week
  3939. momentPrototype__proto.week = momentPrototype__proto.weeks = getSetWeek;
  3940. momentPrototype__proto.isoWeek = momentPrototype__proto.isoWeeks = getSetISOWeek;
  3941. momentPrototype__proto.weeksInYear = getWeeksInYear;
  3942. momentPrototype__proto.isoWeeksInYear = getISOWeeksInYear;
  3943. // Day
  3944. momentPrototype__proto.date = getSetDayOfMonth;
  3945. momentPrototype__proto.day = momentPrototype__proto.days = getSetDayOfWeek;
  3946. momentPrototype__proto.weekday = getSetLocaleDayOfWeek;
  3947. momentPrototype__proto.isoWeekday = getSetISODayOfWeek;
  3948. momentPrototype__proto.dayOfYear = getSetDayOfYear;
  3949. // Hour
  3950. momentPrototype__proto.hour = momentPrototype__proto.hours = getSetHour;
  3951. // Minute
  3952. momentPrototype__proto.minute = momentPrototype__proto.minutes = getSetMinute;
  3953. // Second
  3954. momentPrototype__proto.second = momentPrototype__proto.seconds = getSetSecond;
  3955. // Millisecond
  3956. momentPrototype__proto.millisecond = momentPrototype__proto.milliseconds = getSetMillisecond;
  3957. // Offset
  3958. momentPrototype__proto.utcOffset = getSetOffset;
  3959. momentPrototype__proto.utc = setOffsetToUTC;
  3960. momentPrototype__proto.local = setOffsetToLocal;
  3961. momentPrototype__proto.parseZone = setOffsetToParsedOffset;
  3962. momentPrototype__proto.hasAlignedHourOffset = hasAlignedHourOffset;
  3963. momentPrototype__proto.isDST = isDaylightSavingTime;
  3964. momentPrototype__proto.isLocal = isLocal;
  3965. momentPrototype__proto.isUtcOffset = isUtcOffset;
  3966. momentPrototype__proto.isUtc = isUtc;
  3967. momentPrototype__proto.isUTC = isUtc;
  3968. // Timezone
  3969. momentPrototype__proto.zoneAbbr = getZoneAbbr;
  3970. momentPrototype__proto.zoneName = getZoneName;
  3971. // Deprecations
  3972. momentPrototype__proto.dates = deprecate('dates accessor is deprecated. Use date instead.', getSetDayOfMonth);
  3973. momentPrototype__proto.months = deprecate('months accessor is deprecated. Use month instead', getSetMonth);
  3974. momentPrototype__proto.years = deprecate('years accessor is deprecated. Use year instead', getSetYear);
  3975. momentPrototype__proto.zone = deprecate('moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/', getSetZone);
  3976. momentPrototype__proto.isDSTShifted = deprecate('isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information', isDaylightSavingTimeShifted);
  3977. var momentPrototype = momentPrototype__proto;
  3978. function moment__createUnix (input) {
  3979. return local__createLocal(input * 1000);
  3980. }
  3981. function moment__createInZone () {
  3982. return local__createLocal.apply(null, arguments).parseZone();
  3983. }
  3984. function preParsePostFormat (string) {
  3985. return string;
  3986. }
  3987. var prototype__proto = Locale.prototype;
  3988. prototype__proto.calendar = locale_calendar__calendar;
  3989. prototype__proto.longDateFormat = longDateFormat;
  3990. prototype__proto.invalidDate = invalidDate;
  3991. prototype__proto.ordinal = ordinal;
  3992. prototype__proto.preparse = preParsePostFormat;
  3993. prototype__proto.postformat = preParsePostFormat;
  3994. prototype__proto.relativeTime = relative__relativeTime;
  3995. prototype__proto.pastFuture = pastFuture;
  3996. prototype__proto.set = locale_set__set;
  3997. // Month
  3998. prototype__proto.months = localeMonths;
  3999. prototype__proto.monthsShort = localeMonthsShort;
  4000. prototype__proto.monthsParse = localeMonthsParse;
  4001. prototype__proto.monthsRegex = monthsRegex;
  4002. prototype__proto.monthsShortRegex = monthsShortRegex;
  4003. // Week
  4004. prototype__proto.week = localeWeek;
  4005. prototype__proto.firstDayOfYear = localeFirstDayOfYear;
  4006. prototype__proto.firstDayOfWeek = localeFirstDayOfWeek;
  4007. // Day of Week
  4008. prototype__proto.weekdays = localeWeekdays;
  4009. prototype__proto.weekdaysMin = localeWeekdaysMin;
  4010. prototype__proto.weekdaysShort = localeWeekdaysShort;
  4011. prototype__proto.weekdaysParse = localeWeekdaysParse;
  4012. prototype__proto.weekdaysRegex = weekdaysRegex;
  4013. prototype__proto.weekdaysShortRegex = weekdaysShortRegex;
  4014. prototype__proto.weekdaysMinRegex = weekdaysMinRegex;
  4015. // Hours
  4016. prototype__proto.isPM = localeIsPM;
  4017. prototype__proto.meridiem = localeMeridiem;
  4018. function lists__get (format, index, field, setter) {
  4019. var locale = locale_locales__getLocale();
  4020. var utc = create_utc__createUTC().set(setter, index);
  4021. return locale[field](utc, format);
  4022. }
  4023. function listMonthsImpl (format, index, field) {
  4024. if (typeof format === 'number') {
  4025. index = format;
  4026. format = undefined;
  4027. }
  4028. format = format || '';
  4029. if (index != null) {
  4030. return lists__get(format, index, field, 'month');
  4031. }
  4032. var i;
  4033. var out = [];
  4034. for (i = 0; i < 12; i++) {
  4035. out[i] = lists__get(format, i, field, 'month');
  4036. }
  4037. return out;
  4038. }
  4039. // ()
  4040. // (5)
  4041. // (fmt, 5)
  4042. // (fmt)
  4043. // (true)
  4044. // (true, 5)
  4045. // (true, fmt, 5)
  4046. // (true, fmt)
  4047. function listWeekdaysImpl (localeSorted, format, index, field) {
  4048. if (typeof localeSorted === 'boolean') {
  4049. if (typeof format === 'number') {
  4050. index = format;
  4051. format = undefined;
  4052. }
  4053. format = format || '';
  4054. } else {
  4055. format = localeSorted;
  4056. index = format;
  4057. localeSorted = false;
  4058. if (typeof format === 'number') {
  4059. index = format;
  4060. format = undefined;
  4061. }
  4062. format = format || '';
  4063. }
  4064. var locale = locale_locales__getLocale(),
  4065. shift = localeSorted ? locale._week.dow : 0;
  4066. if (index != null) {
  4067. return lists__get(format, (index + shift) % 7, field, 'day');
  4068. }
  4069. var i;
  4070. var out = [];
  4071. for (i = 0; i < 7; i++) {
  4072. out[i] = lists__get(format, (i + shift) % 7, field, 'day');
  4073. }
  4074. return out;
  4075. }
  4076. function lists__listMonths (format, index) {
  4077. return listMonthsImpl(format, index, 'months');
  4078. }
  4079. function lists__listMonthsShort (format, index) {
  4080. return listMonthsImpl(format, index, 'monthsShort');
  4081. }
  4082. function lists__listWeekdays (localeSorted, format, index) {
  4083. return listWeekdaysImpl(localeSorted, format, index, 'weekdays');
  4084. }
  4085. function lists__listWeekdaysShort (localeSorted, format, index) {
  4086. return listWeekdaysImpl(localeSorted, format, index, 'weekdaysShort');
  4087. }
  4088. function lists__listWeekdaysMin (localeSorted, format, index) {
  4089. return listWeekdaysImpl(localeSorted, format, index, 'weekdaysMin');
  4090. }
  4091. locale_locales__getSetGlobalLocale('en', {
  4092. ordinalParse: /\d{1,2}(th|st|nd|rd)/,
  4093. ordinal : function (number) {
  4094. var b = number % 10,
  4095. output = (toInt(number % 100 / 10) === 1) ? 'th' :
  4096. (b === 1) ? 'st' :
  4097. (b === 2) ? 'nd' :
  4098. (b === 3) ? 'rd' : 'th';
  4099. return number + output;
  4100. }
  4101. });
  4102. // Side effect imports
  4103. utils_hooks__hooks.lang = deprecate('moment.lang is deprecated. Use moment.locale instead.', locale_locales__getSetGlobalLocale);
  4104. utils_hooks__hooks.langData = deprecate('moment.langData is deprecated. Use moment.localeData instead.', locale_locales__getLocale);
  4105. var mathAbs = Math.abs;
  4106. function duration_abs__abs () {
  4107. var data = this._data;
  4108. this._milliseconds = mathAbs(this._milliseconds);
  4109. this._days = mathAbs(this._days);
  4110. this._months = mathAbs(this._months);
  4111. data.milliseconds = mathAbs(data.milliseconds);
  4112. data.seconds = mathAbs(data.seconds);
  4113. data.minutes = mathAbs(data.minutes);
  4114. data.hours = mathAbs(data.hours);
  4115. data.months = mathAbs(data.months);
  4116. data.years = mathAbs(data.years);
  4117. return this;
  4118. }
  4119. function duration_add_subtract__addSubtract (duration, input, value, direction) {
  4120. var other = create__createDuration(input, value);
  4121. duration._milliseconds += direction * other._milliseconds;
  4122. duration._days += direction * other._days;
  4123. duration._months += direction * other._months;
  4124. return duration._bubble();
  4125. }
  4126. // supports only 2.0-style add(1, 's') or add(duration)
  4127. function duration_add_subtract__add (input, value) {
  4128. return duration_add_subtract__addSubtract(this, input, value, 1);
  4129. }
  4130. // supports only 2.0-style subtract(1, 's') or subtract(duration)
  4131. function duration_add_subtract__subtract (input, value) {
  4132. return duration_add_subtract__addSubtract(this, input, value, -1);
  4133. }
  4134. function absCeil (number) {
  4135. if (number < 0) {
  4136. return Math.floor(number);
  4137. } else {
  4138. return Math.ceil(number);
  4139. }
  4140. }
  4141. function bubble () {
  4142. var milliseconds = this._milliseconds;
  4143. var days = this._days;
  4144. var months = this._months;
  4145. var data = this._data;
  4146. var seconds, minutes, hours, years, monthsFromDays;
  4147. // if we have a mix of positive and negative values, bubble down first
  4148. // check: https://github.com/moment/moment/issues/2166
  4149. if (!((milliseconds >= 0 && days >= 0 && months >= 0) ||
  4150. (milliseconds <= 0 && days <= 0 && months <= 0))) {
  4151. milliseconds += absCeil(monthsToDays(months) + days) * 864e5;
  4152. days = 0;
  4153. months = 0;
  4154. }
  4155. // The following code bubbles up values, see the tests for
  4156. // examples of what that means.
  4157. data.milliseconds = milliseconds % 1000;
  4158. seconds = absFloor(milliseconds / 1000);
  4159. data.seconds = seconds % 60;
  4160. minutes = absFloor(seconds / 60);
  4161. data.minutes = minutes % 60;
  4162. hours = absFloor(minutes / 60);
  4163. data.hours = hours % 24;
  4164. days += absFloor(hours / 24);
  4165. // convert days to months
  4166. monthsFromDays = absFloor(daysToMonths(days));
  4167. months += monthsFromDays;
  4168. days -= absCeil(monthsToDays(monthsFromDays));
  4169. // 12 months -> 1 year
  4170. years = absFloor(months / 12);
  4171. months %= 12;
  4172. data.days = days;
  4173. data.months = months;
  4174. data.years = years;
  4175. return this;
  4176. }
  4177. function daysToMonths (days) {
  4178. // 400 years have 146097 days (taking into account leap year rules)
  4179. // 400 years have 12 months === 4800
  4180. return days * 4800 / 146097;
  4181. }
  4182. function monthsToDays (months) {
  4183. // the reverse of daysToMonths
  4184. return months * 146097 / 4800;
  4185. }
  4186. function as (units) {
  4187. var days;
  4188. var months;
  4189. var milliseconds = this._milliseconds;
  4190. units = normalizeUnits(units);
  4191. if (units === 'month' || units === 'year') {
  4192. days = this._days + milliseconds / 864e5;
  4193. months = this._months + daysToMonths(days);
  4194. return units === 'month' ? months : months / 12;
  4195. } else {
  4196. // handle milliseconds separately because of floating point math errors (issue #1867)
  4197. days = this._days + Math.round(monthsToDays(this._months));
  4198. switch (units) {
  4199. case 'week' : return days / 7 + milliseconds / 6048e5;
  4200. case 'day' : return days + milliseconds / 864e5;
  4201. case 'hour' : return days * 24 + milliseconds / 36e5;
  4202. case 'minute' : return days * 1440 + milliseconds / 6e4;
  4203. case 'second' : return days * 86400 + milliseconds / 1000;
  4204. // Math.floor prevents floating point math errors here
  4205. case 'millisecond': return Math.floor(days * 864e5) + milliseconds;
  4206. default: throw new Error('Unknown unit ' + units);
  4207. }
  4208. }
  4209. }
  4210. // TODO: Use this.as('ms')?
  4211. function duration_as__valueOf () {
  4212. return (
  4213. this._milliseconds +
  4214. this._days * 864e5 +
  4215. (this._months % 12) * 2592e6 +
  4216. toInt(this._months / 12) * 31536e6
  4217. );
  4218. }
  4219. function makeAs (alias) {
  4220. return function () {
  4221. return this.as(alias);
  4222. };
  4223. }
  4224. var asMilliseconds = makeAs('ms');
  4225. var asSeconds = makeAs('s');
  4226. var asMinutes = makeAs('m');
  4227. var asHours = makeAs('h');
  4228. var asDays = makeAs('d');
  4229. var asWeeks = makeAs('w');
  4230. var asMonths = makeAs('M');
  4231. var asYears = makeAs('y');
  4232. function duration_get__get (units) {
  4233. units = normalizeUnits(units);
  4234. return this[units + 's']();
  4235. }
  4236. function makeGetter(name) {
  4237. return function () {
  4238. return this._data[name];
  4239. };
  4240. }
  4241. var milliseconds = makeGetter('milliseconds');
  4242. var seconds = makeGetter('seconds');
  4243. var minutes = makeGetter('minutes');
  4244. var hours = makeGetter('hours');
  4245. var days = makeGetter('days');
  4246. var months = makeGetter('months');
  4247. var years = makeGetter('years');
  4248. function weeks () {
  4249. return absFloor(this.days() / 7);
  4250. }
  4251. var round = Math.round;
  4252. var thresholds = {
  4253. s: 45, // seconds to minute
  4254. m: 45, // minutes to hour
  4255. h: 22, // hours to day
  4256. d: 26, // days to month
  4257. M: 11 // months to year
  4258. };
  4259. // helper function for moment.fn.from, moment.fn.fromNow, and moment.duration.fn.humanize
  4260. function substituteTimeAgo(string, number, withoutSuffix, isFuture, locale) {
  4261. return locale.relativeTime(number || 1, !!withoutSuffix, string, isFuture);
  4262. }
  4263. function duration_humanize__relativeTime (posNegDuration, withoutSuffix, locale) {
  4264. var duration = create__createDuration(posNegDuration).abs();
  4265. var seconds = round(duration.as('s'));
  4266. var minutes = round(duration.as('m'));
  4267. var hours = round(duration.as('h'));
  4268. var days = round(duration.as('d'));
  4269. var months = round(duration.as('M'));
  4270. var years = round(duration.as('y'));
  4271. var a = seconds < thresholds.s && ['s', seconds] ||
  4272. minutes <= 1 && ['m'] ||
  4273. minutes < thresholds.m && ['mm', minutes] ||
  4274. hours <= 1 && ['h'] ||
  4275. hours < thresholds.h && ['hh', hours] ||
  4276. days <= 1 && ['d'] ||
  4277. days < thresholds.d && ['dd', days] ||
  4278. months <= 1 && ['M'] ||
  4279. months < thresholds.M && ['MM', months] ||
  4280. years <= 1 && ['y'] || ['yy', years];
  4281. a[2] = withoutSuffix;
  4282. a[3] = +posNegDuration > 0;
  4283. a[4] = locale;
  4284. return substituteTimeAgo.apply(null, a);
  4285. }
  4286. // This function allows you to set the rounding function for relative time strings
  4287. function duration_humanize__getSetRelativeTimeRounding (roundingFunction) {
  4288. if (roundingFunction === undefined) {
  4289. return round;
  4290. }
  4291. if (typeof(roundingFunction) === 'function') {
  4292. round = roundingFunction;
  4293. return true;
  4294. }
  4295. return false;
  4296. }
  4297. // This function allows you to set a threshold for relative time strings
  4298. function duration_humanize__getSetRelativeTimeThreshold (threshold, limit) {
  4299. if (thresholds[threshold] === undefined) {
  4300. return false;
  4301. }
  4302. if (limit === undefined) {
  4303. return thresholds[threshold];
  4304. }
  4305. thresholds[threshold] = limit;
  4306. return true;
  4307. }
  4308. function humanize (withSuffix) {
  4309. var locale = this.localeData();
  4310. var output = duration_humanize__relativeTime(this, !withSuffix, locale);
  4311. if (withSuffix) {
  4312. output = locale.pastFuture(+this, output);
  4313. }
  4314. return locale.postformat(output);
  4315. }
  4316. var iso_string__abs = Math.abs;
  4317. function iso_string__toISOString() {
  4318. // for ISO strings we do not use the normal bubbling rules:
  4319. // * milliseconds bubble up until they become hours
  4320. // * days do not bubble at all
  4321. // * months bubble up until they become years
  4322. // This is because there is no context-free conversion between hours and days
  4323. // (think of clock changes)
  4324. // and also not between days and months (28-31 days per month)
  4325. var seconds = iso_string__abs(this._milliseconds) / 1000;
  4326. var days = iso_string__abs(this._days);
  4327. var months = iso_string__abs(this._months);
  4328. var minutes, hours, years;
  4329. // 3600 seconds -> 60 minutes -> 1 hour
  4330. minutes = absFloor(seconds / 60);
  4331. hours = absFloor(minutes / 60);
  4332. seconds %= 60;
  4333. minutes %= 60;
  4334. // 12 months -> 1 year
  4335. years = absFloor(months / 12);
  4336. months %= 12;
  4337. // inspired by https://github.com/dordille/moment-isoduration/blob/master/moment.isoduration.js
  4338. var Y = years;
  4339. var M = months;
  4340. var D = days;
  4341. var h = hours;
  4342. var m = minutes;
  4343. var s = seconds;
  4344. var total = this.asSeconds();
  4345. if (!total) {
  4346. // this is the same as C#'s (Noda) and python (isodate)...
  4347. // but not other JS (goog.date)
  4348. return 'P0D';
  4349. }
  4350. return (total < 0 ? '-' : '') +
  4351. 'P' +
  4352. (Y ? Y + 'Y' : '') +
  4353. (M ? M + 'M' : '') +
  4354. (D ? D + 'D' : '') +
  4355. ((h || m || s) ? 'T' : '') +
  4356. (h ? h + 'H' : '') +
  4357. (m ? m + 'M' : '') +
  4358. (s ? s + 'S' : '');
  4359. }
  4360. var duration_prototype__proto = Duration.prototype;
  4361. duration_prototype__proto.abs = duration_abs__abs;
  4362. duration_prototype__proto.add = duration_add_subtract__add;
  4363. duration_prototype__proto.subtract = duration_add_subtract__subtract;
  4364. duration_prototype__proto.as = as;
  4365. duration_prototype__proto.asMilliseconds = asMilliseconds;
  4366. duration_prototype__proto.asSeconds = asSeconds;
  4367. duration_prototype__proto.asMinutes = asMinutes;
  4368. duration_prototype__proto.asHours = asHours;
  4369. duration_prototype__proto.asDays = asDays;
  4370. duration_prototype__proto.asWeeks = asWeeks;
  4371. duration_prototype__proto.asMonths = asMonths;
  4372. duration_prototype__proto.asYears = asYears;
  4373. duration_prototype__proto.valueOf = duration_as__valueOf;
  4374. duration_prototype__proto._bubble = bubble;
  4375. duration_prototype__proto.get = duration_get__get;
  4376. duration_prototype__proto.milliseconds = milliseconds;
  4377. duration_prototype__proto.seconds = seconds;
  4378. duration_prototype__proto.minutes = minutes;
  4379. duration_prototype__proto.hours = hours;
  4380. duration_prototype__proto.days = days;
  4381. duration_prototype__proto.weeks = weeks;
  4382. duration_prototype__proto.months = months;
  4383. duration_prototype__proto.years = years;
  4384. duration_prototype__proto.humanize = humanize;
  4385. duration_prototype__proto.toISOString = iso_string__toISOString;
  4386. duration_prototype__proto.toString = iso_string__toISOString;
  4387. duration_prototype__proto.toJSON = iso_string__toISOString;
  4388. duration_prototype__proto.locale = locale;
  4389. duration_prototype__proto.localeData = localeData;
  4390. // Deprecations
  4391. duration_prototype__proto.toIsoString = deprecate('toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)', iso_string__toISOString);
  4392. duration_prototype__proto.lang = lang;
  4393. // Side effect imports
  4394. // FORMATTING
  4395. addFormatToken('X', 0, 0, 'unix');
  4396. addFormatToken('x', 0, 0, 'valueOf');
  4397. // PARSING
  4398. addRegexToken('x', matchSigned);
  4399. addRegexToken('X', matchTimestamp);
  4400. addParseToken('X', function (input, array, config) {
  4401. config._d = new Date(parseFloat(input, 10) * 1000);
  4402. });
  4403. addParseToken('x', function (input, array, config) {
  4404. config._d = new Date(toInt(input));
  4405. });
  4406. // Side effect imports
  4407. utils_hooks__hooks.version = '2.15.2';
  4408. setHookCallback(local__createLocal);
  4409. utils_hooks__hooks.fn = momentPrototype;
  4410. utils_hooks__hooks.min = min;
  4411. utils_hooks__hooks.max = max;
  4412. utils_hooks__hooks.now = now;
  4413. utils_hooks__hooks.utc = create_utc__createUTC;
  4414. utils_hooks__hooks.unix = moment__createUnix;
  4415. utils_hooks__hooks.months = lists__listMonths;
  4416. utils_hooks__hooks.isDate = isDate;
  4417. utils_hooks__hooks.locale = locale_locales__getSetGlobalLocale;
  4418. utils_hooks__hooks.invalid = valid__createInvalid;
  4419. utils_hooks__hooks.duration = create__createDuration;
  4420. utils_hooks__hooks.isMoment = isMoment;
  4421. utils_hooks__hooks.weekdays = lists__listWeekdays;
  4422. utils_hooks__hooks.parseZone = moment__createInZone;
  4423. utils_hooks__hooks.localeData = locale_locales__getLocale;
  4424. utils_hooks__hooks.isDuration = isDuration;
  4425. utils_hooks__hooks.monthsShort = lists__listMonthsShort;
  4426. utils_hooks__hooks.weekdaysMin = lists__listWeekdaysMin;
  4427. utils_hooks__hooks.defineLocale = defineLocale;
  4428. utils_hooks__hooks.updateLocale = updateLocale;
  4429. utils_hooks__hooks.locales = locale_locales__listLocales;
  4430. utils_hooks__hooks.weekdaysShort = lists__listWeekdaysShort;
  4431. utils_hooks__hooks.normalizeUnits = normalizeUnits;
  4432. utils_hooks__hooks.relativeTimeRounding = duration_humanize__getSetRelativeTimeRounding;
  4433. utils_hooks__hooks.relativeTimeThreshold = duration_humanize__getSetRelativeTimeThreshold;
  4434. utils_hooks__hooks.calendarFormat = getCalendarFormat;
  4435. utils_hooks__hooks.prototype = momentPrototype;
  4436. var _moment = utils_hooks__hooks;
  4437. return _moment;
  4438. }));
  4439. define('moment', ['moment/moment'], function (main) { return main; });
  4440. define('backend',['fast', 'template', 'moment'], function (Fast, Template, Moment) {
  4441. var Backend = {
  4442. api: {
  4443. sidebar: function (params) {
  4444. colorArr = ['red', 'green', 'yellow', 'blue', 'teal', 'orange', 'purple'];
  4445. $colorNums = colorArr.length;
  4446. badgeList = {};
  4447. $.each(params, function (k, v) {
  4448. $url = Fast.api.fixurl(k);
  4449. if ($.isArray(v)) {
  4450. $nums = typeof v[0] !== 'undefined' ? v[0] : 0;
  4451. $color = typeof v[1] !== 'undefined' ? v[1] : colorArr[(!isNaN($nums) ? $nums : $nums.length) % $colorNums];
  4452. $class = typeof v[2] !== 'undefined' ? v[2] : 'label';
  4453. } else {
  4454. $nums = v;
  4455. $color = colorArr[(!isNaN($nums) ? $nums : $nums.length) % $colorNums];
  4456. $class = 'label';
  4457. }
  4458. //必须nums大于0才显示
  4459. badgeList[$url] = $nums > 0 ? '<small class="' + $class + ' pull-right bg-' + $color + '">' + $nums + '</small>' : '';
  4460. });
  4461. $.each(badgeList, function (k, v) {
  4462. var anchor = top.window.$("li a[addtabs][url='" + k + "']");
  4463. if (anchor) {
  4464. top.window.$(".pull-right-container", anchor).html(v);
  4465. top.window.$(".nav-addtabs li a[node-id='" + anchor.attr("addtabs") + "'] .pull-right-container").html(v);
  4466. }
  4467. });
  4468. },
  4469. addtabs: function (url, title, icon) {
  4470. var dom = "a[url='{url}']"
  4471. var leftlink = top.window.$(dom.replace(/\{url\}/, url));
  4472. if (leftlink.size() > 0) {
  4473. leftlink.trigger("click");
  4474. } else {
  4475. url = Fast.api.fixurl(url);
  4476. leftlink = top.window.$(dom.replace(/\{url\}/, url));
  4477. if (leftlink.size() > 0) {
  4478. var event = leftlink.parent().hasClass("active") ? "dblclick" : "click";
  4479. leftlink.trigger(event);
  4480. } else {
  4481. var baseurl = url.substr(0, url.indexOf("?") > -1 ? url.indexOf("?") : url.length);
  4482. leftlink = top.window.$(dom.replace(/\{url\}/, baseurl));
  4483. //能找到相对地址
  4484. if (leftlink.size() > 0) {
  4485. icon = typeof icon !== 'undefined' ? icon : leftlink.find("i").attr("class");
  4486. title = typeof title !== 'undefined' ? title : leftlink.find("span:first").text();
  4487. leftlink.trigger("fa.event.toggleitem");
  4488. }
  4489. var navnode = top.window.$(".nav-tabs ul li a[node-url='" + url + "']");
  4490. if (navnode.size() > 0) {
  4491. navnode.trigger("click");
  4492. } else {
  4493. //追加新的tab
  4494. var id = Math.floor(new Date().valueOf() * Math.random());
  4495. icon = typeof icon !== 'undefined' ? icon : 'fa fa-circle-o';
  4496. title = typeof title !== 'undefined' ? title : '';
  4497. top.window.$("<a />").append('<i class="' + icon + '"></i> <span>' + title + '</span>').prop("href", url).attr({
  4498. url: url,
  4499. addtabs: id
  4500. }).addClass("hide").appendTo(top.window.document.body).trigger("click");
  4501. }
  4502. }
  4503. }
  4504. },
  4505. closetabs: function (url) {
  4506. if (typeof url === 'undefined') {
  4507. top.window.$("ul.nav-addtabs li.active .close-tab").trigger("click");
  4508. } else {
  4509. var dom = "a[url='{url}']"
  4510. var navlink = top.window.$(dom.replace(/\{url\}/, url));
  4511. if (navlink.size() === 0) {
  4512. url = Fast.api.fixurl(url);
  4513. navlink = top.window.$(dom.replace(/\{url\}/, url));
  4514. if (navlink.size() === 0) {
  4515. } else {
  4516. var baseurl = url.substr(0, url.indexOf("?") > -1 ? url.indexOf("?") : url.length);
  4517. navlink = top.window.$(dom.replace(/\{url\}/, baseurl));
  4518. //能找到相对地址
  4519. if (navlink.size() === 0) {
  4520. navlink = top.window.$(".nav-tabs ul li a[node-url='" + url + "']");
  4521. }
  4522. }
  4523. }
  4524. if (navlink.size() > 0 && navlink.attr('addtabs')) {
  4525. top.window.$("ul.nav-addtabs li#tab_" + navlink.attr('addtabs') + " .close-tab").trigger("click");
  4526. }
  4527. }
  4528. },
  4529. replaceids: function (elem, url) {
  4530. //如果有需要替换ids的
  4531. if (url.indexOf("{ids}") > -1) {
  4532. var ids = 0;
  4533. var tableId = $(elem).data("table-id");
  4534. if (tableId && $(tableId).size() > 0 && $(tableId).data("bootstrap.table")) {
  4535. var Table = require("table");
  4536. ids = Table.api.selectedids($(tableId)).join(",");
  4537. }
  4538. url = url.replace(/\{ids\}/g, ids);
  4539. }
  4540. return url;
  4541. },
  4542. refreshmenu: function () {
  4543. top.window.$(".sidebar-menu").trigger("refresh");
  4544. }
  4545. },
  4546. init: function () {
  4547. //公共代码
  4548. //添加ios-fix兼容iOS下的iframe
  4549. if (/iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream) {
  4550. $("html").addClass("ios-fix");
  4551. }
  4552. //配置Toastr的参数
  4553. Toastr.options.positionClass = Config.controllername === 'index' ? "toast-top-right-index" : "toast-top-right";
  4554. //点击包含.btn-dialog的元素时弹出dialog
  4555. $(document).on('click', '.btn-dialog,.dialogit', function (e) {
  4556. var that = this;
  4557. var options = $.extend({}, $(that).data() || {});
  4558. if (typeof options.tableId !== 'undefined' && typeof options.fieldIndex !== 'undefined' && typeof options.buttonIndex !== 'undefined') {
  4559. var tableOptions = $("#" + options.tableId).bootstrapTable('getOptions');
  4560. if (tableOptions) {
  4561. var columnObj = null;
  4562. $.each(tableOptions.columns, function (i, columns) {
  4563. $.each(columns, function (j, column) {
  4564. if (typeof column.fieldIndex !== 'undefined' && column.fieldIndex === options.fieldIndex) {
  4565. columnObj = column;
  4566. return false;
  4567. }
  4568. });
  4569. if (columnObj) {
  4570. return false;
  4571. }
  4572. });
  4573. if (columnObj) {
  4574. var button = columnObj['buttons'][options.buttonIndex];
  4575. if (button && typeof button.callback === 'function') {
  4576. options.callback = button.callback;
  4577. }
  4578. }
  4579. }
  4580. }
  4581. if (typeof options.confirm !== 'undefined') {
  4582. Layer.confirm(options.confirm, function (index) {
  4583. Backend.api.open(Backend.api.replaceids(that, $(that).attr('href')), $(that).attr('title'), options);
  4584. Layer.close(index);
  4585. });
  4586. } else {
  4587. Backend.api.open(Backend.api.replaceids(that, $(that).attr('href')), $(that).attr('title'), options);
  4588. }
  4589. return false;
  4590. });
  4591. //点击包含.btn-addtabs的元素时新增选项卡
  4592. $(document).on('click', '.btn-addtabs,.addtabsit', function (e) {
  4593. var that = this;
  4594. var options = $.extend({}, $(that).data() || {});
  4595. if (typeof options.confirm !== 'undefined') {
  4596. Layer.confirm(options.confirm, function (index) {
  4597. Backend.api.addtabs(Backend.api.replaceids(that, $(that).attr('href')), $(that).attr("title"));
  4598. Layer.close(index);
  4599. });
  4600. } else {
  4601. Backend.api.addtabs(Backend.api.replaceids(that, $(that).attr('href')), $(that).attr("title"));
  4602. }
  4603. return false;
  4604. });
  4605. //点击包含.btn-ajax的元素时发送Ajax请求
  4606. $(document).on('click', '.btn-ajax,.ajaxit', function (e) {
  4607. var that = this;
  4608. var options = $.extend({}, $(that).data() || {});
  4609. if (typeof options.url === 'undefined' && $(that).attr("href")) {
  4610. options.url = $(that).attr("href");
  4611. }
  4612. options.url = Backend.api.replaceids(this, options.url);
  4613. var success = typeof options.success === 'function' ? options.success : null;
  4614. var error = typeof options.error === 'function' ? options.error : null;
  4615. delete options.success;
  4616. delete options.error;
  4617. if (typeof options.tableId !== 'undefined' && typeof options.fieldIndex !== 'undefined' && typeof options.buttonIndex !== 'undefined') {
  4618. var tableOptions = $("#" + options.tableId).bootstrapTable('getOptions');
  4619. if (tableOptions) {
  4620. var columnObj = null;
  4621. $.each(tableOptions.columns, function (i, columns) {
  4622. $.each(columns, function (j, column) {
  4623. if (typeof column.fieldIndex !== 'undefined' && column.fieldIndex === options.fieldIndex) {
  4624. columnObj = column;
  4625. return false;
  4626. }
  4627. });
  4628. if (columnObj) {
  4629. return false;
  4630. }
  4631. });
  4632. if (columnObj) {
  4633. var button = columnObj['buttons'][options.buttonIndex];
  4634. if (button && typeof button.success === 'function') {
  4635. success = button.success;
  4636. }
  4637. if (button && typeof button.error === 'function') {
  4638. error = button.error;
  4639. }
  4640. }
  4641. }
  4642. }
  4643. //如果未设备成功的回调,设定了自动刷新的情况下自动进行刷新
  4644. if (!success && typeof options.tableId !== 'undefined' && typeof options.refresh !== 'undefined' && options.refresh) {
  4645. $("#" + options.tableId).bootstrapTable('refresh');
  4646. }
  4647. if (typeof options.confirm !== 'undefined') {
  4648. Layer.confirm(options.confirm, function (index) {
  4649. Backend.api.ajax(options, success, error);
  4650. Layer.close(index);
  4651. });
  4652. } else {
  4653. Backend.api.ajax(options, success, error);
  4654. }
  4655. return false;
  4656. });
  4657. //修复含有fixed-footer类的body边距
  4658. if ($(".fixed-footer").size() > 0) {
  4659. $(document.body).css("padding-bottom", $(".fixed-footer").outerHeight());
  4660. }
  4661. //修复不在iframe时layer-footer隐藏的问题
  4662. if ($(".layer-footer").size() > 0 && self === top) {
  4663. $(".layer-footer").show();
  4664. }
  4665. }
  4666. };
  4667. Backend.api = $.extend(Fast.api, Backend.api);
  4668. //将Template渲染至全局,以便于在子框架中调用
  4669. window.Template = Template;
  4670. //将Moment渲染至全局,以便于在子框架中调用
  4671. window.Moment = Moment;
  4672. //将Backend渲染至全局,以便于在子框架中调用
  4673. window.Backend = Backend;
  4674. Backend.init();
  4675. return Backend;
  4676. });
  4677. define('backend-init',['backend'], function (Backend) {
  4678. });
  4679. //! moment.js locale configuration
  4680. //! locale : Chinese (China) [zh-cn]
  4681. //! author : suupic : https://github.com/suupic
  4682. //! author : Zeno Zeng : https://github.com/zenozeng
  4683. ;(function (global, factory) {
  4684. typeof exports === 'object' && typeof module !== 'undefined'
  4685. && typeof require === 'function' ? factory(require('../moment')) :
  4686. typeof define === 'function' && define.amd ? define('moment/locale/zh-cn',['../moment'], factory) :
  4687. factory(global.moment)
  4688. }(this, function (moment) { 'use strict';
  4689. var zh_cn = moment.defineLocale('zh-cn', {
  4690. months : '一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月'.split('_'),
  4691. monthsShort : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),
  4692. weekdays : '星期日_星期一_星期二_星期三_星期四_星期五_星期六'.split('_'),
  4693. weekdaysShort : '周日_周一_周二_周三_周四_周五_周六'.split('_'),
  4694. weekdaysMin : '日_一_二_三_四_五_六'.split('_'),
  4695. longDateFormat : {
  4696. LT : 'Ah点mm分',
  4697. LTS : 'Ah点m分s秒',
  4698. L : 'YYYY-MM-DD',
  4699. LL : 'YYYY年MMMD日',
  4700. LLL : 'YYYY年MMMD日Ah点mm分',
  4701. LLLL : 'YYYY年MMMD日ddddAh点mm分',
  4702. l : 'YYYY-MM-DD',
  4703. ll : 'YYYY年MMMD日',
  4704. lll : 'YYYY年MMMD日Ah点mm分',
  4705. llll : 'YYYY年MMMD日ddddAh点mm分'
  4706. },
  4707. meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,
  4708. meridiemHour: function (hour, meridiem) {
  4709. if (hour === 12) {
  4710. hour = 0;
  4711. }
  4712. if (meridiem === '凌晨' || meridiem === '早上' ||
  4713. meridiem === '上午') {
  4714. return hour;
  4715. } else if (meridiem === '下午' || meridiem === '晚上') {
  4716. return hour + 12;
  4717. } else {
  4718. // '中午'
  4719. return hour >= 11 ? hour : hour + 12;
  4720. }
  4721. },
  4722. meridiem : function (hour, minute, isLower) {
  4723. var hm = hour * 100 + minute;
  4724. if (hm < 600) {
  4725. return '凌晨';
  4726. } else if (hm < 900) {
  4727. return '早上';
  4728. } else if (hm < 1130) {
  4729. return '上午';
  4730. } else if (hm < 1230) {
  4731. return '中午';
  4732. } else if (hm < 1800) {
  4733. return '下午';
  4734. } else {
  4735. return '晚上';
  4736. }
  4737. },
  4738. calendar : {
  4739. sameDay : function () {
  4740. return this.minutes() === 0 ? '[今天]Ah[点整]' : '[今天]LT';
  4741. },
  4742. nextDay : function () {
  4743. return this.minutes() === 0 ? '[明天]Ah[点整]' : '[明天]LT';
  4744. },
  4745. lastDay : function () {
  4746. return this.minutes() === 0 ? '[昨天]Ah[点整]' : '[昨天]LT';
  4747. },
  4748. nextWeek : function () {
  4749. var startOfWeek, prefix;
  4750. startOfWeek = moment().startOf('week');
  4751. prefix = this.diff(startOfWeek, 'days') >= 7 ? '[下]' : '[本]';
  4752. return this.minutes() === 0 ? prefix + 'dddAh点整' : prefix + 'dddAh点mm';
  4753. },
  4754. lastWeek : function () {
  4755. var startOfWeek, prefix;
  4756. startOfWeek = moment().startOf('week');
  4757. prefix = this.unix() < startOfWeek.unix() ? '[上]' : '[本]';
  4758. return this.minutes() === 0 ? prefix + 'dddAh点整' : prefix + 'dddAh点mm';
  4759. },
  4760. sameElse : 'LL'
  4761. },
  4762. ordinalParse: /\d{1,2}(日|月|周)/,
  4763. ordinal : function (number, period) {
  4764. switch (period) {
  4765. case 'd':
  4766. case 'D':
  4767. case 'DDD':
  4768. return number + '日';
  4769. case 'M':
  4770. return number + '月';
  4771. case 'w':
  4772. case 'W':
  4773. return number + '周';
  4774. default:
  4775. return number;
  4776. }
  4777. },
  4778. relativeTime : {
  4779. future : '%s内',
  4780. past : '%s前',
  4781. s : '几秒',
  4782. m : '1 分钟',
  4783. mm : '%d 分钟',
  4784. h : '1 小时',
  4785. hh : '%d 小时',
  4786. d : '1 天',
  4787. dd : '%d 天',
  4788. M : '1 个月',
  4789. MM : '%d 个月',
  4790. y : '1 年',
  4791. yy : '%d 年'
  4792. },
  4793. week : {
  4794. // GB/T 7408-1994《数据元和交换格式·信息交换·日期和时间表示法》与ISO 8601:1988等效
  4795. dow : 1, // Monday is the first day of the week.
  4796. doy : 4 // The week that contains Jan 4th is the first week of the year.
  4797. }
  4798. });
  4799. return zh_cn;
  4800. }));
  4801. /*
  4802. * bootstrap-table - v1.11.1 - 2017-02-22
  4803. * https://github.com/wenzhixin/bootstrap-table
  4804. * Copyright (c) 2017 zhixin wen
  4805. * Licensed MIT License
  4806. */
  4807. !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++){
  4808. 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);
  4809. define("bootstrap-table", ["bootstrap"], (function (global) {
  4810. return function () {
  4811. var ret, fn;
  4812. return ret || global.$.fn.bootstrapTable;
  4813. };
  4814. }(this)));
  4815. /**
  4816. * Bootstrap Table Chinese translation
  4817. * Author: Zhixin Wen<wenzhixin2010@gmail.com>
  4818. */
  4819. (function ($) {
  4820. 'use strict';
  4821. $.fn.bootstrapTable.locales['zh-CN'] = {
  4822. formatLoadingMessage: function () {
  4823. return '正在努力地加载数据中,请稍候……';
  4824. },
  4825. formatRecordsPerPage: function (pageNumber) {
  4826. return '每页显示 ' + pageNumber + ' 条记录';
  4827. },
  4828. formatShowingRows: function (pageFrom, pageTo, totalRows) {
  4829. return '显示第 ' + pageFrom + ' 到第 ' + pageTo + ' 条记录,总共 ' + totalRows + ' 条记录';
  4830. },
  4831. formatSearch: function () {
  4832. return '搜索';
  4833. },
  4834. formatNoMatches: function () {
  4835. return '没有找到匹配的记录';
  4836. },
  4837. formatPaginationSwitch: function () {
  4838. return '隐藏/显示分页';
  4839. },
  4840. formatRefresh: function () {
  4841. return '刷新';
  4842. },
  4843. formatToggle: function () {
  4844. return '切换';
  4845. },
  4846. formatColumns: function () {
  4847. return '列';
  4848. },
  4849. formatExport: function () {
  4850. return '导出数据';
  4851. },
  4852. formatClearFilters: function () {
  4853. return '清空过滤';
  4854. }
  4855. };
  4856. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['zh-CN']);
  4857. })(jQuery);
  4858. define("bootstrap-table-lang", ["bootstrap-table"], (function (global) {
  4859. return function () {
  4860. var ret, fn;
  4861. return ret || global.$.fn.bootstrapTable.defaults;
  4862. };
  4863. }(this)));
  4864. /*
  4865. tableExport.jquery.plugin
  4866. Version 1.9.9
  4867. Copyright (c) 2015-2018 hhurz, https://github.com/hhurz
  4868. Original Work Copyright (c) 2014 Giri Raj
  4869. Licensed under the MIT License
  4870. */
  4871. 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 O=c[D];if(h.call(u,O,D,c))return{i:D,v:O}}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)};
  4872. $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})}};
  4873. $jscomp.polyfill("Array.prototype.find",function(c){return c?c:function(c,u){return $jscomp.findInternal(this,c,u).v}},"es6","es3");
  4874. (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,d){var a=b.parents("table").length;return b.find(d).filter(function(){return c(this).closest("table").parents("table").length===a})}function D(b,d){return b.find(d).filter(function(){return 0===c(this).find("table").length&&
  4875. 1===c(this).parents("table").length})}function O(b){var d=[];c(b).find("thead").first().find("th").each(function(b,a){void 0!==c(a).attr("data-field")?d[b]=c(a).attr("data-field"):d[b]=b.toString()});return d}function P(b){var d="undefined"!==typeof b[0].cellIndex,a="undefined"!==typeof b[0].rowIndex,p=d||a?Aa(b):b.is(":visible"),g=b.data("tableexport-display");d&&"none"!=g&&"always"!=g&&(b=c(b[0].parentNode),a="undefined"!==typeof b[0].rowIndex,g=b.data("tableexport-display"));a&&"none"!=g&&"always"!=
  4876. g&&(g=b.closest("table").data("tableexport-display"));return"none"!==g&&(1==p||"always"==g)}function Aa(b){var d=[];T&&(d=K.filter(function(){var d=!1;this.nodeType==b[0].nodeType&&("undefined"!==typeof this.rowIndex&&this.rowIndex==b[0].rowIndex?d=!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&&(d=!0));return d}));return 0==T||0==
  4877. d.length}function Ba(b,d,f){var p=!1;P(b)?0<a.ignoreColumn.length&&(-1!=c.inArray(f,a.ignoreColumn)||-1!=c.inArray(f-d,a.ignoreColumn)||Q.length>f&&"undefined"!=typeof Q[f]&&-1!=c.inArray(Q[f],a.ignoreColumn))&&(p=!0):p=!0;return p}function B(b,d,f,p,g){if("function"===typeof g){var l=!1;"function"===typeof a.onIgnoreRow&&(l=a.onIgnoreRow(c(b),f));if(!1===l&&-1==c.inArray(f,a.ignoreRow)&&-1==c.inArray(f-p,a.ignoreRow)&&P(c(b))){var x=c(b).find(d),r=0;x.each(function(b){var d=c(this),a,l=R(this),p=
  4878. S(this);c.each(G,function(){if(f>=this.s.r&&f<=this.e.r&&r>=this.s.c&&r<=this.e.c)for(a=0;a<=this.e.c-this.s.c;++a)g(null,f,r++)});if(!1===Ba(d,x.length,b)){if(p||l)l=l||1,G.push({s:{r:f,c:r},e:{r:f+(p||1)-1,c:r+l-1}});g(this,f,r++)}if(l)for(a=0;a<l-1;++a)g(null,f,r++)});c.each(G,function(){if(f>=this.s.r&&f<=this.e.r&&r>=this.s.c&&r<=this.e.c)for(aa=0;aa<=this.e.c-this.s.c;++aa)g(null,f,r++)})}}}function na(b,d){!0===a.consoleLog&&console.log(b.output());if("string"===a.outputMode)return b.output();
  4879. if("base64"===a.outputMode)return L(b.output());if("window"===a.outputMode)window.URL=window.URL||window.webkitURL,window.open(window.URL.createObjectURL(b.output("blob")));else try{var f=b.output("blob");saveAs(f,a.fileName+".pdf")}catch(p){H(a.fileName+".pdf","data:application/pdf"+(d?"":";base64")+",",d?b.output("blob"):b.output())}}function oa(b,d,a){var f=0;"undefined"!==typeof a&&(f=a.colspan);if(0<=f){for(var g=b.width,c=b.textPos.x,x=d.table.columns.indexOf(d.column),r=1;r<f;r++)g+=d.table.columns[x+
  4880. r].width;1<f&&("right"===b.styles.halign?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 a&&1<a.rowspan&&(b.height*=a.rowspan);if("middle"===b.styles.valign||"bottom"===b.styles.valign)a=("string"===typeof b.text?b.text.split(/\r\n|\r|\n/g):b.text).length||1,2<a&&(b.textPos.y-=(2-1.15)/2*d.row.styles.fontSize*(a-2)/3);return!0}return!1}function pa(b,d,a){"undefined"!=typeof a.images&&d.each(function(){var d=c(this).children();
  4881. if(c(this).is("img")){var g=qa(this.src);a.images[g]={url:this.src,src:this.src}}"undefined"!=typeof d&&0<d.length&&pa(b,d,a)})}function Ca(b,d){function a(b){if(b.url){var a=new Image;g=++l;a.crossOrigin="Anonymous";a.onerror=a.onload=function(){if(a.complete&&(0===a.src.indexOf("data:image/")&&(a.width=b.width||a.width||0,a.height=b.height||a.height||0),a.width+a.height)){var c=document.createElement("canvas"),f=c.getContext("2d");c.width=a.width;c.height=a.height;f.drawImage(a,0,0);b.src=c.toDataURL("image/jpeg")}--l||
  4882. d(g)};a.src=b.url}}var c,g=0,l=0;if("undefined"!=typeof b.images)for(c in b.images)b.images.hasOwnProperty(c)&&a(b.images[c]);(b=l)||(d(g),b=void 0);return b}function ra(b,d,f){d.each(function(){var d=c(this).children(),g=0;if(c(this).is("div")){var l=ba(M(this,"background-color"),[255,255,255]),x=ba(M(this,"border-top-color"),[0,0,0]),r=ca(this,"border-top-width",a.jspdf.unit),e=this.getBoundingClientRect(),h=this.offsetLeft*f.dw;g=this.offsetTop*f.dh;var k=e.width*f.dw;e=e.height*f.dh;f.doc.setDrawColor.apply(void 0,
  4883. x);f.doc.setFillColor.apply(void 0,l);f.doc.setLineWidth(r);f.doc.rect(b.x+h,b.y+g,k,e,r?"FD":"F")}else if(c(this).is("img")&&"undefined"!=typeof f.images&&(l=qa(this.src),l=f.images[l],"undefined"!=typeof l)){x=b.width/b.height;r=this.width/this.height;h=b.width;k=b.height;e=19.049976/25.4;r<=x?(k=Math.min(b.height,this.height),h=this.width*k/this.height):r>x&&(h=Math.min(b.width,this.width),k=this.height*h/this.width);h*=e;k*=e;k<b.height&&(g=(b.height-k)/2);try{f.doc.addImage(l.src,b.textPos.x,
  4884. b.y+g,h,k)}catch(Ga){}b.textPos.x+=h}"undefined"!=typeof d&&0<d.length&&ra(b,d,f)})}function sa(b,a,f){if("function"===typeof f.onAutotableText)f.onAutotableText(f.doc,b,a);else{var d=b.textPos.x,g=b.textPos.y,l={halign:b.styles.halign,valign:b.styles.valign};if(a.length){for(a=a[0];a.previousSibling;)a=a.previousSibling;for(var x=!1,r=!1;a;){var e=a.innerText||a.textContent||"";e=(e.length&&" "==e[0]?" ":"")+c.trim(e)+(1<e.length&&" "==e[e.length-1]?" ":"");c(a).is("br")&&(d=b.textPos.x,g+=f.doc.internal.getFontSize());
  4885. c(a).is("b")?x=!0:c(a).is("i")&&(r=!0);(x||r)&&f.doc.setFontType(x&&r?"bolditalic":x?"bold":"italic");var h=f.doc.getStringUnitWidth(e)*f.doc.internal.getFontSize();if(h){if("linebreak"===b.styles.overflow&&d>b.textPos.x&&d+h>b.textPos.x+b.width){if(0<=".,!%*;:=-".indexOf(e.charAt(0))){var k=e.charAt(0);h=f.doc.getStringUnitWidth(k)*f.doc.internal.getFontSize();d+h<=b.textPos.x+b.width&&(f.doc.autoTableText(k,d,g,l),e=e.substring(1,e.length));h=f.doc.getStringUnitWidth(e)*f.doc.internal.getFontSize()}d=
  4886. b.textPos.x;g+=f.doc.internal.getFontSize()}for(;e.length&&d+h>b.textPos.x+b.width;)e=e.substring(0,e.length-1),h=f.doc.getStringUnitWidth(e)*f.doc.internal.getFontSize();f.doc.autoTableText(e,d,g,l);d+=h}if(x||r)c(a).is("b")?x=!1:c(a).is("i")&&(r=!1),f.doc.setFontType(x||r?x?"bold":"italic":"normal");a=a.nextSibling}b.textPos.x=d;b.textPos.y=g}else f.doc.autoTableText(b.text,b.textPos.x,b.textPos.y,l)}}function da(b,a,c){return b.replace(new RegExp(a.replace(/([.*+?^=!:${}()|\[\]\/\\])/g,"\\$1"),
  4887. "g"),c)}function ha(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 Da(b){-1<b.indexOf("%")?(b=ha(b.replace(/%/g,"")),!1!==b&&(b/=100)):b=!1;return b}function z(b,d,f){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,f,l);else if(""!=l){var e=
  4888. c.parseHTML(l),h=0,k=0;l="";c.each(e,function(){if(c(this).is("input"))l+=g.find("input").eq(h++).val();else if(c(this).is("select"))l+=g.find("select option:selected").eq(k++).text();else if("undefined"===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 n=l.replace(/\n/g,
  4889. "\u2028").replace(/<br\s*[\/]?>/gi,"\u2060"),m=c("<div/>").html(n).contents();e=!1;n="";c.each(m.text().split("\u2028"),function(b,a){0<b&&(n+=" ");n+=c.trim(a)});c.each(n.split("\u2060"),function(b,a){0<b&&(p+="\n");p+=c.trim(a).replace(/\u00AD/g,"")});if("json"==a.type||"excel"===a.type&&"xmlss"===a.excelFileFormat||!1===a.numbers.output)e=ha(p),!1!==e&&(p=Number(e));else if(a.numbers.html.decimalMark!=a.numbers.output.decimalMark||a.numbers.html.thousandsSeparator!=a.numbers.output.thousandsSeparator)if(e=
  4890. ha(p),!1!==e){m=(""+e.substr(0>e?1:0)).split(".");1==m.length&&(m[1]="");var q=3<m[0].length?m[0].length%3:0;p=(0>e?"-":"")+(a.numbers.output.thousandsSeparator?(q?m[0].substr(0,q)+a.numbers.output.thousandsSeparator:"")+m[0].substr(q).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,f,p))}return p}function Ea(b,a,c){return a+"-"+c.toLowerCase()}
  4891. 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 ta(b){var a=M(b,"text-align"),c=M(b,"font-weight"),p=M(b,"font-style"),g="";"start"==a&&(a="rtl"==M(b,"direction")?"right":"left");700<=c&&(g="bold");"italic"==p&&(g+=p);""===g&&(g="normal");a={style:{align:a,bcolor:ba(M(b,"background-color"),[255,255,255]),color:ba(M(b,"color"),[0,0,0]),fstyle:g},colspan:R(b),rowspan:S(b)};null!==b&&(b=b.getBoundingClientRect(),
  4892. a.rect={width:b.width,height:b.height});return a}function R(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 S(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 M(b,a){try{return window.getComputedStyle?(a=a.replace(/([a-z])([A-Z])/,Ea),window.getComputedStyle(b,null).getPropertyValue(a)):b.currentStyle?b.currentStyle[a]:
  4893. b.style[a]}catch(f){}return""}function ca(b,a,c){a=M(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+c;c=100/d.offsetWidth;b.removeChild(d);return a*c}return 0}function ia(){if(!(this instanceof ia))return new ia;this.SheetNames=[];this.Sheets={}}function ua(a){for(var b=new ArrayBuffer(a.length),c=new Uint8Array(b),e=0;e!=a.length;++e)c[e]=a.charCodeAt(e)&255;return b}
  4894. function Fa(a){for(var b={},c={s:{c:1E7,r:1E7},e:{c:0,r:0}},e=0;e!=a.length;++e)for(var g=0;g!=a[e].length;++g){c.s.r>e&&(c.s.r=e);c.s.c>g&&(c.s.c=g);c.e.r<e&&(c.e.r=e);c.e.c<g&&(c.e.c=g);var l={v:a[e][g]};if(null!==l.v){var h=XLSX.utils.encode_cell({c:g,r:e});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 r=l;var k=(Date.parse(l.v)-new Date(Date.UTC(1899,11,30)))/864E5;r.v=k}else l.t="s";b[h]=l}}1E7>c.s.c&&
  4895. (b["!ref"]=XLSX.utils.encode_range(c));return b}function qa(a){var b=0,c;if(0===a.length)return b;var e=0;for(c=a.length;e<c;e++){var g=a.charCodeAt(e);b=(b<<5)-b+g;b|=0}return b}function H(a,c,f){var b=window.navigator.userAgent;if(!1!==a&&window.navigator.msSaveOrOpenBlob)window.navigator.msSaveOrOpenBlob(new Blob([f]),a);else if(!1!==a&&(0<b.indexOf("MSIE ")||b.match(/Trident.*rv\:11\./))){if(c=document.createElement("iframe")){document.body.appendChild(c);c.setAttribute("style","display:none");
  4896. c.contentDocument.open("txt/plain","replace");c.contentDocument.write(f);c.contentDocument.close();c.contentDocument.focus();switch(a.substr(a.lastIndexOf(".")+1)){case "doc":case "json":case "png":case "pdf":case "xls":case "xlsx":a+=".txt"}c.contentDocument.execCommand("SaveAs",!0,a);document.body.removeChild(c)}}else{var g=document.createElement("a");if(g){var d=null;g.style.display="none";!1!==a?g.download=a:g.target="_blank";"object"==typeof f?(window.URL=window.URL||window.webkitURL,d=window.URL.createObjectURL(f),
  4897. g.href=d):0<=c.toLowerCase().indexOf("base64,")?g.href=c+L(f):g.href=c+encodeURIComponent(f);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(){d&&window.URL.revokeObjectURL(d);document.body.removeChild(g)},100)}}}function L(a){var b,c="",e=0;if("string"===typeof a){a=a.replace(/\x0d\x0a/g,
  4898. "\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(;e<a.length;){var h=a.charCodeAt(e++);g=a.charCodeAt(e++);b=a.charCodeAt(e++);l=h>>2;h=(h&3)<<4|g>>4;var r=(g&15)<<2|b>>6;var k=b&63;isNaN(g)?r=k=64:isNaN(b)&&(k=64);c=c+"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(l)+
  4899. "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(h)+"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(r)+"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(k)}return c}var a={consoleLog:!1,csvEnclosure:'"',csvSeparator:",",csvUseBOM:!0,displayTableName:!1,escape:!1,excelFileFormat:"xlshtml",excelRTL:!1,excelstyles:[],exportHiddenCells:!1,fileName:"tableExport",htmlContent:!1,ignoreColumn:[],ignoreRow:[],jsonScope:"all",jspdf:{orientation:"p",
  4900. 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:"left",valign:"middle"},headerStyles:{fillColor:[52,73,94],textColor:255,fontStyle:"bold",halign:"center"},alternateRowStyles:{fillColor:245},tableExport:{doc:null,onAfterAutotable:null,onBeforeAutotable:null,onAutotableText:null,onTable:null,outputImages:!0}}},numbers:{html:{decimalMark:".",
  4901. thousandsSeparator:","},output:{decimalMark:".",thousandsSeparator:","}},onCellData:null,onCellHtmlData:null,onIgnoreRow:null,onMsoNumberFormat:null,outputMode:"file",pdfmake:{enabled:!1,docDefinition:{pageOrientation:"portrait",defaultStyle:{font:"Roboto"}},fonts:{}},tbodySelector:"tr",tfootSelector:"tr",theadSelector:"tr",tableName:"Table",type:"csv",worksheetName:""},v=this,ea=null,q=[],t=[],k=0,m="",Q=[],G=[],K=[],T=!1;c.extend(!0,a,h);Q=O(v);if("csv"==a.type||"tsv"==a.type||"txt"==a.type){var I=
  4902. "",W=0;G=[];k=0;var ja=function(b,d,f){b.each(function(){m="";B(this,d,k,f+b.length,function(b,c,d){var g=m,f="";if(null!==b)if(b=z(b,c,d),c=null===b||""===b?"":b.toString(),"tsv"==a.type)b instanceof Date&&b.toLocaleString(),f=da(c,"\t"," ");else if(b instanceof Date)f=a.csvEnclosure+b.toLocaleString()+a.csvEnclosure;else if(f=da(c,a.csvEnclosure,a.csvEnclosure+a.csvEnclosure),0<=f.indexOf(a.csvSeparator)||/[\r\n ]/g.test(f))f=a.csvEnclosure+f+a.csvEnclosure;m=g+(f+("tsv"==a.type?"\t":a.csvSeparator))});
  4903. m=c.trim(m).substring(0,m.length-1);0<m.length&&(0<I.length&&(I+="\n"),I+=m);k++});return b.length};W+=ja(c(v).find("thead").first().find(a.theadSelector),"th,td",W);C(c(v),"tbody").each(function(){W+=ja(D(c(this),a.tbodySelector),"td,th",W)});a.tfootSelector.length&&ja(c(v).find("tfoot").first().find(a.tfootSelector),"td,th",W);I+="\n";!0===a.consoleLog&&console.log(I);if("string"===a.outputMode)return I;if("base64"===a.outputMode)return L(I);if("window"===a.outputMode){H(!1,"data:text/"+("csv"==
  4904. a.type?"csv":"plain")+";charset=utf-8,",I);return}try{var A=new Blob([I],{type:"text/"+("csv"==a.type?"csv":"plain")+";charset=utf-8"});saveAs(A,a.fileName+"."+a.type,"csv"!=a.type||!1===a.csvUseBOM)}catch(b){H(a.fileName+"."+a.type,"data:text/"+("csv"==a.type?"csv":"plain")+";charset=utf-8,"+("csv"==a.type&&a.csvUseBOM?"\ufeff":""),I)}}else if("sql"==a.type){k=0;G=[];var w="INSERT INTO `"+a.tableName+"` (";q=c(v).find("thead").first().find(a.theadSelector);q.each(function(){B(this,"th,td",k,q.length,
  4905. function(a,c,f){w+="'"+z(a,c,f)+"',"});k++;w=c.trim(w).substring(0,w.length-1)});w+=") VALUES ";t=u(c(v));c(t).each(function(){m="";B(this,"td,th",k,q.length+t.length,function(a,c,f){m+="'"+z(a,c,f)+"',"});3<m.length&&(w+="("+m,w=c.trim(w).substring(0,w.length-1),w+="),");k++});w=c.trim(w).substring(0,w.length-1);w+=";";!0===a.consoleLog&&console.log(w);if("string"===a.outputMode)return w;if("base64"===a.outputMode)return L(w);try{A=new Blob([w],{type:"text/plain;charset=utf-8"}),saveAs(A,a.fileName+
  4906. ".sql")}catch(b){H(a.fileName+".sql","data:application/sql;charset=utf-8,",w)}}else if("json"==a.type){var U=[];G=[];q=c(v).find("thead").first().find(a.theadSelector);q.each(function(){var a=[];B(this,"th,td",k,q.length,function(b,c,e){a.push(z(b,c,e))});U.push(a)});var ka=[];t=u(c(v));c(t).each(function(){var a={},d=0;B(this,"td,th",k,q.length+t.length,function(b,c,g){U.length?a[U[U.length-1][d]]=z(b,c,g):a[d]=z(b,c,g);d++});!1===c.isEmptyObject(a)&&ka.push(a);k++});h="";h="head"==a.jsonScope?JSON.stringify(U):
  4907. "data"==a.jsonScope?JSON.stringify(ka):JSON.stringify({header:U,data:ka});!0===a.consoleLog&&console.log(h);if("string"===a.outputMode)return h;if("base64"===a.outputMode)return L(h);try{A=new Blob([h],{type:"application/json;charset=utf-8"}),saveAs(A,a.fileName+".json")}catch(b){H(a.fileName+".json","data:application/json;charset=utf-8;base64,",h)}}else if("xml"===a.type){k=0;G=[];var J='<?xml version="1.0" encoding="utf-8"?>';J+="<tabledata><fields>";q=c(v).find("thead").first().find(a.theadSelector);
  4908. q.each(function(){B(this,"th,td",k,q.length,function(a,c,f){J+="<field>"+z(a,c,f)+"</field>"});k++});J+="</fields><data>";var va=1;t=u(c(v));c(t).each(function(){var a=1;m="";B(this,"td,th",k,q.length+t.length,function(b,c,e){m+="<column-"+a+">"+z(b,c,e)+"</column-"+a+">";a++});0<m.length&&"<column-1></column-1>"!=m&&(J+='<row id="'+va+'">'+m+"</row>",va++);k++});J+="</data></tabledata>";!0===a.consoleLog&&console.log(J);if("string"===a.outputMode)return J;if("base64"===a.outputMode)return L(J);try{A=
  4909. new Blob([J],{type:"application/xml;charset=utf-8"}),saveAs(A,a.fileName+".xml")}catch(b){H(a.fileName+".xml","data:application/xml;charset=utf-8;base64,",J)}}else if("excel"===a.type&&"xmlss"===a.excelFileFormat){var la=[],F=[];c(v).filter(function(){return P(c(this))}).each(function(){function b(a,b,d){var g=[];c(a).each(function(){var b=0,f=0;m="";B(this,"td,th",k,d+a.length,function(a,d,l){if(null!==a){var e="";d=z(a,d,l);l="String";if(!1!==jQuery.isNumeric(d))l="Number";else{var h=Da(d);!1!==
  4910. h&&(d=h,l="Number",e+=' ss:StyleID="pct1"')}"Number"!==l&&(d=d.replace(/\n/g,"<br>"));h=R(a);a=S(a);c.each(g,function(){if(k>=this.s.r&&k<=this.e.r&&f>=this.s.c&&f<=this.e.c)for(var a=0;a<=this.e.c-this.s.c;++a)f++,b++});if(a||h)a=a||1,h=h||1,g.push({s:{r:k,c:f},e:{r:k+a-1,c:f+h-1}});1<h&&(e+=' ss:MergeAcross="'+(h-1)+'"',f+=h-1);1<a&&(e+=' ss:MergeDown="'+(a-1)+'" ss:StyleID="rsp1"');0<b&&(e+=' ss:Index="'+(f+1)+'"',b=0);m+="<Cell"+e+'><Data ss:Type="'+l+'">'+c("<div />").text(d).html()+"</Data></Cell>\r";
  4911. f++}});0<m.length&&(E+='<Row ss:AutoFitHeight="0">\r'+m+"</Row>\r");k++});return a.length}var d=c(this),f="";"string"===typeof a.worksheetName&&a.worksheetName.length?f=a.worksheetName+" "+(F.length+1):"undefined"!==typeof a.worksheetName[F.length]&&(f=a.worksheetName[F.length]);f.length||(f=d.find("caption").text()||"");f.length||(f="Table "+(F.length+1));f=c.trim(f.replace(/[\\\/[\]*:?'"]/g,"").substring(0,31));F.push(c("<div />").text(f).html());!1===a.exportHiddenCells&&(K=d.find("tr, th, td").filter(":hidden"),
  4912. T=0<K.length);k=0;Q=O(this);E="<Table>\r";f=0;f+=b(d.find("thead").first().find(a.theadSelector),"th,td",f);b(u(d),"td,th",f);E+="</Table>\r";la.push(E);!0===a.consoleLog&&console.log(E)});h={};for(var y={},n,N,V=0,aa=F.length;V<aa;V++)n=F[V],N=h[n],N=h[n]=null==N?1:N+1,2==N&&(F[y[n]]=F[y[n]].substring(0,29)+"-1"),1<h[n]?F[V]=F[V].substring(0,29)+"-"+h[n]:y[n]=V;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>'+
  4913. (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';
  4914. for(y=0;y<la.length;y++)h+='<Worksheet ss:Name="'+F[y]+'" ss:RightToLeft="'+(a.excelRTL?"1":"0")+'">\r'+la[y],h=a.excelRTL?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";!0===a.consoleLog&&console.log(h);if("string"===a.outputMode)return h;if("base64"===a.outputMode)return L(h);try{A=new Blob([h],{type:"application/xml;charset=utf-8"}),
  4915. saveAs(A,a.fileName+".xml")}catch(b){H(a.fileName+".xml","data:application/xml;charset=utf-8;base64,",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";n='xmlns:x="urn:schemas-microsoft-com:office:'+h+'"';var E="",X="";c(v).filter(function(){return P(c(this))}).each(function(){var b=c(this);""===X&&(X=a.worksheetName||b.find("caption").text()||"Table",X=c.trim(X.replace(/[\\\/[\]*:?'"]/g,"").substring(0,
  4916. 31)));!1===a.exportHiddenCells&&(K=b.find("tr, th, td").filter(":hidden"),T=0<K.length);k=0;G=[];Q=O(this);E+="<table><thead>";q=b.find("thead").first().find(a.theadSelector);q.each(function(){m="";B(this,"th,td",k,q.length,function(b,f,e){if(null!==b){var g="";m+="<th";for(var d in a.excelstyles)if(a.excelstyles.hasOwnProperty(d)){var h=c(b).css(a.excelstyles[d]);""!==h&&"0px none rgb(0, 0, 0)"!=h&&"rgba(0, 0, 0, 0)"!=h&&(g+=""===g?'style="':";",g+=a.excelstyles[d]+":"+h)}""!==g&&(m+=" "+g+'"');
  4917. g=R(b);0<g&&(m+=' colspan="'+g+'"');g=S(b);0<g&&(m+=' rowspan="'+g+'"');m+=">"+z(b,f,e)+"</th>"}});0<m.length&&(E+="<tr>"+m+"</tr>");k++});E+="</thead><tbody>";t=u(b);c(t).each(function(){var b=c(this);m="";B(this,"td,th",k,q.length+t.length,function(d,e,g){if(null!==d){var f=z(d,e,g),h="",k=c(d).data("tableexport-msonumberformat");"undefined"==typeof k&&"function"===typeof a.onMsoNumberFormat&&(k=a.onMsoNumberFormat(d,e,g));"undefined"!=typeof k&&""!==k&&(h="style=\"mso-number-format:'"+k+"'");for(var p in a.excelstyles)a.excelstyles.hasOwnProperty(p)&&
  4918. (k=c(d).css(a.excelstyles[p]),""===k&&(k=b.css(a.excelstyles[p])),""!==k&&"0px none rgb(0, 0, 0)"!=k&&"rgba(0, 0, 0, 0)"!=k&&(h+=""===h?'style="':";",h+=a.excelstyles[p]+":"+k));m+="<td";""!==h&&(m+=" "+h+'"');e=R(d);0<e&&(m+=' colspan="'+e+'"');d=S(d);0<d&&(m+=' rowspan="'+d+'"');"string"===typeof f&&""!=f&&(f=f.replace(/\n/g,"<br>"));m+=">"+f+"</td>"}});0<m.length&&(E+="<tr>"+m+"</tr>");k++});a.displayTableName&&(E+="<tr><td></td></tr><tr><td></td></tr><tr><td>"+z(c("<p>"+a.tableName+"</p>"))+"</td></tr>");
  4919. E+="</tbody></table>";!0===a.consoleLog&&console.log(E)});n='<html xmlns:o="urn:schemas-microsoft-com:office:office" '+n+' xmlns="http://www.w3.org/TR/REC-html40">'+('<meta http-equiv="content-type" content="application/vnd.ms-'+h+'; charset=UTF-8">')+"<head>";"excel"===h&&(n+="\x3c!--[if gte mso 9]>",n+="<xml>",n+="<x:ExcelWorkbook>",n+="<x:ExcelWorksheets>",n+="<x:ExcelWorksheet>",n+="<x:Name>",n+=X,n+="</x:Name>",n+="<x:WorksheetOptions>",n+="<x:DisplayGridlines/>",a.excelRTL&&(n+="<x:DisplayRightToLeft/>"),
  4920. n+="</x:WorksheetOptions>",n+="</x:ExcelWorksheet>",n+="</x:ExcelWorksheets>",n+="</x:ExcelWorkbook>",n+="</xml>",n+="<![endif]--\x3e");n+="<style>br {mso-data-placement:same-cell;}</style>";n+="</head>";n+="<body>";n+=E;n+="</body>";n+="</html>";!0===a.consoleLog&&console.log(n);if("string"===a.outputMode)return n;if("base64"===a.outputMode)return L(n);try{A=new Blob([n],{type:"application/vnd.ms-"+a.type}),saveAs(A,a.fileName+"."+y)}catch(b){H(a.fileName+"."+y,"data:application/vnd.ms-"+h+";base64,",
  4921. n)}}else if("xlsx"==a.type){var wa=[],ma=[];k=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",k,t.length,function(d,e,h){if("undefined"!==typeof d&&null!==d){h=z(d,e,h);e=R(d);d=S(d);c.each(ma,function(){if(k>=this.s.r&&k<=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)});if(d||e)e=e||1,ma.push({s:{r:k,c:b.length},e:{r:k+(d||1)-1,c:b.length+e-1}});"function"!==typeof a.onCellData&&
  4922. ""!==h&&h==+h&&(h=+h);b.push(""!==h?h:null);if(e)for(d=0;d<e-1;++d)b.push(null)}});wa.push(b);k++});h=new ia;y=Fa(wa);y["!merges"]=ma;h.SheetNames.push(a.worksheetName);h.Sheets[a.worksheetName]=y;h=XLSX.write(h,{bookType:a.type,bookSST:!1,type:"binary"});try{A=new Blob([ua(h)],{type:"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8"}),saveAs(A,a.fileName+"."+a.type)}catch(b){H(a.fileName+"."+a.type,"data:application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8,",
  4923. ua(h))}}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),h=new Uint8Array(e),g=0;g<c.length;g++)h[g]=c.charCodeAt(g);!0===a.consoleLog&&console.log(c);if("string"===a.outputMode)return c;if("base64"===a.outputMode)return L(b);if("window"===a.outputMode)window.open(b);else try{A=new Blob([e],{type:"image/png"}),saveAs(A,a.fileName+".png")}catch(l){H(a.fileName+".png","data:image/png,",A)}});else if("pdf"==a.type)if(!0===
  4924. a.pdfmake.enabled){h=[];var xa=[];k=0;G=[];y=function(a,d,e){var b=0;c(a).each(function(){var a=[];B(this,d,k,e,function(b,c,d){if("undefined"!==typeof b&&null!==b){var g=R(b),e=S(b);b=z(b,c,d)||" ";1<g||1<e?a.push({colSpan:g||1,rowSpan:e||1,text:b}):a.push(b)}else a.push(" ")});a.length&&xa.push(a);b<a.length&&(b=a.length);k++});return b};q=c(this).find("thead").first().find(a.theadSelector);n=y(q,"th,td",q.length);for(N=h.length;N<n;N++)h.push("*");t=u(c(this));y(t,"th,td",q.length+t.length);h=
  4925. {content:[{table:{headerRows:q.length,widths:h,body:xa}}]};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=new Blob([b],{type:"application/pdf"});saveAs(c,a.fileName+".pdf")}catch(f){H(a.fileName+".pdf","data:application/pdf;base64,",b)}})}else if(!1===a.jspdf.autotable){h=
  4926. {dim:{w:ca(c(v).first().get(0),"width","mm"),h:ca(c(v).first().get(0),"height","mm")},pagesplit:!1};var ya=new jsPDF(a.jspdf.orientation,a.jspdf.unit,a.jspdf.format);ya.addHTML(c(v).first(),a.jspdf.margins.left,a.jspdf.margins.top,h,function(){na(ya,!1)})}else{var e=a.jspdf.autotable.tableExport;if("string"===typeof a.jspdf.format&&"bestfit"===a.jspdf.format.toLowerCase()){var Y={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]},fa="",Z="",za=0;
  4927. c(v).each(function(){if(P(c(this))){var a=ca(c(this).get(0),"width","pt");if(a>za){a>Y.a0[0]&&(fa="a0",Z="l");for(var d in Y)Y.hasOwnProperty(d)&&Y[d][1]>a&&(fa=d,Z="l",Y[d][0]>a&&(Z="p"));za=a}}});a.jspdf.format=""===fa?"a4":fa;a.jspdf.orientation=""===Z?"w":Z}if(null==e.doc&&(e.doc=new jsPDF(a.jspdf.orientation,a.jspdf.unit,a.jspdf.format),"function"===typeof a.jspdf.onDocCreated))a.jspdf.onDocCreated(e.doc);!0===e.outputImages&&(e.images={});"undefined"!=typeof e.images&&(c(v).filter(function(){return P(c(this))}).each(function(){var b=
  4928. 0;G=[];!1===a.exportHiddenCells&&(K=c(this).find("tr, th, td").filter(":hidden"),T=0<K.length);q=c(this).find("thead").find(a.theadSelector);t=u(c(this));c(t).each(function(){B(this,"td,th",q.length+b,q.length+t.length,function(a){if("undefined"!==typeof a&&null!==a){var b=c(a).children();"undefined"!=typeof b&&0<b.length&&pa(a,b,e)}});b++})}),q=[],t=[]);Ca(e,function(){c(v).filter(function(){return P(c(this))}).each(function(){var b;k=0;G=[];!1===a.exportHiddenCells&&(K=c(this).find("tr, th, td").filter(":hidden"),
  4929. T=0<K.length);Q=O(this);e.columns=[];e.rows=[];e.rowoptions={};if("function"===typeof e.onTable&&!1===e.onTable(c(this),a))return!0;a.jspdf.autotable.tableExport=null;var d=c.extend(!0,{},a.jspdf.autotable);a.jspdf.autotable.tableExport=e;d.margin={};c.extend(!0,d.margin,a.jspdf.margins);d.tableExport=e;"function"!==typeof d.beforePageContent&&(d.beforePageContent=function(a){if(1==a.pageCount){var b=a.table.rows.concat(a.table.headerRow);c.each(b,function(){0<this.height&&(this.height+=(2-1.15)/
  4930. 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 e.columns[b.column.dataKey]){var g=e.columns[b.column.dataKey];if("undefined"!=typeof g.rect){a.contentWidth=g.rect.width;if("undefined"==typeof e.heightRatio||0===e.heightRatio){var f=b.row.raw[b.column.dataKey].rowspan?b.row.raw[b.column.dataKey].rect.height/b.row.raw[b.column.dataKey].rowspan:
  4931. b.row.raw[b.column.dataKey].rect.height;e.heightRatio=a.styles.rowHeight/f}f=b.row.raw[b.column.dataKey].rect.height*e.heightRatio;f>a.styles.rowHeight&&(a.styles.rowHeight=f)}"undefined"!=typeof g.style&&!0!==g.style.hidden&&(a.styles.halign=g.style.align,"inherit"===d.styles.fillColor&&(a.styles.fillColor=g.style.bcolor),"inherit"===d.styles.textColor&&(a.styles.textColor=g.style.color),"inherit"===d.styles.fontStyle&&(a.styles.fontStyle=g.style.fstyle))}});"function"!==typeof d.createdCell&&(d.createdCell=
  4932. function(a,b){b=e.rowoptions[b.row.index+":"+b.column.dataKey];"undefined"!=typeof b&&"undefined"!=typeof b.style&&!0!==b.style.hidden&&(a.styles.halign=b.style.align,"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=e.columns[b.column.dataKey];return(!0!==c.style.hasOwnProperty("hidden")||
  4933. !0!==c.style.hidden)&&0<=c.rowIndex?oa(a,b,c):!1});"function"!==typeof d.drawCell&&(d.drawCell=function(a,b){var c=e.rowoptions[b.row.index+":"+b.column.dataKey];if(oa(a,b,c))if(e.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>e.dh||"undefined"==typeof e.dh)e.dh=b;e.dw=a.width/c.rect.width;b=a.textPos.y;ra(a,c.kids,e);a.textPos.y=b;sa(a,c.kids,e)}else sa(a,{},e);return!1});e.headerrows=[];q=c(this).find("thead").find(a.theadSelector);
  4934. q.each(function(){b=0;e.headerrows[k]=[];B(this,"th,td",k,q.length,function(a,c,d){var g=ta(a);g.title=z(a,c,d);g.key=b++;g.rowIndex=k;e.headerrows[k].push(g)});k++});if(0<k)for(var f=k-1;0<=f;)c.each(e.headerrows[f],function(){var a=this;0<f&&null===this.rect&&(a=e.headerrows[f-1][this.key]);null!==a&&0<=a.rowIndex&&(!0!==a.style.hasOwnProperty("hidden")||!0!==a.style.hidden)&&e.columns.push(a)}),f=0<e.columns.length?-1:f-1;var h=0;t=[];t=u(c(this));c(t).each(function(){var a=[];b=0;B(this,"td,th",
  4935. k,q.length+t.length,function(d,f,g){if("undefined"===typeof e.columns[b]){var k={title:"",key:b,style:{hidden:!0}};e.columns.push(k)}"undefined"!==typeof d&&null!==d?(k=ta(d),k.kids=c(d).children()):(k=c.extend(!0,{},e.rowoptions[h+":"+(b-1)]),k.colspan=-1);e.rowoptions[h+":"+b++]=k;a.push(z(d,f,g))});a.length&&(e.rows.push(a),h++);k++});if("function"===typeof e.onBeforeAutotable)e.onBeforeAutotable(c(this),e.columns,e.rows,d);e.doc.autoTable(e.columns,e.rows,d);if("function"===typeof e.onAfterAutotable)e.onAfterAutotable(c(this),
  4936. d);a.jspdf.autotable.startY=e.doc.autoTableEndPosY()+d.margin.top});na(e.doc,"undefined"!=typeof e.images&&!1===jQuery.isEmptyObject(e.images));"undefined"!=typeof e.headerrows&&(e.headerrows.length=0);"undefined"!=typeof e.columns&&(e.columns.length=0);"undefined"!=typeof e.rows&&(e.rows.length=0);delete e.doc;e.doc=null})}return this}})(jQuery);
  4937. define("tableexport", ["jquery"], (function (global) {
  4938. return function () {
  4939. var ret, fn;
  4940. return ret || global.$.fn.extend;
  4941. };
  4942. }(this)));
  4943. /*
  4944. * bootstrap-table - v1.11.1 - 2017-02-22
  4945. * https://github.com/wenzhixin/bootstrap-table
  4946. * Copyright (c) 2017 zhixin wen
  4947. * Licensed MIT License
  4948. */
  4949. !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);
  4950. define("bootstrap-table-export", ["bootstrap-table","tableexport"], (function (global) {
  4951. return function () {
  4952. var ret, fn;
  4953. return ret || global.$.fn.bootstrapTable.defaults;
  4954. };
  4955. }(this)));
  4956. /**
  4957. * mOxie - multi-runtime File API & XMLHttpRequest L2 Polyfill
  4958. * v1.5.2
  4959. *
  4960. * Copyright 2013, Moxiecode Systems AB
  4961. * Released under GPL License.
  4962. *
  4963. * License: http://www.plupload.com/license
  4964. * Contributing: http://www.plupload.com/contributing
  4965. *
  4966. * Date: 2016-11-23
  4967. */
  4968. !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;
  4969. 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();
  4970. 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)
  4971. }),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)});
  4972. define("../libs/plupload/js/moxie.min", function(){});
  4973. /**
  4974. * Plupload - multi-runtime File Uploader
  4975. * v2.2.1
  4976. *
  4977. * Copyright 2013, Moxiecode Systems AB
  4978. * Released under GPL License.
  4979. *
  4980. * License: http://www.plupload.com/license
  4981. * Contributing: http://www.plupload.com/contributing
  4982. *
  4983. * Date: 2016-11-23
  4984. */
  4985. !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)});
  4986. define('upload',['jquery', 'bootstrap', 'plupload', 'template'], function ($, undefined, Plupload, Template) {
  4987. var Upload = {
  4988. list: {},
  4989. config: {
  4990. container: document.body,
  4991. classname: '.plupload:not([initialized])',
  4992. previewtpl: '<li class="col-xs-3"><a href="<%=fullurl%>" data-url="<%=url%>" target="_blank" class="thumbnail"><img src="<%=fullurl%>" class="img-responsive"></a><a href="javascript:;" class="btn btn-danger btn-xs btn-trash"><i class="fa fa-trash"></i></a></li>',
  4993. },
  4994. events: {
  4995. //初始化完成
  4996. onPostInit: function (up) {
  4997. },
  4998. //文件添加成功后
  4999. onFileAdded: function (up, files) {
  5000. var button = up.settings.button;
  5001. $(button).data("bakup-html", $(button).html());
  5002. var maxcount = $(button).data("maxcount");
  5003. var input_id = $(button).data("input-id") ? $(button).data("input-id") : "";
  5004. maxcount = typeof maxcount !== "undefined" ? maxcount : 0;
  5005. if (maxcount > 0 && input_id) {
  5006. var inputObj = $("#" + input_id);
  5007. if (inputObj.size() > 0) {
  5008. var value = $.trim(inputObj.val());
  5009. var nums = value === '' ? 0 : value.split(/\,/).length;
  5010. var remains = maxcount - nums;
  5011. if (files.length > remains) {
  5012. for (var i = 0; i < files.length; i++) {
  5013. up.removeFile(files[i]);
  5014. }
  5015. Toastr.error(__('You can upload up to %d file%s', remains));
  5016. return false;
  5017. }
  5018. }
  5019. }
  5020. //添加后立即上传
  5021. setTimeout(function () {
  5022. up.start();
  5023. }, 1);
  5024. },
  5025. //上传进行中的回调
  5026. onUploadProgress: function (up, file) {
  5027. },
  5028. //上传之前的回调
  5029. onBeforeUpload: function (up, file) {
  5030. },
  5031. //上传成功的回调
  5032. onUploadSuccess: function (up, ret) {
  5033. var button = up.settings.button;
  5034. var onUploadSuccess = up.settings.onUploadSuccess;
  5035. var data = typeof ret.data !== 'undefined' ? ret.data : null;
  5036. //上传成功后回调
  5037. if (button) {
  5038. //如果有文本框则填充
  5039. var input_id = $(button).data("input-id") ? $(button).data("input-id") : "";
  5040. if (input_id) {
  5041. var urlArr = [];
  5042. var inputObj = $("#" + input_id);
  5043. if ($(button).data("multiple") && inputObj.val() !== "") {
  5044. urlArr.push(inputObj.val());
  5045. }
  5046. urlArr.push(data.url);
  5047. inputObj.val(urlArr.join(",")).trigger("change");
  5048. }
  5049. //如果有回调函数
  5050. var onDomUploadSuccess = $(button).data("upload-success");
  5051. if (onDomUploadSuccess) {
  5052. if (typeof onDomUploadSuccess !== 'function' && typeof Upload.api.custom[onDomUploadSuccess] === 'function') {
  5053. onDomUploadSuccess = Upload.api.custom[onDomUploadSuccess];
  5054. }
  5055. if (typeof onDomUploadSuccess === 'function') {
  5056. var result = onDomUploadSuccess.call(button, data, ret);
  5057. if (result === false)
  5058. return;
  5059. }
  5060. }
  5061. }
  5062. if (typeof onUploadSuccess === 'function') {
  5063. var result = onUploadSuccess.call(button, data, ret);
  5064. if (result === false)
  5065. return;
  5066. }
  5067. },
  5068. //上传错误的回调
  5069. onUploadError: function (up, ret) {
  5070. var button = up.settings.button;
  5071. var onUploadError = up.settings.onUploadError;
  5072. var data = typeof ret.data !== 'undefined' ? ret.data : null;
  5073. if (button) {
  5074. var onDomUploadError = $(button).data("upload-error");
  5075. if (onDomUploadError) {
  5076. if (typeof onDomUploadError !== 'function' && typeof Upload.api.custom[onDomUploadError] === 'function') {
  5077. onDomUploadError = Upload.api.custom[onDomUploadError];
  5078. }
  5079. if (typeof onDomUploadError === 'function') {
  5080. var result = onDomUploadError.call(button, data, ret);
  5081. if (result === false)
  5082. return;
  5083. }
  5084. }
  5085. }
  5086. if (typeof onUploadError === 'function') {
  5087. var result = onUploadError.call(button, data, ret);
  5088. if (result === false) {
  5089. return;
  5090. }
  5091. }
  5092. Toastr.error(ret.msg + "(code:" + ret.code + ")");
  5093. },
  5094. //服务器响应数据后
  5095. onUploadResponse: function (response) {
  5096. try {
  5097. var ret = typeof response === 'object' ? response : JSON.parse(response);
  5098. if (!ret.hasOwnProperty('code')) {
  5099. $.extend(ret, {code: -2, msg: response, data: null});
  5100. }
  5101. } catch (e) {
  5102. var ret = {code: -1, msg: e.message, data: null};
  5103. }
  5104. return ret;
  5105. },
  5106. //上传全部结束后
  5107. onUploadComplete: function (up, files) {
  5108. var button = up.settings.button;
  5109. var onUploadComplete = up.settings.onUploadComplete;
  5110. if (button) {
  5111. var onDomUploadComplete = $(button).data("upload-complete");
  5112. if (onDomUploadComplete) {
  5113. if (typeof onDomUploadComplete !== 'function' && typeof Upload.api.custom[onDomUploadComplete] === 'function') {
  5114. onDomUploadComplete = Upload.api.custom[onDomUploadComplete];
  5115. }
  5116. if (typeof onDomUploadComplete === 'function') {
  5117. var result = onDomUploadComplete.call(button, files);
  5118. if (result === false)
  5119. return;
  5120. }
  5121. }
  5122. }
  5123. if (typeof onUploadComplete === 'function') {
  5124. var result = onUploadComplete.call(button, files);
  5125. if (result === false) {
  5126. return;
  5127. }
  5128. }
  5129. }
  5130. },
  5131. api: {
  5132. //Plupload上传
  5133. plupload: function (element, onUploadSuccess, onUploadError, onUploadComplete) {
  5134. element = typeof element === 'undefined' ? Upload.config.classname : element;
  5135. $(element, Upload.config.container).each(function () {
  5136. if ($(this).attr("initialized")) {
  5137. return true;
  5138. }
  5139. $(this).attr("initialized", true);
  5140. var that = this;
  5141. var id = $(this).prop("id");
  5142. var url = $(this).data("url");
  5143. var maxsize = $(this).data("maxsize");
  5144. var mimetype = $(this).data("mimetype");
  5145. var multipart = $(this).data("multipart");
  5146. var multiple = $(this).data("multiple");
  5147. //填充ID
  5148. var input_id = $(that).data("input-id") ? $(that).data("input-id") : "";
  5149. //预览ID
  5150. var preview_id = $(that).data("preview-id") ? $(that).data("preview-id") : "";
  5151. //上传URL
  5152. url = url ? url : Config.upload.uploadurl;
  5153. url = Fast.api.fixurl(url);
  5154. //最大可上传文件大小
  5155. maxsize = typeof maxsize !== "undefined" ? maxsize : Config.upload.maxsize;
  5156. //文件类型
  5157. mimetype = typeof mimetype !== "undefined" ? mimetype : Config.upload.mimetype;
  5158. //请求的表单参数
  5159. multipart = typeof multipart !== "undefined" ? multipart : Config.upload.multipart;
  5160. //是否支持批量上传
  5161. multiple = typeof multiple !== "undefined" ? multiple : Config.upload.multiple;
  5162. var mimetypeArr = new Array();
  5163. //支持后缀和Mimetype格式,以,分隔
  5164. if (mimetype && mimetype !== "*" && mimetype.indexOf("/") === -1)
  5165. {
  5166. var tempArr = mimetype.split(',');
  5167. for (var i = 0; i < tempArr.length; i++)
  5168. {
  5169. mimetypeArr.push({title: __('Files'), extensions: tempArr[i]});
  5170. }
  5171. mimetype = mimetypeArr;
  5172. }
  5173. //生成Plupload实例
  5174. Upload.list[id] = new Plupload.Uploader({
  5175. runtimes: 'html5,flash,silverlight,html4',
  5176. multi_selection: multiple, //是否允许多选批量上传
  5177. browse_button: id, // 浏览按钮的ID
  5178. container: $(this).parent().get(0), //取按钮的上级元素
  5179. flash_swf_url: '/assets/libs/plupload/js/Moxie.swf',
  5180. silverlight_xap_url: '/assets/libs/plupload/js/Moxie.xap',
  5181. filters: {
  5182. max_file_size: maxsize,
  5183. mime_types: mimetype,
  5184. },
  5185. url: url,
  5186. multipart_params: $.isArray(multipart) ? {} : multipart,
  5187. init: {
  5188. PostInit: Upload.events.onPostInit,
  5189. FilesAdded: Upload.events.onFileAdded,
  5190. BeforeUpload: Upload.events.onBeforeUpload,
  5191. UploadProgress: function (up, file) {
  5192. var button = up.settings.button;
  5193. $(button).prop("disabled", true).html("<i class='fa fa-upload'></i> " + __('Upload') + file.percent + "%");
  5194. Upload.events.onUploadProgress(up, file);
  5195. },
  5196. FileUploaded: function (up, file, info) {
  5197. var button = up.settings.button;
  5198. //还原按钮文字及状态
  5199. $(button).prop("disabled", false).html($(button).data("bakup-html"));
  5200. var ret = Upload.events.onUploadResponse(info.response, info, up, file);
  5201. file.ret = ret;
  5202. if (ret.code === 1) {
  5203. Upload.events.onUploadSuccess(up, ret, file);
  5204. } else {
  5205. Upload.events.onUploadError(up, ret, file);
  5206. }
  5207. },
  5208. UploadComplete: Upload.events.onUploadComplete,
  5209. Error: function (up, err) {
  5210. var button = up.settings.button;
  5211. $(button).prop("disabled", false).html($(button).data("bakup-html"));
  5212. var ret = {code: err.code, msg: err.message, data: null};
  5213. Upload.events.onUploadError(up, ret);
  5214. }
  5215. },
  5216. onUploadSuccess: onUploadSuccess,
  5217. onUploadError: onUploadError,
  5218. onUploadComplete: onUploadComplete,
  5219. button: that
  5220. });
  5221. //拖动排序
  5222. if (preview_id && multiple) {
  5223. require(['dragsort'], function () {
  5224. $("#" + preview_id).dragsort({
  5225. dragSelector: "li",
  5226. dragEnd: function () {
  5227. $("#" + preview_id).trigger("fa.preview.change");
  5228. },
  5229. placeHolderTemplate: '<li class="col-xs-3"></li>'
  5230. });
  5231. });
  5232. }
  5233. if (preview_id && input_id) {
  5234. $(document.body).on("keyup change", "#" + input_id, function () {
  5235. var inputStr = $("#" + input_id).val();
  5236. var inputArr = inputStr.split(/\,/);
  5237. $("#" + preview_id).empty();
  5238. var tpl = $("#" + preview_id).data("template") ? $("#" + preview_id).data("template") : "";
  5239. $.each(inputArr, function (i, j) {
  5240. if (!j) {
  5241. return true;
  5242. }
  5243. var data = {url: j, fullurl: Fast.api.cdnurl(j), data: $(that).data()};
  5244. var html = tpl ? Template(tpl, data) : Template.render(Upload.config.previewtpl, data);
  5245. $("#" + preview_id).append(html);
  5246. });
  5247. });
  5248. $("#" + input_id).trigger("change");
  5249. }
  5250. if (preview_id) {
  5251. // 监听事件
  5252. $(document.body).on("fa.preview.change", "#" + preview_id, function () {
  5253. var urlArr = new Array();
  5254. $("#" + preview_id + " [data-url]").each(function (i, j) {
  5255. urlArr.push($(this).data("url"));
  5256. });
  5257. if (input_id) {
  5258. $("#" + input_id).val(urlArr.join(","));
  5259. }
  5260. });
  5261. // 移除按钮事件
  5262. $(document.body).on("click", "#" + preview_id + " .btn-trash", function () {
  5263. $(this).closest("li").remove();
  5264. $("#" + preview_id).trigger("fa.preview.change");
  5265. });
  5266. }
  5267. Upload.list[id].init();
  5268. });
  5269. },
  5270. // AJAX异步上传
  5271. send: function (file, onUploadSuccess, onUploadError, onUploadComplete) {
  5272. var index = Layer.msg(__('Uploading'), {offset: 't', time: 0});
  5273. var id = Plupload.guid();
  5274. var _onPostInit = Upload.events.onPostInit;
  5275. Upload.events.onPostInit = function () {
  5276. // 当加载完成后添加文件并上传
  5277. Upload.list[id].addFile(file);
  5278. //Upload.list[id].start();
  5279. };
  5280. $('<button type="button" id="' + id + '" class="btn btn-danger hidden plupload" />').appendTo("body");
  5281. $("#" + id).data("upload-complete", function (files) {
  5282. Upload.events.onPostInit = _onPostInit;
  5283. Layer.close(index);
  5284. });
  5285. Upload.api.plupload("#" + id, onUploadSuccess, onUploadError, onUploadComplete);
  5286. },
  5287. custom: {
  5288. //自定义上传完成回调
  5289. afteruploadcallback: function (response) {
  5290. console.log(this, response);
  5291. alert("Custom Callback,Response URL:" + response.url);
  5292. },
  5293. },
  5294. }
  5295. };
  5296. return Upload;
  5297. });
  5298. /*! nice-validator 1.1.3
  5299. * (c) 2012-2017 Jony Zhang <niceue@live.com>, MIT Licensed
  5300. * https://github.com/niceue/nice-validator
  5301. */
  5302. ;(function(factory) {
  5303. typeof module === "object" && module.exports ? module.exports = factory( require( "jquery" ) ) :
  5304. typeof define === 'function' && define.amd ? define('validator-core',['jquery'], factory) :
  5305. factory(jQuery);
  5306. }(function($, undefined) {
  5307. "use strict";
  5308. var NS = 'validator',
  5309. CLS_NS = '.' + NS,
  5310. CLS_NS_RULE = '.rule',
  5311. CLS_NS_FIELD = '.field',
  5312. CLS_NS_FORM = '.form',
  5313. CLS_WRAPPER = 'nice-' + NS,
  5314. CLS_MSG_BOX = 'msg-box',
  5315. ARIA_INVALID = 'aria-invalid',
  5316. DATA_RULE = 'data-rule',
  5317. DATA_MSG = 'data-msg',
  5318. DATA_TIP = 'data-tip',
  5319. DATA_OK = 'data-ok',
  5320. DATA_TIMELY = 'data-timely',
  5321. DATA_TARGET = 'data-target',
  5322. DATA_DISPLAY = 'data-display',
  5323. DATA_MUST = 'data-must',
  5324. NOVALIDATE = 'novalidate',
  5325. INPUT_SELECTOR = ':verifiable',
  5326. rRules = /(&)?(!)?\b(\w+)(?:\[\s*(.*?\]?)\s*\]|\(\s*(.*?\)?)\s*\))?\s*(;|\|)?/g,
  5327. rRule = /(\w+)(?:\[\s*(.*?\]?)\s*\]|\(\s*(.*?\)?)\s*\))?/,
  5328. rDisplay = /(?:([^:;\(\[]*):)?(.*)/,
  5329. rDoubleBytes = /[^\x00-\xff]/g,
  5330. rPos = /top|right|bottom|left/,
  5331. rAjaxType = /(?:(cors|jsonp):)?(?:(post|get):)?(.+)/i,
  5332. rUnsafe = /[<>'"`\\]|&#x?\d+[A-F]?;?|%3[A-F]/gmi,
  5333. noop = $.noop,
  5334. proxy = $.proxy,
  5335. trim = $.trim,
  5336. isFunction = $.isFunction,
  5337. isString = function(s) {
  5338. return typeof s === 'string';
  5339. },
  5340. isObject = function(o) {
  5341. return o && Object.prototype.toString.call(o) === '[object Object]';
  5342. },
  5343. isIE = document.documentMode || +(navigator.userAgent.match(/MSIE (\d+)/) && RegExp.$1),
  5344. attr = function(el, key, value) {
  5345. if (!el || !el.tagName) return null;
  5346. if (value !== undefined) {
  5347. if (value === null) el.removeAttribute(key);
  5348. else el.setAttribute(key, '' + value);
  5349. } else {
  5350. return el.getAttribute(key);
  5351. }
  5352. },
  5353. novalidateonce,
  5354. preinitialized = {},
  5355. defaults = {
  5356. debug: 0,
  5357. theme: 'default',
  5358. ignore: '',
  5359. focusInvalid: true,
  5360. focusCleanup: false,
  5361. stopOnError: false,
  5362. beforeSubmit: null,
  5363. valid: null,
  5364. invalid: null,
  5365. validation: null,
  5366. formClass: 'n-default',
  5367. validClass: 'n-valid',
  5368. invalidClass: 'n-invalid',
  5369. bindClassTo: null
  5370. },
  5371. fieldDefaults = {
  5372. timely: 1,
  5373. display: null,
  5374. target: null,
  5375. ignoreBlank: false,
  5376. showOk: true,
  5377. // Translate ajax response to validation result
  5378. dataFilter: function (data) {
  5379. if ( isString(data) || ( isObject(data) && ('error' in data || 'ok' in data) ) ) {
  5380. return data;
  5381. }
  5382. },
  5383. msgMaker: function(opt) {
  5384. var html;
  5385. html = '<span role="alert" class="msg-wrap n-'+ opt.type + '">' + opt.arrow;
  5386. if (opt.result) {
  5387. $.each(opt.result, function(i, obj){
  5388. html += '<span class="n-'+ obj.type +'">' + opt.icon + '<span class="n-msg">' + obj.msg + '</span></span>';
  5389. });
  5390. } else {
  5391. html += opt.icon + '<span class="n-msg">' + opt.msg + '</span>';
  5392. }
  5393. html += '</span>';
  5394. return html;
  5395. },
  5396. msgWrapper: 'span',
  5397. msgArrow: '',
  5398. msgIcon: '<span class="n-icon"></span>',
  5399. msgClass: 'n-right',
  5400. msgStyle: '',
  5401. msgShow: null,
  5402. msgHide: null
  5403. },
  5404. themes = {};
  5405. /** jQuery Plugin
  5406. * @param {Object} options
  5407. debug {Boolean} 0 Whether to enable debug mode
  5408. timely {Number} 1 Whether to enable timely validation
  5409. theme {String} 'default' Theme name
  5410. stopOnError {Boolean} false Whether to stop validate when found an error input
  5411. focusCleanup {Boolean} false Whether to clean up the field message when focus the field
  5412. focusInvalid {Boolean} true Whether to focus the field that is invalid
  5413. ignoreBlank {Boolean} false When the field has no value, whether to ignore validation
  5414. ignore {jqSelector} '' Ignored fields (Using jQuery selector)
  5415. beforeSubmit {Function} Do something before submit form
  5416. dataFilter {Function} Convert ajax results
  5417. valid {Function} Triggered when the form is valid
  5418. invalid {Function} Triggered when the form is invalid
  5419. validClass {String} 'n-valid' Add this class name to a valid field
  5420. invalidClass {String} 'n-invalid' Add this class name to a invalid field
  5421. bindClassTo {jqSelector} ':verifiable' Which element should the className binding to
  5422. display {Function} Callback function to get dynamic display
  5423. target {Function} Callback function to get dynamic target
  5424. msgShow {Function} Trigger this callback when show message
  5425. msgHide {Function} Trigger this callback when hide message
  5426. msgWrapper {String} 'span' Message wrapper tag name
  5427. msgMaker {Function} Callback function to make message HTML
  5428. msgArrow {String} Message arrow template
  5429. msgIcon {String} Message icon template
  5430. msgStyle {String} Custom message css style
  5431. msgClass {String} Additional added to the message class names
  5432. formClass {String} Additional added to the form class names
  5433. messages {Object} Custom messages for the current instance
  5434. rules {Object} Custom rules for the current instance
  5435. fields {Object} Field validation configuration
  5436. {String} key name|#id
  5437. {String|Object} value Rule string or an object which can pass more arguments
  5438. fields[key][rule] {String} Rule string
  5439. fields[key][display] {String|Function}
  5440. fields[key][tip] {String} Custom tip message
  5441. fields[key][ok] {String} Custom success message
  5442. fields[key][msg] {Object} Custom error message
  5443. fields[key][msgStyle] {String} Custom message style
  5444. fields[key][msgClass] {String} A className which added to message placeholder element
  5445. fields[key][msgWrapper] {String} Tag name of the message placeholder element
  5446. fields[key][msgMaker] {Function} A function to custom message HTML
  5447. fields[key][dataFilter] {Function} A function to convert ajax results
  5448. fields[key][valid] {Function} A function triggered when field is valid
  5449. fields[key][invalid] {Function} A function triggered when field is invalid
  5450. fields[key][must] {Boolean} If set true, we always check the field even has remote checking
  5451. fields[key][timely] {Boolean} Whether to enable timely validation
  5452. fields[key][target] {jqSelector} Define placement of a message
  5453. */
  5454. $.fn.validator = function(options) {
  5455. var that = this,
  5456. args = arguments;
  5457. if (that.is(INPUT_SELECTOR)) return that;
  5458. if (!that.is('form')) that = this.find('form');
  5459. if (!that.length) that = this;
  5460. that.each(function() {
  5461. var instance = $(this).data(NS);
  5462. if (instance) {
  5463. if ( isString(options) ) {
  5464. if ( options.charAt(0) === '_' ) return;
  5465. instance[options].apply(instance, [].slice.call(args, 1));
  5466. }
  5467. else if (options) {
  5468. instance._reset(true);
  5469. instance._init(this, options);
  5470. }
  5471. } else {
  5472. new Validator(this, options);
  5473. }
  5474. });
  5475. return this;
  5476. };
  5477. // Validate a field, or an area
  5478. $.fn.isValid = function(callback, hideMsg) {
  5479. var me = _getInstance(this[0]),
  5480. hasCallback = isFunction(callback),
  5481. ret, opt;
  5482. if (!me) return true;
  5483. if (!hasCallback && hideMsg === undefined) hideMsg = callback;
  5484. me.checkOnly = !!hideMsg;
  5485. opt = me.options;
  5486. ret = me._multiValidate(
  5487. this.is(INPUT_SELECTOR) ? this : this.find(INPUT_SELECTOR),
  5488. function(isValid){
  5489. if (!isValid && opt.focusInvalid && !me.checkOnly) {
  5490. // navigate to the error element
  5491. me.$el.find('[' + ARIA_INVALID + ']:first').focus();
  5492. }
  5493. if (hasCallback) {
  5494. if (callback.length) {
  5495. callback(isValid);
  5496. } else if (isValid) {
  5497. callback();
  5498. }
  5499. }
  5500. me.checkOnly = false;
  5501. }
  5502. );
  5503. // If you pass a callback, we maintain the jQuery object chain
  5504. return hasCallback ? this : ret;
  5505. };
  5506. $.extend($.expr.pseudos || $.expr[':'], {
  5507. // A faster selector than ":input:not(:submit,:button,:reset,:image,:disabled,[contenteditable])"
  5508. verifiable: function(elem) {
  5509. var name = elem.nodeName.toLowerCase();
  5510. return ( name === 'input' && !({submit: 1, button: 1, reset: 1, image: 1})[elem.type] ||
  5511. name === 'select' ||
  5512. name === 'textarea' ||
  5513. elem.contentEditable === 'true'
  5514. ) && !elem.disabled;
  5515. },
  5516. // any value, but not only whitespace
  5517. filled: function(elem) {
  5518. return !!trim($(elem).val());
  5519. }
  5520. });
  5521. /**
  5522. * Creates a new Validator
  5523. *
  5524. * @class
  5525. * @param {Element} element - form element
  5526. * @param {Object} options - options for validator
  5527. */
  5528. function Validator(element, options) {
  5529. var me = this;
  5530. if ( !(me instanceof Validator) ) {
  5531. return new Validator(element, options);
  5532. }
  5533. if (Validator.pending) {
  5534. $(window).on('validatorready', init);
  5535. } else {
  5536. init();
  5537. }
  5538. function init() {
  5539. me.$el = $(element);
  5540. if (me.$el.length) {
  5541. me._init(me.$el[0], options);
  5542. }
  5543. else if (isString(element)) {
  5544. preinitialized[element] = options;
  5545. }
  5546. }
  5547. }
  5548. Validator.prototype = {
  5549. _init: function(element, options) {
  5550. var me = this,
  5551. opt, themeOpt, dataOpt;
  5552. // Initialization options
  5553. if ( isFunction(options) ) {
  5554. options = {
  5555. valid: options
  5556. };
  5557. }
  5558. options = me._opt = options || {};
  5559. dataOpt = attr(element, 'data-'+ NS +'-option');
  5560. dataOpt = me._dataOpt = dataOpt && dataOpt.charAt(0) === '{' ? (new Function("return " + dataOpt))() : {};
  5561. themeOpt = me._themeOpt = themes[ options.theme || dataOpt.theme || defaults.theme ];
  5562. opt = me.options = $.extend({}, defaults, fieldDefaults, themeOpt, me.options, options, dataOpt);
  5563. me.rules = new Rules(opt.rules, true);
  5564. me.messages = new Messages(opt.messages, true);
  5565. me.Field = _createFieldFactory(me);
  5566. me.elements = me.elements || {};
  5567. me.deferred = {};
  5568. me.errors = {};
  5569. me.fields = {};
  5570. // Initialization fields
  5571. me._initFields(opt.fields);
  5572. // Initialization events and make a cache
  5573. if ( !me.$el.data(NS) ) {
  5574. me.$el.data(NS, me).addClass(CLS_WRAPPER +' '+ opt.formClass)
  5575. .on('form-submit-validate', function(e, a, $form, opts, veto) {
  5576. me.vetoed = veto.veto = !me.isValid;
  5577. me.ajaxFormOptions = opts;
  5578. })
  5579. .on('submit'+ CLS_NS +' validate'+ CLS_NS, proxy(me, '_submit'))
  5580. .on('reset'+ CLS_NS, proxy(me, '_reset'))
  5581. .on('showmsg'+ CLS_NS, proxy(me, '_showmsg'))
  5582. .on('hidemsg'+ CLS_NS, proxy(me, '_hidemsg'))
  5583. .on('focusin'+ CLS_NS + ' click'+ CLS_NS, INPUT_SELECTOR, proxy(me, '_focusin'))
  5584. .on('focusout'+ CLS_NS +' validate'+ CLS_NS, INPUT_SELECTOR, proxy(me, '_focusout'))
  5585. .on('keyup'+ CLS_NS +' input'+ CLS_NS + ' compositionstart compositionend', INPUT_SELECTOR, proxy(me, '_focusout'))
  5586. .on('click'+ CLS_NS, ':radio,:checkbox', 'click', proxy(me, '_focusout'))
  5587. .on('change'+ CLS_NS, 'select,input[type="file"]', 'change', proxy(me, '_focusout'));
  5588. // cache the novalidate attribute value
  5589. me._NOVALIDATE = attr(element, NOVALIDATE);
  5590. // Initialization is complete, stop off default HTML5 form validation
  5591. // If use "jQuery.attr('novalidate')" in IE7 will complain: "SCRIPT3: Member not found."
  5592. attr(element, NOVALIDATE, NOVALIDATE);
  5593. }
  5594. // Display all messages in target container
  5595. if ( isString(opt.target) ) {
  5596. me.$el.find(opt.target).addClass('msg-container');
  5597. }
  5598. },
  5599. // Guess whether the form use ajax submit
  5600. _guessAjax: function(form) {
  5601. var me = this;
  5602. if ( !(me.isAjaxSubmit = !!me.options.valid) ) {
  5603. // if there is a "valid.form" event
  5604. var events = ($._data || $.data)(form, "events");
  5605. me.isAjaxSubmit = issetEvent(events, 'valid', 'form') || issetEvent(events, 'submit', 'form-plugin');
  5606. }
  5607. function issetEvent(events, name, namespace) {
  5608. if ( events && events[name] &&
  5609. $.map(events[name], function(e){
  5610. return ~e.namespace.indexOf(namespace) ? 1 : null;
  5611. }).length
  5612. ) {
  5613. return true;
  5614. }
  5615. return false;
  5616. }
  5617. },
  5618. _initFields: function(fields) {
  5619. var me = this, k, arr, i,
  5620. clear = fields === null;
  5621. // Processing field information
  5622. if (clear) fields = me.fields;
  5623. if ( isObject(fields) ) {
  5624. for (k in fields) {
  5625. if (~k.indexOf(',')) {
  5626. arr = k.split(',');
  5627. i = arr.length;
  5628. while (i--) {
  5629. initField(trim(arr[i]), fields[k]);
  5630. }
  5631. } else {
  5632. initField(k, fields[k]);
  5633. }
  5634. }
  5635. }
  5636. // Parsing DOM rules
  5637. me.$el.find(INPUT_SELECTOR).each(function() {
  5638. me._parse(this);
  5639. });
  5640. function initField(k, v) {
  5641. // delete a field from settings
  5642. if ( v === null || clear ) {
  5643. var el = me.elements[k];
  5644. if (el) me._resetElement(el, true);
  5645. delete me.fields[k];
  5646. } else {
  5647. me.fields[k] = new me.Field(k, isString(v) ? {rule: v} : v, me.fields[k]);
  5648. }
  5649. }
  5650. },
  5651. // Parsing a field
  5652. _parse: function(el) {
  5653. var me = this,
  5654. field,
  5655. key = el.name,
  5656. display,
  5657. timely,
  5658. dataRule = attr(el, DATA_RULE);
  5659. dataRule && attr(el, DATA_RULE, null);
  5660. // If the field has passed the key as id mode, or it doesn't has a name
  5661. if ( el.id && (
  5662. ('#' + el.id in me.fields) ||
  5663. !key ||
  5664. // If dataRule and element are diffrent from old's, we use ID mode.
  5665. (dataRule !== null && (field = me.fields[key]) && dataRule !== field.rule && el.id !== field.key)
  5666. )
  5667. ) {
  5668. key = '#' + el.id;
  5669. }
  5670. // Generate id
  5671. if (!key) {
  5672. key = '#' + (el.id = 'N' + String(Math.random()).slice(-12));
  5673. }
  5674. field = me.getField(key, true);
  5675. // The priority of passing parameter by DOM is higher than by JS.
  5676. field.rule = dataRule || field.rule;
  5677. if (display = attr(el, DATA_DISPLAY)) {
  5678. field.display = display;
  5679. }
  5680. if (field.rule) {
  5681. if ( attr(el, DATA_MUST) !== null || /\b(?:match|checked)\b/.test(field.rule) ) {
  5682. field.must = true;
  5683. }
  5684. if ( /\brequired\b/.test(field.rule) ) {
  5685. field.required = true;
  5686. }
  5687. if (timely = attr(el, DATA_TIMELY)) {
  5688. field.timely = +timely;
  5689. } else if (field.timely > 3) {
  5690. attr(el, DATA_TIMELY, field.timely);
  5691. }
  5692. me._parseRule(field);
  5693. field.old = {};
  5694. }
  5695. if ( isString(field.target) ) {
  5696. attr(el, DATA_TARGET, field.target);
  5697. }
  5698. if ( isString(field.tip) ) {
  5699. attr(el, DATA_TIP, field.tip);
  5700. }
  5701. return me.fields[key] = field;
  5702. },
  5703. // Parsing field rules
  5704. _parseRule: function(field) {
  5705. var arr = rDisplay.exec(field.rule);
  5706. if (!arr) return;
  5707. // current rule index
  5708. field._i = 0;
  5709. if (arr[1]) {
  5710. field.display = arr[1];
  5711. }
  5712. if (arr[2]) {
  5713. field._rules = [];
  5714. arr[2].replace(rRules, function(){
  5715. var args = arguments;
  5716. args[4] = args[4] || args[5];
  5717. field._rules.push({
  5718. and: args[1] === "&",
  5719. not: args[2] === "!",
  5720. or: args[6] === "|",
  5721. method: args[3],
  5722. params: args[4] ? $.map( args[4].split(', '), trim ) : undefined
  5723. });
  5724. });
  5725. }
  5726. },
  5727. // Verify a zone
  5728. _multiValidate: function($inputs, doneCallback){
  5729. var me = this,
  5730. opt = me.options;
  5731. me.hasError = false;
  5732. if (opt.ignore) {
  5733. $inputs = $inputs.not(opt.ignore);
  5734. }
  5735. $inputs.each(function() {
  5736. me._validate(this);
  5737. if (me.hasError && opt.stopOnError) {
  5738. // stop the validation
  5739. return false;
  5740. }
  5741. });
  5742. // Need to wait for all fields validation complete, especially asynchronous validation
  5743. if (doneCallback) {
  5744. me.validating = true;
  5745. $.when.apply(
  5746. null,
  5747. $.map(me.deferred, function(v){return v;})
  5748. ).done(function(){
  5749. doneCallback.call(me, !me.hasError);
  5750. me.validating = false;
  5751. });
  5752. }
  5753. // If the form does not contain asynchronous validation, the return value is correct.
  5754. // Otherwise, you should detect form validation result through "doneCallback".
  5755. return !$.isEmptyObject(me.deferred) ? undefined : !me.hasError;
  5756. },
  5757. // Validate the whole form
  5758. _submit: function(e) {
  5759. var me = this,
  5760. opt = me.options,
  5761. form = e.target,
  5762. canSubmit = e.type === 'submit' && form.tagName === 'FORM' && !e.isDefaultPrevented();
  5763. e.preventDefault();
  5764. if (
  5765. novalidateonce && ~(novalidateonce = false) ||
  5766. // Prevent duplicate submission
  5767. me.submiting ||
  5768. // Receive the "validate" event only from the form.
  5769. e.type === 'validate' && me.$el[0] !== form ||
  5770. // trigger the beforeSubmit callback.
  5771. isFunction(opt.beforeSubmit) && opt.beforeSubmit.call(me, form) === false
  5772. ) {
  5773. return;
  5774. }
  5775. if (me.isAjaxSubmit === undefined) {
  5776. me._guessAjax(form);
  5777. }
  5778. me._debug('log', '\n<<< event: ' + e.type);
  5779. me._reset();
  5780. me.submiting = true;
  5781. me._multiValidate(
  5782. me.$el.find(INPUT_SELECTOR),
  5783. function(isValid){
  5784. var ret = (isValid || opt.debug === 2) ? 'valid' : 'invalid',
  5785. errors;
  5786. if (!isValid) {
  5787. if (opt.focusInvalid) {
  5788. // navigate to the error element
  5789. me.$el.find('[' + ARIA_INVALID + ']:first').focus();
  5790. }
  5791. errors = $.map(me.errors, function(err){return err;});
  5792. }
  5793. // releasing submit
  5794. me.submiting = false;
  5795. me.isValid = isValid;
  5796. // trigger callback and event
  5797. isFunction(opt[ret]) && opt[ret].call(me, form, errors);
  5798. me.$el.trigger(ret + CLS_NS_FORM, [form, errors]);
  5799. me._debug('log', '>>> ' + ret);
  5800. if (!isValid) return;
  5801. // For jquery.form plugin
  5802. if (me.vetoed) {
  5803. $(form).ajaxSubmit(me.ajaxFormOptions);
  5804. }
  5805. else if (canSubmit && !me.isAjaxSubmit) {
  5806. document.createElement('form').submit.call(form);
  5807. }
  5808. }
  5809. );
  5810. },
  5811. _reset: function(e) {
  5812. var me = this;
  5813. me.errors = {};
  5814. if (e) {
  5815. me.reseting = true;
  5816. me.$el.find(INPUT_SELECTOR).each( function(){
  5817. me._resetElement(this);
  5818. });
  5819. delete me.reseting;
  5820. }
  5821. },
  5822. _resetElement: function(el, all) {
  5823. this._setClass(el, null);
  5824. this.hideMsg(el);
  5825. },
  5826. // Handle events: "focusin/click"
  5827. _focusin: function(e) {
  5828. var me = this,
  5829. opt = me.options,
  5830. el = e.target,
  5831. timely,
  5832. msg;
  5833. if ( me.validating || ( e.type==='click' && document.activeElement === el ) ) {
  5834. return;
  5835. }
  5836. if (opt.focusCleanup) {
  5837. if ( attr(el, ARIA_INVALID) === 'true' ) {
  5838. me._setClass(el, null);
  5839. me.hideMsg(el);
  5840. }
  5841. }
  5842. msg = attr(el, DATA_TIP);
  5843. if (msg) {
  5844. me.showMsg(el, {
  5845. type: 'tip',
  5846. msg: msg
  5847. });
  5848. } else {
  5849. if (attr(el, DATA_RULE)) {
  5850. me._parse(el);
  5851. }
  5852. if (timely = attr(el, DATA_TIMELY)) {
  5853. if ( timely === 8 || timely === 9 ) {
  5854. me._focusout(e);
  5855. }
  5856. }
  5857. }
  5858. },
  5859. // Handle events: "focusout/validate/keyup/click/change/input/compositionstart/compositionend"
  5860. _focusout: function(e) {
  5861. var me = this,
  5862. opt = me.options,
  5863. el = e.target,
  5864. etype = e.type,
  5865. etype0,
  5866. focusin = etype === 'focusin',
  5867. special = etype === 'validate',
  5868. elem,
  5869. field,
  5870. old,
  5871. value,
  5872. timestamp,
  5873. key, specialKey,
  5874. timely,
  5875. timer = 0;
  5876. if (etype === 'compositionstart') {
  5877. me.pauseValidate = true;
  5878. }
  5879. if (etype === 'compositionend') {
  5880. me.pauseValidate = false;
  5881. }
  5882. if (me.pauseValidate) {
  5883. return;
  5884. }
  5885. // For checkbox and radio
  5886. elem = el.name && _checkable(el) ? me.$el.find('input[name="'+ el.name +'"]').get(0) : el;
  5887. // Get field
  5888. if (!(field = me.getField(elem)) || !field.rule) {
  5889. return;
  5890. }
  5891. // Cache event type
  5892. etype0 = field._e;
  5893. field._e = etype;
  5894. timely = field.timely;
  5895. if (!special) {
  5896. if (!timely || (_checkable(el) && etype !== 'click')) {
  5897. return;
  5898. }
  5899. value = field.getValue();
  5900. // not validate field unless fill a value
  5901. if ( field.ignoreBlank && !value && !focusin ) {
  5902. me.hideMsg(el);
  5903. return;
  5904. }
  5905. if ( etype === 'focusout' ) {
  5906. if (etype0 === 'change') {
  5907. return;
  5908. }
  5909. if ( timely === 2 || timely === 8 ) {
  5910. old = field.old;
  5911. if (value && old) {
  5912. if (field.isValid && !old.showOk) {
  5913. me.hideMsg(el);
  5914. } else {
  5915. me._makeMsg(el, field, old);
  5916. }
  5917. } else {
  5918. return;
  5919. }
  5920. }
  5921. }
  5922. else {
  5923. if ( timely < 2 && !e.data ) {
  5924. return;
  5925. }
  5926. // mark timestamp to reduce the frequency of the received event
  5927. timestamp = +new Date();
  5928. if ( timestamp - (el._ts || 0) < 100 ) {
  5929. return;
  5930. }
  5931. el._ts = timestamp;
  5932. // handle keyup
  5933. if ( etype === 'keyup' ) {
  5934. if (etype0 === 'input') {
  5935. return;
  5936. }
  5937. key = e.keyCode;
  5938. specialKey = {
  5939. 8: 1, // Backspace
  5940. 9: 1, // Tab
  5941. 16: 1, // Shift
  5942. 32: 1, // Space
  5943. 46: 1 // Delete
  5944. };
  5945. // only gets focus, no validation
  5946. if ( key === 9 && !value ) {
  5947. return;
  5948. }
  5949. // do not validate, if triggered by these keys
  5950. if ( key < 48 && !specialKey[key] ) {
  5951. return;
  5952. }
  5953. }
  5954. if ( !focusin ) {
  5955. // keyboard events, reducing the frequency of validation
  5956. timer = timely <100 ? (etype === 'click' || el.tagName === 'SELECT') ? 0 : 400 : timely;
  5957. }
  5958. }
  5959. }
  5960. // if the current field is ignored
  5961. if ( opt.ignore && $(el).is(opt.ignore) ) {
  5962. return;
  5963. }
  5964. clearTimeout(field._t);
  5965. if (timer) {
  5966. field._t = setTimeout(function() {
  5967. me._validate(el, field);
  5968. }, timer);
  5969. } else {
  5970. if (special) field.old = {};
  5971. me._validate(el, field);
  5972. }
  5973. },
  5974. _setClass: function(el, isValid) {
  5975. var $el = $(el), opt = this.options;
  5976. if (opt.bindClassTo) {
  5977. $el = $el.closest(opt.bindClassTo);
  5978. }
  5979. $el.removeClass( opt.invalidClass + ' ' + opt.validClass );
  5980. if (isValid !== null) {
  5981. $el.addClass( isValid ? opt.validClass : opt.invalidClass );
  5982. }
  5983. },
  5984. _showmsg: function(e, type, msg) {
  5985. var me = this,
  5986. el = e.target;
  5987. if ( me.$el.is(el) ) {
  5988. if (isObject(type)) {
  5989. me.showMsg(type)
  5990. }
  5991. else if ( type === 'tip' ) {
  5992. me.$el.find(INPUT_SELECTOR +"["+ DATA_TIP +"]", el).each(function(){
  5993. me.showMsg(this, {type: type, msg: msg});
  5994. });
  5995. }
  5996. }
  5997. else {
  5998. me.showMsg(el, {type: type, msg: msg});
  5999. }
  6000. },
  6001. _hidemsg: function(e) {
  6002. var $el = $(e.target);
  6003. if ( $el.is(INPUT_SELECTOR) ) {
  6004. this.hideMsg($el);
  6005. }
  6006. },
  6007. // Validated a field
  6008. _validatedField: function(el, field, ret) {
  6009. var me = this,
  6010. opt = me.options,
  6011. isValid = field.isValid = ret.isValid = !!ret.isValid,
  6012. callback = isValid ? 'valid' : 'invalid';
  6013. ret.key = field.key;
  6014. ret.ruleName = field._r;
  6015. ret.id = el.id;
  6016. ret.value = field.value;
  6017. me.elements[field.key] = ret.element = el;
  6018. me.isValid = me.$el[0].isValid = isValid ? me.isFormValid() : isValid;
  6019. if (isValid) {
  6020. ret.type = 'ok';
  6021. } else {
  6022. if (me.submiting) {
  6023. me.errors[field.key] = ret.msg;
  6024. }
  6025. me.hasError = true;
  6026. }
  6027. // cache result
  6028. field.old = ret;
  6029. // trigger callback
  6030. isFunction(field[callback]) && field[callback].call(me, el, ret);
  6031. isFunction(opt.validation) && opt.validation.call(me, el, ret);
  6032. // trigger event
  6033. $(el).attr( ARIA_INVALID, isValid ? null : true )
  6034. .trigger( callback + CLS_NS_FIELD, [ret, me] );
  6035. me.$el.triggerHandler('validation', [ret, me]);
  6036. if (me.checkOnly) return;
  6037. // set className
  6038. me._setClass(el, ret.skip || ret.type === 'tip' ? null : isValid);
  6039. me._makeMsg.apply(me, arguments);
  6040. },
  6041. _makeMsg: function(el, field, ret) {
  6042. // show or hide the message
  6043. if (field.msgMaker) {
  6044. ret = $.extend({}, ret);
  6045. if (field._e === 'focusin') {
  6046. ret.type = 'tip';
  6047. }
  6048. this[ ret.showOk || ret.msg || ret.type === 'tip' ? 'showMsg' : 'hideMsg' ](el, ret, field);
  6049. }
  6050. },
  6051. // Validated a rule
  6052. _validatedRule: function(el, field, ret, msgOpt) {
  6053. field = field || me.getField(el);
  6054. msgOpt = msgOpt || {};
  6055. var me = this,
  6056. msg,
  6057. rule,
  6058. method = field._r,
  6059. timely = field.timely,
  6060. special = timely === 9 || timely === 8,
  6061. transfer,
  6062. temp,
  6063. isValid = false;
  6064. // use null to break validation from a field
  6065. if (ret === null) {
  6066. me._validatedField(el, field, {isValid: true, skip: true});
  6067. field._i = 0;
  6068. return;
  6069. }
  6070. else if (ret === undefined) {
  6071. transfer = true;
  6072. }
  6073. else if (ret === true || ret === '') {
  6074. isValid = true;
  6075. }
  6076. else if (isString(ret)) {
  6077. msg = ret;
  6078. }
  6079. else if (isObject(ret)) {
  6080. if (ret.error) {
  6081. msg = ret.error;
  6082. } else {
  6083. msg = ret.ok;
  6084. isValid = true;
  6085. }
  6086. }
  6087. else {
  6088. isValid = !!ret
  6089. }
  6090. rule = field._rules[field._i];
  6091. if (rule.not) {
  6092. msg = undefined;
  6093. isValid = method === "required" || !isValid;
  6094. }
  6095. if (rule.or) {
  6096. if (isValid) {
  6097. while ( field._i < field._rules.length && field._rules[field._i].or ) {
  6098. field._i++;
  6099. }
  6100. } else {
  6101. transfer = true;
  6102. }
  6103. }
  6104. else if (rule.and) {
  6105. if (!field.isValid) transfer = true;
  6106. }
  6107. if (transfer) {
  6108. isValid = true;
  6109. }
  6110. // message analysis, and throw rule level event
  6111. else {
  6112. if (isValid) {
  6113. if (field.showOk !== false) {
  6114. temp = attr(el, DATA_OK);
  6115. msg = temp === null ? isString(field.ok) ? field.ok : msg : temp;
  6116. if (!isString(msg) && isString(field.showOk)) {
  6117. msg = field.showOk;
  6118. }
  6119. if (isString(msg)) {
  6120. msgOpt.showOk = isValid;
  6121. }
  6122. }
  6123. }
  6124. if (!isValid || special) {
  6125. /* rule message priority:
  6126. 1. custom DOM message
  6127. 2. custom field message;
  6128. 3. global defined message;
  6129. 4. rule returned message;
  6130. 5. default message;
  6131. */
  6132. msg = (_getDataMsg(el, field, msg || rule.msg || me.messages[method]) || me.messages.fallback).replace(/\{0\|?([^\}]*)\}/, function(m, defaultDisplay){
  6133. return me._getDisplay(el, field.display) || defaultDisplay || me.messages[0];
  6134. });
  6135. }
  6136. if (!isValid) field.isValid = isValid;
  6137. msgOpt.msg = msg;
  6138. $(el).trigger( (isValid ? 'valid' : 'invalid') + CLS_NS_RULE, [method, msg]);
  6139. }
  6140. if (special && (!transfer || rule.and)) {
  6141. if (!isValid && !field._m) field._m = msg;
  6142. field._v = field._v || [];
  6143. field._v.push({
  6144. type: isValid ? !transfer ? 'ok' : 'tip' : 'error',
  6145. msg: msg || rule.msg
  6146. });
  6147. }
  6148. me._debug('log', ' ' + field._i + ': ' + method + ' => ' + (isValid || msg));
  6149. // the current rule has passed, continue to validate
  6150. if ( (isValid || special) && field._i < field._rules.length - 1) {
  6151. field._i++;
  6152. me._checkRule(el, field);
  6153. }
  6154. // field was invalid, or all fields was valid
  6155. else {
  6156. field._i = 0;
  6157. if (special) {
  6158. msgOpt.isValid = field.isValid;
  6159. msgOpt.result = field._v;
  6160. msgOpt.msg = field._m || '';
  6161. if (!field.value && (field._e === 'focusin')) {
  6162. msgOpt.type = 'tip';
  6163. }
  6164. } else {
  6165. msgOpt.isValid = isValid;
  6166. }
  6167. me._validatedField(el, field, msgOpt);
  6168. delete field._m;
  6169. delete field._v;
  6170. }
  6171. },
  6172. // Verify a rule form a field
  6173. _checkRule: function(el, field) {
  6174. var me = this,
  6175. ret,
  6176. fn,
  6177. old,
  6178. key = field.key,
  6179. rule = field._rules[field._i],
  6180. method = rule.method,
  6181. params = rule.params;
  6182. // request has been sent, wait it
  6183. if (me.submiting && me.deferred[key]) {
  6184. return;
  6185. }
  6186. old = field.old;
  6187. field._r = method;
  6188. if (old && !field.must && !rule.must && rule.result !== undefined &&
  6189. old.ruleName === method && old.id === el.id &&
  6190. field.value && old.value === field.value )
  6191. {
  6192. // get result from cache
  6193. ret = rule.result;
  6194. }
  6195. else {
  6196. // get result from current rule
  6197. fn = _getDataRule(el, method) || me.rules[method] || noop;
  6198. ret = fn.call(field, el, params, field);
  6199. if (fn.msg) rule.msg = fn.msg;
  6200. }
  6201. // asynchronous validation
  6202. if (isObject(ret) && isFunction(ret.then)) {
  6203. me.deferred[key] = ret;
  6204. // whether the field valid is unknown
  6205. field.isValid = undefined;
  6206. // show loading message
  6207. !me.checkOnly && me.showMsg(el, {
  6208. type: 'loading',
  6209. msg: me.messages.loading
  6210. }, field);
  6211. // waiting to parse the response data
  6212. ret.then(
  6213. function(d, textStatus, jqXHR) {
  6214. var data = trim(jqXHR.responseText),
  6215. result,
  6216. dataFilter = field.dataFilter;
  6217. // detect if data is json or jsonp format
  6218. if (/jsonp?/.test(this.dataType)) {
  6219. data = d;
  6220. } else if (data.charAt(0) === '{') {
  6221. data = $.parseJSON(data);
  6222. }
  6223. // filter data
  6224. result = dataFilter.call(this, data, field);
  6225. if (result === undefined) result = dataFilter.call(this, data.data, field);
  6226. rule.data = this.data;
  6227. rule.result = field.old ? result : undefined;
  6228. me._validatedRule(el, field, result);
  6229. },
  6230. function(jqXHR, textStatus){
  6231. me._validatedRule(el, field, me.messages[textStatus] || textStatus);
  6232. }
  6233. ).always(function(){
  6234. delete me.deferred[key];
  6235. });
  6236. }
  6237. // other result
  6238. else {
  6239. me._validatedRule(el, field, ret);
  6240. }
  6241. },
  6242. // Processing the validation
  6243. _validate: function(el, field) {
  6244. var me = this;
  6245. // doesn't validate the element that has "disabled" or "novalidate" attribute
  6246. if ( el.disabled || attr(el, NOVALIDATE) !== null ) {
  6247. return;
  6248. }
  6249. field = field || me.getField(el);
  6250. if (!field) return;
  6251. if (!field._rules) me._parse(el);
  6252. if (!field._rules) return;
  6253. me._debug('info', field.key);
  6254. field.isValid = true;
  6255. field.element = el;
  6256. // Cache the value
  6257. field.value = field.getValue();
  6258. // if the field is not required, and that has a blank value
  6259. if (!field.required && !field.must && !field.value) {
  6260. if (!_checkable(el)) {
  6261. me._validatedField(el, field, {isValid: true});
  6262. return true;
  6263. }
  6264. }
  6265. me._checkRule(el, field);
  6266. return field.isValid;
  6267. },
  6268. _debug: function(type, messages) {
  6269. if (window.console && this.options.debug) {
  6270. console[type](messages);
  6271. }
  6272. },
  6273. /**
  6274. * Detecting whether the value of an element that matches a rule
  6275. *
  6276. * @method test
  6277. * @param {Element} el - input element
  6278. * @param {String} rule - rule name
  6279. */
  6280. test: function(el, rule) {
  6281. var me = this,
  6282. ret,
  6283. parts = rRule.exec(rule),
  6284. field,
  6285. method,
  6286. params;
  6287. if (parts) {
  6288. method = parts[1];
  6289. if (method in me.rules) {
  6290. params = parts[2] || parts[3];
  6291. params = params ? params.split(', ') : undefined;
  6292. field = me.getField(el, true);
  6293. field._r = method;
  6294. field.value = field.getValue();
  6295. ret = me.rules[method].call(field, el, params);
  6296. }
  6297. }
  6298. return ret === true || ret === undefined || ret === null;
  6299. },
  6300. _getDisplay: function(el, str) {
  6301. return !isString(str) ? isFunction(str) ? str.call(this, el) : '' : str;
  6302. },
  6303. _getMsgOpt: function(obj, field) {
  6304. var opt = field ? field : this.options;
  6305. return $.extend({
  6306. type: 'error',
  6307. pos: _getPos(opt.msgClass),
  6308. target: opt.target,
  6309. wrapper: opt.msgWrapper,
  6310. style: opt.msgStyle,
  6311. cls: opt.msgClass,
  6312. arrow: opt.msgArrow,
  6313. icon: opt.msgIcon
  6314. }, isString(obj) ? {msg: obj} : obj);
  6315. },
  6316. _getMsgDOM: function(el, msgOpt) {
  6317. var $el = $(el), $msgbox, datafor, tgt, container;
  6318. if ( $el.is(INPUT_SELECTOR) ) {
  6319. tgt = msgOpt.target || attr(el, DATA_TARGET);
  6320. if (tgt) {
  6321. tgt = !isFunction(tgt) ? tgt.charAt(0) === '#' ? $(tgt) : this.$el.find(tgt) : tgt.call(this, el);
  6322. if (tgt.length) {
  6323. if ( tgt.is(INPUT_SELECTOR) ) {
  6324. $el = tgt
  6325. el = tgt.get(0);
  6326. } else if ( tgt.hasClass(CLS_MSG_BOX) ) {
  6327. $msgbox = tgt;
  6328. } else {
  6329. container = tgt;
  6330. }
  6331. }
  6332. }
  6333. if (!$msgbox) {
  6334. datafor = (!_checkable(el) || !el.name) && el.id ? el.id : el.name;
  6335. $msgbox = (container || this.$el).find(msgOpt.wrapper + '.' + CLS_MSG_BOX + '[for="' + datafor + '"]');
  6336. }
  6337. } else {
  6338. $msgbox = $el;
  6339. }
  6340. // Create new message box
  6341. if (!msgOpt.hide && !$msgbox.length) {
  6342. $msgbox = $('<'+ msgOpt.wrapper + '>').attr({
  6343. 'class': CLS_MSG_BOX + (msgOpt.cls ? ' ' + msgOpt.cls : ''),
  6344. 'style': msgOpt.style || undefined,
  6345. 'for': datafor
  6346. });
  6347. if (container) {
  6348. $msgbox.appendTo(container);
  6349. } else {
  6350. if ( _checkable(el) ) {
  6351. var $parent = $el.parent();
  6352. $msgbox.appendTo( $parent.is('label') ? $parent.parent() : $parent );
  6353. } else {
  6354. $msgbox[!msgOpt.pos || msgOpt.pos === 'right' ? 'insertAfter' : 'insertBefore']($el);
  6355. }
  6356. }
  6357. }
  6358. return $msgbox;
  6359. },
  6360. /**
  6361. * Show validation message
  6362. *
  6363. * @method showMsg
  6364. * @param {Element} el - input element
  6365. * @param {Object} msgOpt
  6366. */
  6367. showMsg: function(el, msgOpt, /*INTERNAL*/ field) {
  6368. if (!el) return;
  6369. var me = this,
  6370. opt = me.options,
  6371. msgShow,
  6372. msgMaker,
  6373. temp,
  6374. $msgbox;
  6375. if (isObject(el) && !el.jquery && !msgOpt) {
  6376. $.each(el, function(key, msg) {
  6377. var el = me.elements[key] || me.$el.find(_key2selector(key))[0];
  6378. me.showMsg(el, msg);
  6379. });
  6380. return;
  6381. }
  6382. if ($(el).is(INPUT_SELECTOR)) {
  6383. field = field || me.getField(el);
  6384. }
  6385. if (!(msgMaker = (field || opt).msgMaker)) {
  6386. return;
  6387. }
  6388. msgOpt = me._getMsgOpt(msgOpt, field);
  6389. el = (el.name && _checkable(el) ? me.$el.find('input[name="'+ el.name +'"]') : $(el)).get(0);
  6390. // ok or tip
  6391. if (!msgOpt.msg && msgOpt.type !== 'error') {
  6392. temp = attr(el, 'data-' + msgOpt.type);
  6393. if (temp !== null) msgOpt.msg = temp;
  6394. }
  6395. if ( !isString(msgOpt.msg) ) {
  6396. return;
  6397. }
  6398. $msgbox = me._getMsgDOM(el, msgOpt);
  6399. !rPos.test($msgbox[0].className) && $msgbox.addClass(msgOpt.cls);
  6400. if ( isIE === 6 && msgOpt.pos === 'bottom' ) {
  6401. $msgbox[0].style.marginTop = $(el).outerHeight() + 'px';
  6402. }
  6403. $msgbox.html( msgMaker.call(me, msgOpt) )[0].style.display = '';
  6404. if (isFunction(msgShow = field && field.msgShow || opt.msgShow)) {
  6405. msgShow.call(me, $msgbox, msgOpt.type);
  6406. }
  6407. },
  6408. /**
  6409. * Hide validation message
  6410. *
  6411. * @method hideMsg
  6412. * @param {Element} el - input element
  6413. * @param {Object} msgOpt optional
  6414. */
  6415. hideMsg: function(el, msgOpt, /*INTERNAL*/ field) {
  6416. var me = this,
  6417. opt = me.options,
  6418. msgHide,
  6419. $msgbox;
  6420. el = $(el).get(0);
  6421. if ($(el).is(INPUT_SELECTOR)) {
  6422. field = field || me.getField(el);
  6423. if (field) {
  6424. if (field.isValid || me.reseting) attr(el, ARIA_INVALID, null);
  6425. }
  6426. }
  6427. msgOpt = me._getMsgOpt(msgOpt, field);
  6428. msgOpt.hide = true;
  6429. $msgbox = me._getMsgDOM(el, msgOpt);
  6430. if (!$msgbox.length) return;
  6431. if ( isFunction(msgHide = field && field.msgHide || opt.msgHide) ) {
  6432. msgHide.call(me, $msgbox, msgOpt.type);
  6433. } else {
  6434. $msgbox[0].style.display = 'none';
  6435. $msgbox[0].innerHTML = '';
  6436. }
  6437. },
  6438. /**
  6439. * Get field information
  6440. *
  6441. * @method getField
  6442. * @param {Element} - input element
  6443. * @return {Object} field
  6444. */
  6445. getField: function(el, must) {
  6446. var me = this,
  6447. key,
  6448. field;
  6449. if (isString(el)) {
  6450. key = el;
  6451. el = undefined;
  6452. } else {
  6453. if (attr(el, DATA_RULE)) {
  6454. return me._parse(el);
  6455. }
  6456. if (el.id && '#' + el.id in me.fields || !el.name) {
  6457. key = '#' + el.id;
  6458. } else {
  6459. key = el.name;
  6460. }
  6461. }
  6462. if ( (field = me.fields[key]) || must && (field = new me.Field(key)) ) {
  6463. field.element = el;
  6464. }
  6465. return field;
  6466. },
  6467. /**
  6468. * Config a field
  6469. *
  6470. * @method: setField
  6471. * @param {String} key
  6472. * @param {Object} obj
  6473. */
  6474. setField: function(key, obj) {
  6475. var fields = {};
  6476. if (!key) return;
  6477. // update this field
  6478. if (isString(key)) {
  6479. fields[key] = obj;
  6480. }
  6481. // update fields
  6482. else {
  6483. fields = key;
  6484. }
  6485. this._initFields(fields);
  6486. },
  6487. /**
  6488. * Detecting whether the form is valid
  6489. *
  6490. * @method isFormValid
  6491. * @return {Boolean}
  6492. */
  6493. isFormValid: function() {
  6494. var fields = this.fields, k, field;
  6495. for (k in fields) {
  6496. field = fields[k];
  6497. if (!field._rules || !field.required && !field.must && !field.value) continue;
  6498. if (!field.isValid) return false;
  6499. }
  6500. return true;
  6501. },
  6502. /**
  6503. * Prevent submission form
  6504. *
  6505. * @method holdSubmit
  6506. * @param {Boolean} hold - If set to false, will release the hold
  6507. */
  6508. holdSubmit: function(hold) {
  6509. this.submiting = hold === undefined || hold;
  6510. },
  6511. /**
  6512. * Clean validation messages
  6513. *
  6514. * @method cleanUp
  6515. */
  6516. cleanUp: function() {
  6517. this._reset(1);
  6518. },
  6519. /**
  6520. * Destroy the validation
  6521. *
  6522. * @method destroy
  6523. */
  6524. destroy: function() {
  6525. this._reset(1);
  6526. this.$el.off(CLS_NS).removeData(NS);
  6527. attr(this.$el[0], NOVALIDATE, this._NOVALIDATE);
  6528. }
  6529. };
  6530. /**
  6531. * Create Field Factory
  6532. *
  6533. * @class
  6534. * @param {Object} context
  6535. * @return {Function} Factory
  6536. */
  6537. function _createFieldFactory(context) {
  6538. function FieldFactory() {
  6539. var options = this.options;
  6540. for (var i in options) {
  6541. if (i in fieldDefaults) this[i] = options[i];
  6542. }
  6543. $.extend(this, {
  6544. _valHook: function() {
  6545. return this.element.contentEditable === 'true' ? 'text' : 'val';
  6546. },
  6547. getValue: function() {
  6548. var elem = this.element;
  6549. if (elem.type === "number" && elem.validity && elem.validity.badInput) {
  6550. return 'NaN';
  6551. }
  6552. return $(elem)[this._valHook()]();
  6553. },
  6554. setValue: function(value) {
  6555. $(this.element)[this._valHook()](this.value = value);
  6556. },
  6557. // Get a range of validation messages
  6558. getRangeMsg: function(value, params, suffix) {
  6559. if (!params) return;
  6560. var me = this,
  6561. msg = me.messages[me._r] || '',
  6562. result,
  6563. p = params[0].split('~'),
  6564. e = params[1] === 'false',
  6565. a = p[0],
  6566. b = p[1],
  6567. c = 'rg',
  6568. args = [''],
  6569. isNumber = trim(value) && +value === +value;
  6570. function compare(large, small) {
  6571. return !e ? large >= small : large > small;
  6572. }
  6573. if (p.length === 2) {
  6574. if (a && b) {
  6575. if (isNumber && compare(value, +a) && compare(+b, value)) {
  6576. result = true;
  6577. }
  6578. args = args.concat(p);
  6579. c = e ? 'gtlt' : 'rg';
  6580. }
  6581. else if (a && !b) {
  6582. if (isNumber && compare(value, +a)) {
  6583. result = true;
  6584. }
  6585. args.push(a);
  6586. c = e ? 'gt' : 'gte';
  6587. }
  6588. else if (!a && b) {
  6589. if (isNumber && compare(+b, value)) {
  6590. result = true;
  6591. }
  6592. args.push(b);
  6593. c = e ? 'lt' : 'lte';
  6594. }
  6595. }
  6596. else {
  6597. if (value === +a) {
  6598. result = true;
  6599. }
  6600. args.push(a);
  6601. c = 'eq';
  6602. }
  6603. if (msg) {
  6604. if (suffix && msg[c + suffix]) {
  6605. c += suffix;
  6606. }
  6607. args[0] = msg[c];
  6608. }
  6609. return result || me._rules && ( me._rules[me._i].msg = me.renderMsg.apply(null, args) );
  6610. },
  6611. // Render message template
  6612. renderMsg: function() {
  6613. var args = arguments,
  6614. tpl = args[0],
  6615. i = args.length;
  6616. if (!tpl) return;
  6617. while (--i) {
  6618. tpl = tpl.replace('{' + i + '}', args[i]);
  6619. }
  6620. return tpl;
  6621. }
  6622. });
  6623. }
  6624. function Field(key, obj, oldField) {
  6625. this.key = key;
  6626. this.validator = context;
  6627. $.extend(this, oldField, obj);
  6628. }
  6629. FieldFactory.prototype = context;
  6630. Field.prototype = new FieldFactory();
  6631. return Field;
  6632. }
  6633. /**
  6634. * Create Rules
  6635. *
  6636. * @class
  6637. * @param {Object} obj rules
  6638. * @param {Object} context context
  6639. */
  6640. function Rules(obj, context) {
  6641. if (!isObject(obj)) return;
  6642. var k, that = context ? context === true ? this : context : Rules.prototype;
  6643. for (k in obj) {
  6644. if (_checkRuleName(k))
  6645. that[k] = _getRule(obj[k]);
  6646. }
  6647. }
  6648. /**
  6649. * Create Messages
  6650. *
  6651. * @class
  6652. * @param {Object} obj rules
  6653. * @param {Object} context context
  6654. */
  6655. function Messages(obj, context) {
  6656. if (!isObject(obj)) return;
  6657. var k, that = context ? context === true ? this : context : Messages.prototype;
  6658. for (k in obj) {
  6659. that[k] = obj[k];
  6660. }
  6661. }
  6662. // Rule converted factory
  6663. function _getRule(fn) {
  6664. switch ($.type(fn)) {
  6665. case 'function':
  6666. return fn;
  6667. case 'array':
  6668. var f = function() {
  6669. return fn[0].test(this.value) || fn[1] || false;
  6670. };
  6671. f.msg = fn[1];
  6672. return f;
  6673. case 'regexp':
  6674. return function() {
  6675. return fn.test(this.value);
  6676. };
  6677. }
  6678. }
  6679. // Get instance by an element
  6680. function _getInstance(el) {
  6681. var wrap, k, options;
  6682. if (!el || !el.tagName) return;
  6683. switch (el.tagName) {
  6684. case 'INPUT':
  6685. case 'SELECT':
  6686. case 'TEXTAREA':
  6687. case 'BUTTON':
  6688. case 'FIELDSET':
  6689. wrap = el.form || $(el).closest('.' + CLS_WRAPPER);
  6690. break;
  6691. case 'FORM':
  6692. wrap = el;
  6693. break;
  6694. default:
  6695. wrap = $(el).closest('.' + CLS_WRAPPER);
  6696. }
  6697. for (k in preinitialized) {
  6698. if ($(wrap).is(k)) {
  6699. options = preinitialized[k];
  6700. break;
  6701. }
  6702. }
  6703. return $(wrap).data(NS) || $(wrap)[NS](options).data(NS);
  6704. }
  6705. // Get custom rules on the node
  6706. function _getDataRule(el, method) {
  6707. var fn = trim(attr(el, DATA_RULE + '-' + method));
  6708. if ( fn && (fn = new Function("return " + fn)()) ) {
  6709. return _getRule(fn);
  6710. }
  6711. }
  6712. // Get custom messages on the node
  6713. function _getDataMsg(el, field, m) {
  6714. var msg = field.msg,
  6715. item = field._r;
  6716. if ( isObject(msg) ) msg = msg[item];
  6717. if ( !isString(msg) ) {
  6718. msg = attr(el, DATA_MSG + '-' + item) || attr(el, DATA_MSG) || ( m ? isString(m) ? m : m[item] : '');
  6719. }
  6720. return msg;
  6721. }
  6722. // Get message position
  6723. function _getPos(str) {
  6724. var pos;
  6725. if (str) pos = rPos.exec(str);
  6726. return pos && pos[0];
  6727. }
  6728. // Check whether the element is checkbox or radio
  6729. function _checkable(el) {
  6730. return el.tagName === 'INPUT' && el.type === 'checkbox' || el.type === 'radio';
  6731. }
  6732. // Parse date string to timestamp
  6733. function _parseDate(str) {
  6734. return Date.parse(str.replace(/\.|\-/g, '/'));
  6735. }
  6736. // Rule name only allows alphanumeric characters and underscores
  6737. function _checkRuleName(name) {
  6738. return /^\w+$/.test(name);
  6739. }
  6740. // Translate field key to jQuery selector.
  6741. function _key2selector(key) {
  6742. var isID = key.charAt(0) === "#";
  6743. key = key.replace(/([:.{(|)}/\[\]])/g, "\\$1");
  6744. return isID ? key : '[name="'+ key +'"]:first';
  6745. }
  6746. // Fixed a issue cause by refresh page in IE.
  6747. $(window).on('beforeunload', function(){
  6748. this.focus();
  6749. });
  6750. $(document)
  6751. .on('click', ':submit', function(){
  6752. var input = this, attrNode;
  6753. if (!input.form) return;
  6754. // Shim for "formnovalidate"
  6755. attrNode = input.getAttributeNode('formnovalidate');
  6756. if (attrNode && attrNode.nodeValue !== null || attr(input, NOVALIDATE)!== null) {
  6757. novalidateonce = true;
  6758. }
  6759. })
  6760. // Automatic initializing form validation
  6761. .on('focusin submit validate', 'form,.'+CLS_WRAPPER, function(e) {
  6762. if ( attr(this, NOVALIDATE) !== null ) return;
  6763. var $form = $(this), me;
  6764. if ( !$form.data(NS) && (me = _getInstance(this)) ) {
  6765. if ( !$.isEmptyObject(me.fields) ) {
  6766. // Execute event handler
  6767. if (e.type === 'focusin') {
  6768. me._focusin(e);
  6769. } else {
  6770. me._submit(e);
  6771. }
  6772. } else {
  6773. attr(this, NOVALIDATE, NOVALIDATE);
  6774. $form.off(CLS_NS).removeData(NS);
  6775. }
  6776. }
  6777. });
  6778. new Messages({
  6779. fallback: "This field is not valid.",
  6780. loading: 'Validating...'
  6781. });
  6782. // Built-in rules (global)
  6783. new Rules({
  6784. /**
  6785. * required
  6786. *
  6787. * @example:
  6788. required
  6789. required(anotherRule)
  6790. required(not, -1)
  6791. required(from, .contact)
  6792. */
  6793. required: function(element, params) {
  6794. var me = this,
  6795. val = trim(me.value),
  6796. isValid = true;
  6797. if (params) {
  6798. if ( params.length === 1 ) {
  6799. if ( !_checkRuleName(params[0]) ) {
  6800. if (!val && !$(params[0], me.$el).length ) {
  6801. return null;
  6802. }
  6803. }
  6804. else if ( me.rules[params[0]] ) {
  6805. if ( !val && !me.test(element, params[0]) ) {
  6806. return null;
  6807. }
  6808. }
  6809. }
  6810. else if ( params[0] === 'not' ) {
  6811. $.each(params.slice(1), function() {
  6812. return (isValid = val !== trim(this));
  6813. });
  6814. }
  6815. else if ( params[0] === 'from' ) {
  6816. var $elements = me.$el.find(params[1]),
  6817. VALIDATED = '_validated_',
  6818. ret;
  6819. isValid = $elements.filter(function(){
  6820. var field = me.getField(this);
  6821. return field && !!trim(field.getValue());
  6822. }).length >= (params[2] || 1);
  6823. if (isValid) {
  6824. if (!val) ret = null;
  6825. } else {
  6826. ret = _getDataMsg($elements[0], me) || false;
  6827. }
  6828. if ( !$(element).data(VALIDATED) ) {
  6829. $elements.data(VALIDATED, 1).each(function(){
  6830. if (element !== this) {
  6831. me._validate(this);
  6832. }
  6833. }).removeData(VALIDATED);
  6834. }
  6835. return ret;
  6836. }
  6837. }
  6838. return isValid && !!val;
  6839. },
  6840. /**
  6841. * integer
  6842. *
  6843. * @example:
  6844. integer
  6845. integer[+]
  6846. integer[+0]
  6847. integer[-]
  6848. integer[-0]
  6849. */
  6850. integer: function(element, params) {
  6851. var re, z = '0|',
  6852. p = '[1-9]\\d*',
  6853. key = params ? params[0] : '*';
  6854. switch (key) {
  6855. case '+':
  6856. re = p;
  6857. break;
  6858. case '-':
  6859. re = '-' + p;
  6860. break;
  6861. case '+0':
  6862. re = z + p;
  6863. break;
  6864. case '-0':
  6865. re = z + '-' + p;
  6866. break;
  6867. default:
  6868. re = z + '-?' + p;
  6869. }
  6870. re = '^(?:' + re + ')$';
  6871. return new RegExp(re).test(this.value) || (this.messages.integer && this.messages.integer[key]);
  6872. },
  6873. /**
  6874. * match another field
  6875. *
  6876. * @example:
  6877. match[password] Match the password field (two values ​​must be the same)
  6878. match[eq, password] Ditto
  6879. match[neq, count] The value must be not equal to the value of the count field
  6880. match[lt, count] The value must be less than the value of the count field
  6881. match[lte, count] The value must be less than or equal to the value of the count field
  6882. match[gt, count] The value must be greater than the value of the count field
  6883. match[gte, count] The value must be greater than or equal to the value of the count field
  6884. match[gte, startDate, date]
  6885. match[gte, startTime, time]
  6886. **/
  6887. match: function(element, params) {
  6888. if (!params) return;
  6889. var me = this,
  6890. isValid = true,
  6891. a, b,
  6892. key, msg, type = 'eq', parser,
  6893. selector2, elem2, field2;
  6894. if (params.length === 1) {
  6895. key = params[0];
  6896. } else {
  6897. type = params[0];
  6898. key = params[1];
  6899. }
  6900. selector2 = _key2selector(key);
  6901. elem2 = me.$el.find(selector2)[0];
  6902. // If the compared field is not exist
  6903. if (!elem2) return;
  6904. field2 = me.getField(elem2);
  6905. a = me.value;
  6906. b = field2.getValue();
  6907. if (!me._match) {
  6908. me.$el.on('valid'+CLS_NS_FIELD+CLS_NS, selector2, function(){
  6909. $(element).trigger('validate');
  6910. });
  6911. me._match = field2._match = 1;
  6912. }
  6913. // If both fields are blank
  6914. if (!me.required && a === "" && b === "") {
  6915. return null;
  6916. }
  6917. parser = params[2];
  6918. if (parser) {
  6919. if (/^date(time)?$/i.test(parser)) {
  6920. a = _parseDate(a);
  6921. b = _parseDate(b);
  6922. } else if (parser === 'time') {
  6923. a = +a.replace(/:/g, '');
  6924. b = +b.replace(/:/g, '');
  6925. }
  6926. }
  6927. // If the compared field is incorrect, we only ensure that this field is correct.
  6928. if (type !== "eq" && !isNaN(+a) && isNaN(+b)) {
  6929. return true;
  6930. }
  6931. switch (type) {
  6932. case 'lt':
  6933. isValid = +a < +b; break;
  6934. case 'lte':
  6935. isValid = +a <= +b; break;
  6936. case 'gte':
  6937. isValid = +a >= +b; break;
  6938. case 'gt':
  6939. isValid = +a > +b; break;
  6940. case 'neq':
  6941. isValid = a !== b; break;
  6942. default:
  6943. isValid = a === b;
  6944. }
  6945. return isValid || (
  6946. isObject(me.messages.match)
  6947. && me.messages.match[type].replace( '{1}', me._getDisplay( element, field2.display || key ) )
  6948. );
  6949. },
  6950. /**
  6951. * range numbers
  6952. *
  6953. * @example:
  6954. range[0~99] Number 0-99
  6955. range[0~] Number greater than or equal to 0
  6956. range[~100] Number less than or equal to 100
  6957. **/
  6958. range: function(element, params) {
  6959. return this.getRangeMsg(this.value, params);
  6960. },
  6961. /**
  6962. * how many checkbox or radio inputs that checked
  6963. *
  6964. * @example:
  6965. checked; no empty, same to required
  6966. checked[1~3] 1-3 items
  6967. checked[1~] greater than 1 item
  6968. checked[~3] less than 3 items
  6969. checked[3] 3 items
  6970. **/
  6971. checked: function(element, params) {
  6972. if ( !_checkable(element) ) return;
  6973. var me = this,
  6974. elem, count;
  6975. if (element.name) {
  6976. count = me.$el.find('input[name="' + element.name + '"]').filter(function() {
  6977. var el = this;
  6978. if (!elem && _checkable(el)) elem = el;
  6979. return !el.disabled && el.checked;
  6980. }).length;
  6981. } else {
  6982. elem = element;
  6983. count = elem.checked;
  6984. }
  6985. if (params) {
  6986. return me.getRangeMsg(count, params);
  6987. } else {
  6988. return !!count || _getDataMsg(elem, me, '') || me.messages.required || false;
  6989. }
  6990. },
  6991. /**
  6992. * length of a characters (You can pass the second parameter "true", will calculate the length in bytes)
  6993. *
  6994. * @example:
  6995. length[6~16] 6-16 characters
  6996. length[6~] Greater than 6 characters
  6997. length[~16] Less than 16 characters
  6998. length[~16, true] Less than 16 characters, non-ASCII characters calculating two-character
  6999. **/
  7000. length: function(element, params) {
  7001. var value = this.value,
  7002. len = (params[1] === 'true' ? value.replace(rDoubleBytes, 'xx') : value).length;
  7003. return this.getRangeMsg(len, params, (params[1] ? '_2' : ''));
  7004. },
  7005. /**
  7006. * remote validation
  7007. *
  7008. * @description
  7009. * remote([get:]url [, name1, [name2 ...]]);
  7010. * Adaptation three kinds of results (Front for the successful, followed by a failure):
  7011. 1. text:
  7012. '' 'Error Message'
  7013. 2. json:
  7014. {"ok": ""} {"error": "Error Message"}
  7015. 3. json wrapper:
  7016. {"status": 1, "data": {"ok": ""}} {"status": 1, "data": {"error": "Error Message"}}
  7017. * @example
  7018. The simplest: remote(path/to/server);
  7019. With parameters: remote(path/to/server, name1, name2, ...);
  7020. By GET: remote(get:path/to/server, name1, name2, ...);
  7021. Name proxy: remote(path/to/server, name1, proxyname2:name2, proxyname3:#id3, ...)
  7022. Query String remote(path/to/server, foo=1&bar=2, name1, name2, ...)
  7023. */
  7024. remote: function(element, params) {
  7025. if (!params) return;
  7026. var me = this,
  7027. arr = rAjaxType.exec(params[0]),
  7028. rule = me._rules[me._i],
  7029. data = {},
  7030. queryString = '',
  7031. url = arr[3],
  7032. type = arr[2] || 'POST', // GET / POST
  7033. rType = (arr[1]||'').toLowerCase(), // CORS / JSONP
  7034. dataType;
  7035. rule.must = true;
  7036. data[element.name] = me.value;
  7037. // There are extra fields
  7038. if (params[1]) {
  7039. $.map(params.slice(1), function(name) {
  7040. var arr, key;
  7041. if (~name.indexOf('=')) {
  7042. queryString += '&' + name;
  7043. } else {
  7044. arr = name.split(':');
  7045. name = trim(arr[0]);
  7046. key = trim(arr[1]) || name;
  7047. data[ name ] = me.$el.find( _key2selector(key) ).val();
  7048. }
  7049. });
  7050. }
  7051. data = $.param(data) + queryString;
  7052. if (!me.must && rule.data && rule.data === data) {
  7053. return rule.result;
  7054. }
  7055. // Cross-domain request, force jsonp dataType
  7056. if (rType !== 'cors' && /^https?:/.test(url) && !~url.indexOf(location.host)) {
  7057. dataType = 'jsonp';
  7058. }
  7059. // Asynchronous validation need return jqXHR objects
  7060. return $.ajax({
  7061. url: url,
  7062. type: type,
  7063. data: data,
  7064. dataType: dataType
  7065. });
  7066. },
  7067. /**
  7068. * filter characters, direct filtration without prompting error (support custom regular expressions)
  7069. *
  7070. * @example
  7071. * filter filtering unsafe characters
  7072. * filter(regexp) filtering the "regexp" matched characters
  7073. */
  7074. filter: function(element, params) {
  7075. var value = this.value,
  7076. temp = value.replace( params ? (new RegExp("[" + params[0] + "]", "gm")) : rUnsafe, '' );
  7077. if (temp !== value) this.setValue(temp);
  7078. }
  7079. });
  7080. /**
  7081. * Config global options
  7082. *
  7083. * @static config
  7084. * @param {Object} options
  7085. */
  7086. Validator.config = function(key, value) {
  7087. if (isObject(key)) {
  7088. $.each(key, _config);
  7089. }
  7090. else if (isString(key)) {
  7091. _config(key, value);
  7092. }
  7093. function _config(k, o) {
  7094. if (k === 'rules') {
  7095. new Rules(o);
  7096. }
  7097. else if (k === 'messages') {
  7098. new Messages(o);
  7099. }
  7100. else if (k in fieldDefaults) {
  7101. fieldDefaults[k] = o;
  7102. }
  7103. else {
  7104. defaults[k] = o;
  7105. }
  7106. }
  7107. };
  7108. /**
  7109. * Config themes
  7110. *
  7111. * @static setTheme
  7112. * @param {String|Object} name
  7113. * @param {Object} obj
  7114. * @example
  7115. .setTheme( themeName, themeOptions )
  7116. .setTheme( multiThemes )
  7117. */
  7118. Validator.setTheme = function(name, obj) {
  7119. if ( isObject(name) ) {
  7120. $.extend(true, themes, name);
  7121. }
  7122. else if ( isString(name) && isObject(obj) ) {
  7123. themes[name] = $.extend(themes[name], obj);
  7124. }
  7125. };
  7126. /**
  7127. * Resource loader
  7128. *
  7129. * @static load
  7130. * @param {String} str
  7131. * @example
  7132. .load('local=zh-CN') // load: local/zh-CN.js and jquery.validator.css
  7133. .load('local=zh-CN&css=') // load: local/zh-CN.js
  7134. .load('local&css') // load: local/en.js (set <html lang="en">) and jquery.validator.css
  7135. .load('local') // dito
  7136. */
  7137. Validator.load = function(str) {
  7138. if (!str) return;
  7139. var doc = document,
  7140. params = {},
  7141. node = doc.scripts[0],
  7142. dir, el, ONLOAD;
  7143. str.replace(/([^?=&]+)=([^&#]*)/g, function(m, key, value){
  7144. params[key] = value;
  7145. });
  7146. dir = params.dir || Validator.dir;
  7147. if (!Validator.css && params.css !== '') {
  7148. el = doc.createElement('link');
  7149. el.rel = 'stylesheet';
  7150. el.href = Validator.css = dir + 'jquery.validator.css';
  7151. node.parentNode.insertBefore(el, node);
  7152. }
  7153. if (!Validator.local && ~str.indexOf('local') && params.local !== '') {
  7154. Validator.local = (params.local || doc.documentElement.lang || 'en').replace('_','-');
  7155. Validator.pending = 1;
  7156. el = doc.createElement('script');
  7157. el.src = dir + 'local/' + Validator.local + '.js';
  7158. ONLOAD = 'onload' in el ? 'onload' : 'onreadystatechange';
  7159. el[ONLOAD] = function() {
  7160. if (!el.readyState || /loaded|complete/.test(el.readyState)) {
  7161. el = el[ONLOAD] = null;
  7162. delete Validator.pending;
  7163. $(window).triggerHandler('validatorready');
  7164. }
  7165. };
  7166. node.parentNode.insertBefore(el, node);
  7167. }
  7168. };
  7169. // Auto loading resources
  7170. (function(){
  7171. var scripts = document.scripts,
  7172. i = scripts.length, node, arr,
  7173. re = /(.*validator(?:\.min)?.js)(\?.*(?:local|css|dir)(?:=[\w\-]*)?)?/;
  7174. while (i-- && !arr) {
  7175. node = scripts[i];
  7176. arr = (node.hasAttribute ? node.src : node.getAttribute('src',4)||'').match(re);
  7177. }
  7178. if (!arr) return;
  7179. Validator.dir = arr[1].split('/').slice(0, -1).join('/')+'/';
  7180. Validator.load(arr[2]);
  7181. })();
  7182. return $[NS] = Validator;
  7183. }));
  7184. /*********************************
  7185. * Themes, rules, and i18n support
  7186. * Locale: Chinese; 中文
  7187. *********************************/
  7188. (function(factory) {
  7189. typeof module === "object" && module.exports ? module.exports = factory( require( "jquery" ) ) :
  7190. typeof define === 'function' && define.amd ? define('validator-lang',['jquery'], factory) :
  7191. factory(jQuery);
  7192. }(function($) {
  7193. /* Global configuration
  7194. */
  7195. $.validator.config({
  7196. //stopOnError: true,
  7197. //focusCleanup: true,
  7198. //theme: 'yellow_right',
  7199. //timely: 2,
  7200. // Custom rules
  7201. rules: {
  7202. digits: [/^\d+$/, "请填写数字"]
  7203. ,letters: [/^[a-z]+$/i, "请填写字母"]
  7204. ,date: [/^\d{4}-\d{2}-\d{2}$/, "请填写有效的日期,格式:yyyy-mm-dd"]
  7205. ,time: [/^([01]\d|2[0-3])(:[0-5]\d){1,2}$/, "请填写有效的时间,00:00到23:59之间"]
  7206. ,email: [/^[\w\+\-]+(\.[\w\+\-]+)*@[a-z\d\-]+(\.[a-z\d\-]+)*\.([a-z]{2,4})$/i, "请填写有效的邮箱"]
  7207. ,url: [/^(https?|s?ftp):\/\/\S+$/i, "请填写有效的网址"]
  7208. ,qq: [/^[1-9]\d{4,}$/, "请填写有效的QQ号"]
  7209. ,IDcard: [/^\d{6}(19|2\d)?\d{2}(0[1-9]|1[012])(0[1-9]|[12]\d|3[01])\d{3}(\d|X)?$/, "请填写正确的身份证号码"]
  7210. ,tel: [/^(?:(?:0\d{2,3}[\- ]?[1-9]\d{6,7})|(?:[48]00[\- ]?[1-9]\d{6}))$/, "请填写有效的电话号码"]
  7211. ,mobile: [/^1[3-9]\d{9}$/, "请填写有效的手机号"]
  7212. ,zipcode: [/^\d{6}$/, "请检查邮政编码格式"]
  7213. ,chinese: [/^[\u0391-\uFFE5]+$/, "请填写中文字符"]
  7214. ,username: [/^\w{3,12}$/, "请填写3-12位数字、字母、下划线"]
  7215. ,password: [/^[\S]{6,16}$/, "请填写6-16位字符,不能包含空格"]
  7216. ,accept: function (element, params){
  7217. if (!params) return true;
  7218. var ext = params[0],
  7219. value = $(element).val();
  7220. return (ext === '*') ||
  7221. (new RegExp(".(?:" + ext + ")$", "i")).test(value) ||
  7222. this.renderMsg("只接受{1}后缀的文件", ext.replace(/\|/g, ','));
  7223. }
  7224. },
  7225. // Default error messages
  7226. messages: {
  7227. 0: "此处",
  7228. fallback: "{0}格式不正确",
  7229. loading: "正在验证...",
  7230. error: "网络异常",
  7231. timeout: "请求超时",
  7232. required: "{0}不能为空",
  7233. remote: "{0}已被使用",
  7234. integer: {
  7235. '*': "请填写整数",
  7236. '+': "请填写正整数",
  7237. '+0': "请填写正整数或0",
  7238. '-': "请填写负整数",
  7239. '-0': "请填写负整数或0"
  7240. },
  7241. match: {
  7242. eq: "{0}与{1}不一致",
  7243. neq: "{0}与{1}不能相同",
  7244. lt: "{0}必须小于{1}",
  7245. gt: "{0}必须大于{1}",
  7246. lte: "{0}不能大于{1}",
  7247. gte: "{0}不能小于{1}"
  7248. },
  7249. range: {
  7250. rg: "请填写{1}到{2}的数",
  7251. gte: "请填写不小于{1}的数",
  7252. lte: "请填写最大{1}的数",
  7253. gtlt: "请填写{1}到{2}之间的数",
  7254. gt: "请填写大于{1}的数",
  7255. lt: "请填写小于{1}的数"
  7256. },
  7257. checked: {
  7258. eq: "请选择{1}项",
  7259. rg: "请选择{1}到{2}项",
  7260. gte: "请至少选择{1}项",
  7261. lte: "请最多选择{1}项"
  7262. },
  7263. length: {
  7264. eq: "请填写{1}个字符",
  7265. rg: "请填写{1}到{2}个字符",
  7266. gte: "请至少填写{1}个字符",
  7267. lte: "请最多填写{1}个字符",
  7268. eq_2: "",
  7269. rg_2: "",
  7270. gte_2: "",
  7271. lte_2: ""
  7272. }
  7273. }
  7274. });
  7275. /* Themes
  7276. */
  7277. var TPL_ARROW = '<span class="n-arrow"><b>◆</b><i>◆</i></span>';
  7278. $.validator.setTheme({
  7279. 'simple_right': {
  7280. formClass: 'n-simple',
  7281. msgClass: 'n-right'
  7282. },
  7283. 'simple_bottom': {
  7284. formClass: 'n-simple',
  7285. msgClass: 'n-bottom'
  7286. },
  7287. 'yellow_top': {
  7288. formClass: 'n-yellow',
  7289. msgClass: 'n-top',
  7290. msgArrow: TPL_ARROW
  7291. },
  7292. 'yellow_right': {
  7293. formClass: 'n-yellow',
  7294. msgClass: 'n-right',
  7295. msgArrow: TPL_ARROW
  7296. },
  7297. 'yellow_right_effect': {
  7298. formClass: 'n-yellow',
  7299. msgClass: 'n-right',
  7300. msgArrow: TPL_ARROW,
  7301. msgShow: function($msgbox, type){
  7302. var $el = $msgbox.children();
  7303. if ($el.is(':animated')) return;
  7304. if (type === 'error') {
  7305. $el.css({left: '20px', opacity: 0})
  7306. .delay(100).show().stop()
  7307. .animate({left: '-4px', opacity: 1}, 150)
  7308. .animate({left: '3px'}, 80)
  7309. .animate({left: 0}, 80);
  7310. } else {
  7311. $el.css({left: 0, opacity: 1}).fadeIn(200);
  7312. }
  7313. },
  7314. msgHide: function($msgbox, type){
  7315. var $el = $msgbox.children();
  7316. $el.stop().delay(100).show()
  7317. .animate({left: '20px', opacity: 0}, 300, function(){
  7318. $msgbox.hide();
  7319. });
  7320. }
  7321. }
  7322. });
  7323. }));
  7324. define('validator',['validator-core', 'validator-lang'], function (Validator, undefined) {
  7325. return Validator;
  7326. });
  7327. define('form',['jquery', 'bootstrap', 'upload', 'validator'], function ($, undefined, Upload, Validator) {
  7328. var Form = {
  7329. config: {
  7330. 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>'
  7331. },
  7332. events: {
  7333. validator: function (form, success, error, submit) {
  7334. if (!form.is("form"))
  7335. return;
  7336. //绑定表单事件
  7337. form.validator($.extend({
  7338. validClass: 'has-success',
  7339. invalidClass: 'has-error',
  7340. bindClassTo: '.form-group',
  7341. formClass: 'n-default n-bootstrap',
  7342. msgClass: 'n-right',
  7343. stopOnError: true,
  7344. display: function (elem) {
  7345. return $(elem).closest('.form-group').find(".control-label").text().replace(/\:/, '');
  7346. },
  7347. dataFilter: function (data) {
  7348. if (data.code === 1) {
  7349. return "";
  7350. } else {
  7351. return data.msg;
  7352. }
  7353. },
  7354. target: function (input) {
  7355. var target = $(input).data("target");
  7356. if (target && $(target).size() > 0) {
  7357. return $(target);
  7358. }
  7359. var $formitem = $(input).closest('.form-group'),
  7360. $msgbox = $formitem.find('span.msg-box');
  7361. if (!$msgbox.length) {
  7362. return [];
  7363. }
  7364. return $msgbox;
  7365. },
  7366. valid: function (ret) {
  7367. var that = this, submitBtn = $(".layer-footer [type=submit]", form);
  7368. that.holdSubmit();
  7369. $(".layer-footer [type=submit]", form).addClass("disabled");
  7370. //验证通过提交表单
  7371. Form.api.submit($(ret), function (data, ret) {
  7372. that.holdSubmit(false);
  7373. submitBtn.removeClass("disabled");
  7374. if (false === $(this).triggerHandler("success.form", [data, ret])) {
  7375. return false;
  7376. }
  7377. if (typeof success === 'function') {
  7378. if (false === success.call($(this), data, ret)) {
  7379. return false;
  7380. }
  7381. }
  7382. //提示及关闭当前窗口
  7383. var msg = ret.hasOwnProperty("msg") && ret.msg !== "" ? ret.msg : __('Operation completed');
  7384. parent.Toastr.success(msg);
  7385. parent.$(".btn-refresh").trigger("click");
  7386. var index = parent.Layer.getFrameIndex(window.name);
  7387. parent.Layer.close(index);
  7388. return false;
  7389. }, function (data, ret) {
  7390. that.holdSubmit(false);
  7391. if (false === $(this).triggerHandler("error.form", [data, ret])) {
  7392. return false;
  7393. }
  7394. submitBtn.removeClass("disabled");
  7395. if (typeof error === 'function') {
  7396. if (false === error.call($(this), data, ret)) {
  7397. return false;
  7398. }
  7399. }
  7400. }, submit);
  7401. return false;
  7402. }
  7403. }, form.data("validator-options") || {}));
  7404. //移除提交按钮的disabled类
  7405. $(".layer-footer [type=submit],.fixed-footer [type=submit],.normal-footer [type=submit]", form).removeClass("disabled");
  7406. },
  7407. selectpicker: function (form) {
  7408. //绑定select元素事件
  7409. if ($(".selectpicker", form).size() > 0) {
  7410. require(['bootstrap-select', 'bootstrap-select-lang'], function () {
  7411. $('.selectpicker', form).selectpicker();
  7412. });
  7413. }
  7414. },
  7415. selectpage: function (form) {
  7416. //绑定selectpage元素事件
  7417. if ($(".selectpage", form).size() > 0) {
  7418. require(['selectpage'], function () {
  7419. $('.selectpage', form).selectPage({
  7420. eAjaxSuccess: function (data) {
  7421. data.list = typeof data.rows !== 'undefined' ? data.rows : (typeof data.list !== 'undefined' ? data.list : []);
  7422. data.totalRow = typeof data.total !== 'undefined' ? data.total : (typeof data.totalRow !== 'undefined' ? data.totalRow : data.list.length);
  7423. return data;
  7424. }
  7425. });
  7426. });
  7427. //给隐藏的元素添加上validate验证触发事件
  7428. $(document).on("change", ".sp_hidden", function () {
  7429. $(this).trigger("validate");
  7430. });
  7431. $(document).on("change", ".sp_input", function () {
  7432. $(this).closest(".sp_container").find(".sp_hidden").trigger("change");
  7433. });
  7434. $(form).on("reset", function () {
  7435. setTimeout(function () {
  7436. $('.selectpage', form).selectPageClear();
  7437. }, 1);
  7438. });
  7439. }
  7440. },
  7441. cxselect: function (form) {
  7442. //绑定cxselect元素事件
  7443. if ($("[data-toggle='cxselect']", form).size() > 0) {
  7444. require(['cxselect'], function () {
  7445. $.cxSelect.defaults.jsonName = 'name';
  7446. $.cxSelect.defaults.jsonValue = 'value';
  7447. $.cxSelect.defaults.jsonSpace = 'data';
  7448. $("[data-toggle='cxselect']", form).cxSelect();
  7449. });
  7450. }
  7451. },
  7452. citypicker: function (form) {
  7453. //绑定城市远程插件
  7454. if ($("[data-toggle='city-picker']", form).size() > 0) {
  7455. require(['citypicker'], function () {
  7456. });
  7457. }
  7458. },
  7459. datetimepicker: function (form) {
  7460. //绑定日期时间元素事件
  7461. if ($(".datetimepicker", form).size() > 0) {
  7462. require(['bootstrap-datetimepicker'], function () {
  7463. var options = {
  7464. format: 'YYYY-MM-DD HH:mm:ss',
  7465. icons: {
  7466. time: 'fa fa-clock-o',
  7467. date: 'fa fa-calendar',
  7468. up: 'fa fa-chevron-up',
  7469. down: 'fa fa-chevron-down',
  7470. previous: 'fa fa-chevron-left',
  7471. next: 'fa fa-chevron-right',
  7472. today: 'fa fa-history',
  7473. clear: 'fa fa-trash',
  7474. close: 'fa fa-remove'
  7475. },
  7476. showTodayButton: true,
  7477. showClose: true
  7478. };
  7479. $('.datetimepicker', form).parent().css('position', 'relative');
  7480. $('.datetimepicker', form).datetimepicker(options);
  7481. });
  7482. }
  7483. },
  7484. daterangepicker: function (form) {
  7485. //绑定日期时间元素事件
  7486. if ($(".datetimerange", form).size() > 0) {
  7487. require(['bootstrap-daterangepicker'], function () {
  7488. var ranges = {};
  7489. ranges[__('Today')] = [Moment().startOf('day'), Moment().endOf('day')];
  7490. ranges[__('Yesterday')] = [Moment().subtract(1, 'days').startOf('day'), Moment().subtract(1, 'days').endOf('day')];
  7491. ranges[__('Last 7 Days')] = [Moment().subtract(6, 'days').startOf('day'), Moment().endOf('day')];
  7492. ranges[__('Last 30 Days')] = [Moment().subtract(29, 'days').startOf('day'), Moment().endOf('day')];
  7493. ranges[__('This Month')] = [Moment().startOf('month'), Moment().endOf('month')];
  7494. ranges[__('Last Month')] = [Moment().subtract(1, 'month').startOf('month'), Moment().subtract(1, 'month').endOf('month')];
  7495. var options = {
  7496. timePicker: false,
  7497. autoUpdateInput: false,
  7498. timePickerSeconds: true,
  7499. timePicker24Hour: true,
  7500. autoApply: true,
  7501. locale: {
  7502. format: 'YYYY-MM-DD HH:mm:ss',
  7503. customRangeLabel: __("Custom Range"),
  7504. applyLabel: __("Apply"),
  7505. cancelLabel: __("Clear"),
  7506. },
  7507. ranges: ranges,
  7508. };
  7509. var origincallback = function (start, end) {
  7510. $(this.element).val(start.format(options.locale.format) + " - " + end.format(options.locale.format));
  7511. $(this.element).trigger('blur');
  7512. };
  7513. $(".datetimerange", form).each(function () {
  7514. var callback = typeof $(this).data('callback') == 'function' ? $(this).data('callback') : origincallback;
  7515. $(this).on('apply.daterangepicker', function (ev, picker) {
  7516. callback.call(picker, picker.startDate, picker.endDate);
  7517. });
  7518. $(this).on('cancel.daterangepicker', function (ev, picker) {
  7519. $(this).val('').trigger('blur');
  7520. });
  7521. $(this).daterangepicker($.extend({}, options, $(this).data()), callback);
  7522. });
  7523. });
  7524. }
  7525. },
  7526. plupload: function (form) {
  7527. //绑定plupload上传元素事件
  7528. if ($(".plupload", form).size() > 0) {
  7529. Upload.api.plupload($(".plupload", form));
  7530. }
  7531. },
  7532. faselect: function (form) {
  7533. //绑定fachoose选择附件事件
  7534. if ($(".fachoose", form).size() > 0) {
  7535. $(".fachoose", form).on('click', function () {
  7536. var that = this;
  7537. var multiple = $(this).data("multiple") ? $(this).data("multiple") : false;
  7538. var mimetype = $(this).data("mimetype") ? $(this).data("mimetype") : '';
  7539. parent.Fast.api.open("general/attachment/select?element_id=" + $(this).attr("id") + "&multiple=" + multiple + "&mimetype=" + mimetype, __('Choose'), {
  7540. callback: function (data) {
  7541. var button = $("#" + $(that).attr("id"));
  7542. var maxcount = $(button).data("maxcount");
  7543. var input_id = $(button).data("input-id") ? $(button).data("input-id") : "";
  7544. maxcount = typeof maxcount !== "undefined" ? maxcount : 0;
  7545. if (input_id && data.multiple) {
  7546. var urlArr = [];
  7547. var inputObj = $("#" + input_id);
  7548. var value = $.trim(inputObj.val());
  7549. if (value !== "") {
  7550. urlArr.push(inputObj.val());
  7551. }
  7552. urlArr.push(data.url)
  7553. var result = urlArr.join(",");
  7554. if (maxcount > 0) {
  7555. var nums = value === '' ? 0 : value.split(/\,/).length;
  7556. var files = data.url !== "" ? data.url.split(/\,/) : [];
  7557. var remains = maxcount - nums;
  7558. if (files.length > remains) {
  7559. Toastr.error(__('You can choose up to %d file%s', remains));
  7560. return false;
  7561. }
  7562. }
  7563. inputObj.val(result).trigger("change");
  7564. } else {
  7565. $("#" + input_id).val(data.url).trigger("change");
  7566. }
  7567. }
  7568. });
  7569. return false;
  7570. });
  7571. }
  7572. },
  7573. fieldlist: function (form) {
  7574. //绑定fieldlist
  7575. if ($(".fieldlist", form).size() > 0) {
  7576. require(['dragsort', 'template'], function (undefined, Template) {
  7577. //刷新隐藏textarea的值
  7578. var refresh = function (name) {
  7579. var data = {};
  7580. var textarea = $("textarea[name='" + name + "']", form);
  7581. var container = textarea.closest("dl");
  7582. var template = container.data("template");
  7583. console.log(name, container);
  7584. $.each($("input,select", container).serializeArray(), function (i, j) {
  7585. var reg = /\[(\w+)\]\[(\w+)\]$/g;
  7586. var match = reg.exec(j.name);
  7587. if (!match)
  7588. return true;
  7589. match[1] = "x" + parseInt(match[1]);
  7590. if (typeof data[match[1]] == 'undefined') {
  7591. data[match[1]] = {};
  7592. }
  7593. data[match[1]][match[2]] = j.value;
  7594. });
  7595. var result = template ? [] : {};
  7596. $.each(data, function (i, j) {
  7597. if (j) {
  7598. if (!template) {
  7599. if (j.key != '') {
  7600. result[j.key] = j.value;
  7601. }
  7602. } else {
  7603. result.push(j);
  7604. }
  7605. }
  7606. });
  7607. textarea.val(JSON.stringify(result));
  7608. };
  7609. //监听文本框改变事件
  7610. $(document).on('change keyup', ".fieldlist input,.fieldlist textarea,.fieldlist select", function () {
  7611. refresh($(this).closest("dl").data("name"));
  7612. });
  7613. //追加控制
  7614. $(".fieldlist", form).on("click", ".btn-append,.append", function (e, row) {
  7615. var container = $(this).closest("dl");
  7616. var index = container.data("index");
  7617. var name = container.data("name");
  7618. var template = container.data("template");
  7619. var data = container.data();
  7620. index = index ? parseInt(index) : 0;
  7621. container.data("index", index + 1);
  7622. var row = row ? row : {};
  7623. var vars = {index: index, name: name, data: data, row: row};
  7624. var html = template ? Template(template, vars) : Template.render(Form.config.fieldlisttpl, vars);
  7625. $(html).insertBefore($(this).closest("dd"));
  7626. $(this).trigger("fa.event.appendfieldlist", $(this).closest("dd").prev());
  7627. });
  7628. //移除控制
  7629. $(".fieldlist", form).on("click", "dd .btn-remove", function () {
  7630. var container = $(this).closest("dl");
  7631. $(this).closest("dd").remove();
  7632. refresh(container.data("name"));
  7633. });
  7634. //拖拽排序
  7635. $("dl.fieldlist", form).dragsort({
  7636. itemSelector: 'dd',
  7637. dragSelector: ".btn-dragsort",
  7638. dragEnd: function () {
  7639. refresh($(this).closest("dl").data("name"));
  7640. },
  7641. placeHolderTemplate: "<dd></dd>"
  7642. });
  7643. //渲染数据
  7644. $(".fieldlist", form).each(function () {
  7645. var container = this;
  7646. var textarea = $("textarea[name='" + $(this).data("name") + "']", form);
  7647. if (textarea.val() == '') {
  7648. return true;
  7649. }
  7650. var template = $(this).data("template");
  7651. var json = {};
  7652. try {
  7653. json = JSON.parse(textarea.val());
  7654. } catch (e) {
  7655. }
  7656. $.each(json, function (i, j) {
  7657. $(".btn-append,.append", container).trigger('click', template ? j : {
  7658. key: i,
  7659. value: j
  7660. });
  7661. });
  7662. });
  7663. });
  7664. }
  7665. },
  7666. bindevent: function (form) {
  7667. }
  7668. },
  7669. api: {
  7670. submit: function (form, success, error, submit) {
  7671. if (form.size() === 0)
  7672. return Toastr.error("表单未初始化完成,无法提交");
  7673. if (typeof submit === 'function') {
  7674. if (false === submit.call(form)) {
  7675. return false;
  7676. }
  7677. }
  7678. var type = form.attr("method").toUpperCase();
  7679. type = type && (type === 'GET' || type === 'POST') ? type : 'GET';
  7680. url = form.attr("action");
  7681. url = url ? url : location.href;
  7682. //修复当存在多选项元素时提交的BUG
  7683. var params = {};
  7684. var multipleList = $("[name$='[]']", form);
  7685. if (multipleList.size() > 0) {
  7686. var postFields = form.serializeArray().map(function (obj) {
  7687. return $(obj).prop("name");
  7688. });
  7689. $.each(multipleList, function (i, j) {
  7690. if (postFields.indexOf($(this).prop("name")) < 0) {
  7691. params[$(this).prop("name")] = '';
  7692. }
  7693. });
  7694. }
  7695. //调用Ajax请求方法
  7696. Fast.api.ajax({
  7697. type: type,
  7698. url: url,
  7699. data: form.serialize() + (Object.keys(params).length > 0 ? '&' + $.param(params) : ''),
  7700. dataType: 'json',
  7701. complete: function (xhr) {
  7702. var token = xhr.getResponseHeader('__token__');
  7703. if (token) {
  7704. $("input[name='__token__']", form).val(token);
  7705. }
  7706. }
  7707. }, function (data, ret) {
  7708. $('.form-group', form).removeClass('has-feedback has-success has-error');
  7709. if (data && typeof data === 'object') {
  7710. //刷新客户端token
  7711. if (typeof data.token !== 'undefined') {
  7712. $("input[name='__token__']", form).val(data.token);
  7713. }
  7714. //调用客户端事件
  7715. if (typeof data.callback !== 'undefined' && typeof data.callback === 'function') {
  7716. data.callback.call(form, data);
  7717. }
  7718. }
  7719. if (typeof success === 'function') {
  7720. if (false === success.call(form, data, ret)) {
  7721. return false;
  7722. }
  7723. }
  7724. }, function (data, ret) {
  7725. if (data && typeof data === 'object' && typeof data.token !== 'undefined') {
  7726. $("input[name='__token__']", form).val(data.token);
  7727. }
  7728. if (typeof error === 'function') {
  7729. if (false === error.call(form, data, ret)) {
  7730. return false;
  7731. }
  7732. }
  7733. });
  7734. return false;
  7735. },
  7736. bindevent: function (form, success, error, submit) {
  7737. form = typeof form === 'object' ? form : $(form);
  7738. var events = Form.events;
  7739. events.bindevent(form);
  7740. events.validator(form, success, error, submit);
  7741. events.selectpicker(form);
  7742. events.daterangepicker(form);
  7743. events.selectpage(form);
  7744. events.cxselect(form);
  7745. events.citypicker(form);
  7746. events.datetimepicker(form);
  7747. events.plupload(form);
  7748. events.faselect(form);
  7749. events.fieldlist(form);
  7750. },
  7751. custom: {}
  7752. },
  7753. };
  7754. return Form;
  7755. });
  7756. /**
  7757. * FastAdmin通用搜索
  7758. *
  7759. * @author: pppscn <35696959@qq.com>
  7760. * @update 2017-05-07 <https://gitee.com/pp/fastadmin>
  7761. *
  7762. * @author: Karson <karsonzhang@163.com>
  7763. * @update 2018-04-05 <https://gitee.com/karson/fastadmin>
  7764. */
  7765. !function ($) {
  7766. 'use strict';
  7767. var ColumnsForSearch = [];
  7768. var sprintf = $.fn.bootstrapTable.utils.sprintf;
  7769. var initCommonSearch = function (pColumns, that) {
  7770. var vFormCommon = createFormCommon(pColumns, that);
  7771. var vModal = sprintf("<div class=\"commonsearch-table %s\">", that.options.searchFormVisible ? "" : "hidden");
  7772. vModal += vFormCommon;
  7773. vModal += "</div>";
  7774. that.$container.prepend($(vModal));
  7775. that.$commonsearch = $(".commonsearch-table", that.$container);
  7776. var form = $("form.form-commonsearch", that.$commonsearch);
  7777. require(['form'], function (Form) {
  7778. Form.api.bindevent(form);
  7779. form.validator("destroy");
  7780. });
  7781. // 表单提交
  7782. form.on("submit", function (event) {
  7783. event.preventDefault();
  7784. that.onCommonSearch();
  7785. return false;
  7786. });
  7787. // 重置搜索
  7788. form.on("click", "button[type=reset]", function (event) {
  7789. form[0].reset();
  7790. that.onCommonSearch();
  7791. });
  7792. };
  7793. var createFormCommon = function (pColumns, that) {
  7794. // 如果有使用模板则直接返回模板的内容
  7795. if (that.options.searchFormTemplate) {
  7796. return Template(that.options.searchFormTemplate, {columns: pColumns, table: that});
  7797. }
  7798. var htmlForm = [];
  7799. htmlForm.push(sprintf('<form class="form-horizontal form-commonsearch" novalidate method="post" action="%s" >', that.options.actionForm));
  7800. htmlForm.push('<fieldset>');
  7801. if (that.options.titleForm.length > 0)
  7802. htmlForm.push(sprintf("<legend>%s</legend>", that.options.titleForm));
  7803. htmlForm.push('<div class="row">');
  7804. for (var i in pColumns) {
  7805. var vObjCol = pColumns[i];
  7806. if (!vObjCol.checkbox && vObjCol.field !== 'operate' && vObjCol.searchable && vObjCol.operate !== false) {
  7807. var query = Backend.api.query(vObjCol.field);
  7808. var operate = Backend.api.query(vObjCol.field + "-operate");
  7809. vObjCol.defaultValue = that.options.renderDefault && query ? query : (typeof vObjCol.defaultValue === 'undefined' ? '' : vObjCol.defaultValue);
  7810. vObjCol.operate = that.options.renderDefault && operate ? operate : (typeof vObjCol.operate === 'undefined' ? '=' : vObjCol.operate);
  7811. ColumnsForSearch.push(vObjCol);
  7812. htmlForm.push('<div class="form-group col-xs-12 col-sm-6 col-md-4 col-lg-3">');
  7813. htmlForm.push(sprintf('<label for="%s" class="control-label col-xs-4">%s</label>', vObjCol.field, vObjCol.title));
  7814. htmlForm.push('<div class="col-xs-8">');
  7815. vObjCol.operate = vObjCol.operate ? vObjCol.operate.toUpperCase() : '=';
  7816. 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));
  7817. var addClass = typeof vObjCol.addClass === 'undefined' ? (typeof vObjCol.addclass === 'undefined' ? 'form-control' : 'form-control ' + vObjCol.addclass) : 'form-control ' + vObjCol.addClass;
  7818. var extend = typeof vObjCol.extend === 'undefined' ? '' : vObjCol.extend;
  7819. var style = typeof vObjCol.style === 'undefined' ? '' : sprintf('style="%s"', vObjCol.style);
  7820. extend = typeof vObjCol.data !== 'undefined' && extend == '' ? vObjCol.data : extend;
  7821. if (vObjCol.searchList) {
  7822. if (typeof vObjCol.searchList === 'object' && typeof vObjCol.searchList.then === 'function') {
  7823. htmlForm.push(sprintf('<select class="%s" name="%s" %s %s>%s</select>', addClass, vObjCol.field, style, extend, sprintf('<option value="">%s</option>', that.options.formatCommonChoose())));
  7824. (function (vObjCol, that) {
  7825. $.when(vObjCol.searchList).done(function (ret) {
  7826. var isArray = false;
  7827. if (ret.data && ret.data.searchlist && $.isArray(ret.data.searchlist)) {
  7828. var resultlist = {};
  7829. $.each(ret.data.searchlist, function (key, value) {
  7830. resultlist[value.id] = value.name;
  7831. });
  7832. } else if (ret.constructor === Array || ret.constructor === Object) {
  7833. var resultlist = ret;
  7834. isArray = ret.constructor === Array ? true : isArray;
  7835. }
  7836. var optionList = [];
  7837. $.each(resultlist, function (key, value) {
  7838. var isSelect = (isArray ? value : key) == vObjCol.defaultValue ? 'selected' : '';
  7839. optionList.push(sprintf("<option value='" + (isArray ? value : key) + "' %s>" + value + "</option>", isSelect));
  7840. });
  7841. $("form.form-commonsearch select[name='" + vObjCol.field + "']", that.$container).append(optionList.join(''));
  7842. });
  7843. })(vObjCol, that);
  7844. } else if (typeof vObjCol.searchList == 'function') {
  7845. htmlForm.push(vObjCol.searchList.call(this, vObjCol));
  7846. } else {
  7847. var isArray = vObjCol.searchList.constructor === Array;
  7848. var searchList = [];
  7849. searchList.push(sprintf('<option value="">%s</option>', that.options.formatCommonChoose()));
  7850. $.each(vObjCol.searchList, function (key, value) {
  7851. var isSelect = (isArray ? value : key) == vObjCol.defaultValue ? 'selected' : '';
  7852. searchList.push(sprintf("<option value='" + (isArray ? value : key) + "' %s>" + value + "</option>", isSelect));
  7853. });
  7854. htmlForm.push(sprintf('<select class="%s" name="%s" %s %s>%s</select>', addClass, vObjCol.field, style, extend, searchList.join('')));
  7855. }
  7856. } else {
  7857. var placeholder = typeof vObjCol.placeholder === 'undefined' ? vObjCol.title : vObjCol.placeholder;
  7858. var type = typeof vObjCol.type === 'undefined' ? 'text' : vObjCol.type;
  7859. var defaultValue = typeof vObjCol.defaultValue === 'undefined' ? '' : vObjCol.defaultValue;
  7860. if (/BETWEEN$/.test(vObjCol.operate)) {
  7861. var defaultValueArr = defaultValue.toString().match(/\|/) ? defaultValue.split('|') : ['', ''];
  7862. var placeholderArr = placeholder.toString().match(/\|/) ? placeholder.split('|') : [placeholder, placeholder];
  7863. htmlForm.push('<div class="row row-between">');
  7864. 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));
  7865. 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));
  7866. htmlForm.push('</div>');
  7867. } else {
  7868. 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));
  7869. }
  7870. }
  7871. htmlForm.push('</div>');
  7872. htmlForm.push('</div>');
  7873. }
  7874. }
  7875. htmlForm.push('<div class="form-group col-xs-12 col-sm-6 col-md-4 col-lg-3">');
  7876. htmlForm.push(createFormBtn(that).join(''));
  7877. htmlForm.push('</div>');
  7878. htmlForm.push('</div>');
  7879. htmlForm.push('</fieldset>');
  7880. htmlForm.push('</form>');
  7881. return htmlForm.join('');
  7882. };
  7883. var createFormBtn = function (that) {
  7884. var htmlBtn = [];
  7885. var searchSubmit = that.options.formatCommonSubmitButton();
  7886. var searchReset = that.options.formatCommonResetButton();
  7887. htmlBtn.push('<div class="col-sm-8 col-xs-offset-4">');
  7888. htmlBtn.push(sprintf('<button type="submit" class="btn btn-success" formnovalidate>%s</button> ', searchSubmit));
  7889. htmlBtn.push(sprintf('<button type="reset" class="btn btn-default" >%s</button> ', searchReset));
  7890. htmlBtn.push('</div>');
  7891. return htmlBtn;
  7892. };
  7893. var isSearchAvailble = function (that) {
  7894. //只支持服务端搜索
  7895. if (!that.options.commonSearch || that.options.sidePagination != 'server' || !that.options.url) {
  7896. return false;
  7897. }
  7898. return true;
  7899. };
  7900. var getSearchQuery = function (that, removeempty) {
  7901. var op = {};
  7902. var filter = {};
  7903. var value = '';
  7904. $("form.form-commonsearch .operate", that.$commonsearch).each(function (i) {
  7905. var name = $(this).data("name");
  7906. var sym = $(this).is("select") ? $("option:selected", this).val() : $(this).val().toUpperCase();
  7907. var obj = $("[name='" + name + "']", that.$commonsearch);
  7908. if (obj.size() == 0)
  7909. return true;
  7910. var vObjCol = ColumnsForSearch[i];
  7911. if (obj.size() > 1) {
  7912. if (/BETWEEN$/.test(sym)) {
  7913. var value_begin = $.trim($("[name='" + name + "']:first", that.$commonsearch).val()),
  7914. value_end = $.trim($("[name='" + name + "']:last", that.$commonsearch).val());
  7915. if (value_begin.length || value_end.length) {
  7916. if (typeof vObjCol.process === 'function') {
  7917. value_begin = vObjCol.process(value_begin, 'begin');
  7918. value_end = vObjCol.process(value_end, 'end');
  7919. }
  7920. value = value_begin + ',' + value_end;
  7921. } else {
  7922. value = '';
  7923. }
  7924. //如果是时间筛选,将operate置为RANGE
  7925. if ($("[name='" + name + "']:first", that.$commonsearch).hasClass("datetimepicker")) {
  7926. sym = 'RANGE';
  7927. }
  7928. } else {
  7929. value = $("[name='" + name + "']:checked", that.$commonsearch).val();
  7930. value = (vObjCol && typeof vObjCol.process === 'function') ? vObjCol.process(obj.val()) : obj.val();
  7931. }
  7932. } else {
  7933. value = (vObjCol && typeof vObjCol.process === 'function') ? vObjCol.process(obj.val()) : obj.val();
  7934. }
  7935. if (removeempty && (value == '' || value == null || ($.isArray(value) && value.length == 0)) && !sym.match(/null/i)) {
  7936. return true;
  7937. }
  7938. op[name] = sym;
  7939. filter[name] = value;
  7940. });
  7941. return {op: op, filter: filter};
  7942. };
  7943. var getQueryParams = function (params, searchQuery, removeempty) {
  7944. params.filter = typeof params.filter === 'Object' ? params.filter : (params.filter ? JSON.parse(params.filter) : {});
  7945. params.op = typeof params.op === 'Object' ? params.op : (params.op ? JSON.parse(params.op) : {});
  7946. params.filter = $.extend({}, params.filter, searchQuery.filter);
  7947. params.op = $.extend({}, params.op, searchQuery.op);
  7948. //移除empty的值
  7949. if (removeempty) {
  7950. $.each(params.filter, function (i, j) {
  7951. if ((j == '' || j == null || ($.isArray(j) && j.length == 0)) && !params.op[i].match(/null/i)) {
  7952. delete params.filter[i];
  7953. delete params.op[i];
  7954. }
  7955. });
  7956. }
  7957. params.filter = JSON.stringify(params.filter);
  7958. params.op = JSON.stringify(params.op);
  7959. return params;
  7960. };
  7961. $.extend($.fn.bootstrapTable.defaults, {
  7962. commonSearch: false,
  7963. titleForm: "Common search",
  7964. actionForm: "",
  7965. searchFormTemplate: "",
  7966. searchFormVisible: true,
  7967. searchClass: 'searchit',
  7968. showSearch: true,
  7969. renderDefault: true,
  7970. onCommonSearch: function (field, text) {
  7971. return false;
  7972. },
  7973. onPostCommonSearch: function (table) {
  7974. return false;
  7975. }
  7976. });
  7977. $.extend($.fn.bootstrapTable.defaults.icons, {
  7978. commonSearchIcon: 'glyphicon-search'
  7979. });
  7980. $.extend($.fn.bootstrapTable.Constructor.EVENTS, {
  7981. 'common-search.bs.table': 'onCommonSearch',
  7982. 'post-common-search.bs.table': 'onPostCommonSearch'
  7983. });
  7984. $.extend($.fn.bootstrapTable.locales[$.fn.bootstrapTable.defaults.locale], {
  7985. formatCommonSearch: function () {
  7986. return "Common search";
  7987. },
  7988. formatCommonSubmitButton: function () {
  7989. return "Submit";
  7990. },
  7991. formatCommonResetButton: function () {
  7992. return "Reset";
  7993. },
  7994. formatCommonCloseButton: function () {
  7995. return "Close";
  7996. },
  7997. formatCommonChoose: function () {
  7998. return "Choose";
  7999. }
  8000. });
  8001. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales);
  8002. var BootstrapTable = $.fn.bootstrapTable.Constructor,
  8003. _initHeader = BootstrapTable.prototype.initHeader,
  8004. _initToolbar = BootstrapTable.prototype.initToolbar,
  8005. _load = BootstrapTable.prototype.load,
  8006. _initSearch = BootstrapTable.prototype.initSearch;
  8007. BootstrapTable.prototype.initHeader = function () {
  8008. _initHeader.apply(this, Array.prototype.slice.apply(arguments));
  8009. this.$header.find('th[data-field]').each(function (i) {
  8010. var column = $(this).data();
  8011. if (typeof column['width'] !== 'undefined') {
  8012. $(this).css("min-width", column['width']);
  8013. }
  8014. });
  8015. };
  8016. BootstrapTable.prototype.initToolbar = function () {
  8017. _initToolbar.apply(this, Array.prototype.slice.apply(arguments));
  8018. if (!isSearchAvailble(this)) {
  8019. return;
  8020. }
  8021. var that = this,
  8022. html = [];
  8023. if(that.options.showSearch){
  8024. html.push(sprintf('<div class="columns-%s pull-%s" style="margin-top:10px;margin-bottom:10px;">', this.options.buttonsAlign, this.options.buttonsAlign));
  8025. 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()));
  8026. html.push(sprintf('<i class="%s %s"></i>', that.options.iconsPrefix, that.options.icons.commonSearchIcon))
  8027. html.push('</button></div>');
  8028. }
  8029. if (that.$toolbar.find(".pull-right").size() > 0) {
  8030. $(html.join('')).insertBefore(that.$toolbar.find(".pull-right:first"));
  8031. } else {
  8032. that.$toolbar.append(html.join(''));
  8033. }
  8034. initCommonSearch(that.columns, that);
  8035. that.$toolbar.find('button[name="commonSearch"]')
  8036. .off('click').on('click', function () {
  8037. that.$commonsearch.toggleClass("hidden");
  8038. return;
  8039. });
  8040. that.$container.on("click", "." + that.options.searchClass, function () {
  8041. var obj = $("form [name='" + $(this).data("field") + "']", that.$commonsearch);
  8042. if (obj.size() > 0) {
  8043. obj.val($(this).data("value"));
  8044. $("form", that.$commonsearch).trigger("submit");
  8045. }
  8046. });
  8047. var queryParams = that.options.queryParams;
  8048. //匹配默认搜索值
  8049. this.options.queryParams = function (params) {
  8050. return queryParams(getQueryParams(params, getSearchQuery(that, true)));
  8051. };
  8052. this.trigger('post-common-search', that);
  8053. };
  8054. BootstrapTable.prototype.onCommonSearch = function () {
  8055. var searchQuery = getSearchQuery(this);
  8056. this.trigger('common-search', this, searchQuery);
  8057. this.options.pageNumber = 1;
  8058. this.refresh({});
  8059. };
  8060. BootstrapTable.prototype.load = function (data) {
  8061. _load.apply(this, Array.prototype.slice.apply(arguments));
  8062. if (!isSearchAvailble(this)) {
  8063. return;
  8064. }
  8065. };
  8066. BootstrapTable.prototype.initSearch = function () {
  8067. _initSearch.apply(this, Array.prototype.slice.apply(arguments));
  8068. if (!isSearchAvailble(this)) {
  8069. return;
  8070. }
  8071. var that = this;
  8072. var fp = $.isEmptyObject(this.filterColumnsPartial) ? null : this.filterColumnsPartial;
  8073. this.data = fp ? $.grep(this.data, function (item, i) {
  8074. for (var key in fp) {
  8075. var fval = fp[key].toLowerCase();
  8076. var value = item[key];
  8077. value = $.fn.bootstrapTable.utils.calculateObjectValue(that.header,
  8078. that.header.formatters[$.inArray(key, that.header.fields)],
  8079. [value, item, i], value);
  8080. if (!($.inArray(key, that.header.fields) !== -1 &&
  8081. (typeof value === 'string' || typeof value === 'number') &&
  8082. (value + '').toLowerCase().indexOf(fval) !== -1)) {
  8083. return false;
  8084. }
  8085. }
  8086. return true;
  8087. }) : this.data;
  8088. };
  8089. }(jQuery);
  8090. define("bootstrap-table-commonsearch", ["bootstrap-table"], (function (global) {
  8091. return function () {
  8092. var ret, fn;
  8093. return ret || global.$.fn.bootstrapTable.defaults;
  8094. };
  8095. }(this)));
  8096. /**
  8097. * 将BootstrapTable的行使用自定义的模板来渲染
  8098. *
  8099. * @author: karson
  8100. * @version: v0.0.1
  8101. *
  8102. * @update 2017-06-24 <http://github.com/karsonzhang/fastadmin>
  8103. */
  8104. !function ($) {
  8105. 'use strict';
  8106. $.extend($.fn.bootstrapTable.defaults, {
  8107. //是否启用模板渲染
  8108. templateView: false,
  8109. //数据格式化的模板ID或格式函数
  8110. templateFormatter: "itemtpl",
  8111. //添加的父类的class
  8112. templateParentClass: "row row-flex",
  8113. //向table添加的class
  8114. templateTableClass: "table-template",
  8115. });
  8116. var BootstrapTable = $.fn.bootstrapTable.Constructor,
  8117. _initContainer = BootstrapTable.prototype.initContainer,
  8118. _initBody = BootstrapTable.prototype.initBody,
  8119. _initRow = BootstrapTable.prototype.initRow;
  8120. BootstrapTable.prototype.initContainer = function () {
  8121. _initContainer.apply(this, Array.prototype.slice.apply(arguments));
  8122. var that = this;
  8123. if (!that.options.templateView) {
  8124. return;
  8125. }
  8126. that.options.cardView = true;
  8127. };
  8128. BootstrapTable.prototype.initBody = function () {
  8129. var that = this;
  8130. $.extend(that.options, {
  8131. showHeader: !that.options.templateView ? $.fn.bootstrapTable.defaults.showHeader : false,
  8132. showFooter: !that.options.templateView ? $.fn.bootstrapTable.defaults.showFooter : false,
  8133. });
  8134. $(that.$el).toggleClass(that.options.templateTableClass, that.options.templateView);
  8135. _initBody.apply(this, Array.prototype.slice.apply(arguments));
  8136. if (!that.options.templateView) {
  8137. return;
  8138. } else {
  8139. //由于Bootstrap是基于Table的,添加一个父类容器
  8140. $("> *:not(.no-records-found)", that.$body).wrapAll($("<div />").addClass(that.options.templateParentClass));
  8141. }
  8142. };
  8143. BootstrapTable.prototype.initRow = function (item, i, data, parentDom) {
  8144. var that = this;
  8145. //如果未启用则使用原生的initRow方法
  8146. if (!that.options.templateView) {
  8147. return _initRow.apply(that, Array.prototype.slice.apply(arguments));
  8148. }
  8149. var $content = '';
  8150. if (typeof that.options.templateFormatter === 'function') {
  8151. $content = that.options.templateFormatter.call(that, item, i, data);
  8152. } else {
  8153. var Template = require('template');
  8154. $content = Template(that.options.templateFormatter, {item: item, i: i, data: data});
  8155. }
  8156. return $content;
  8157. };
  8158. }(jQuery);
  8159. define("bootstrap-table-template", ["bootstrap-table","template"], (function (global) {
  8160. return function () {
  8161. var ret, fn;
  8162. return ret || global.$.fn.bootstrapTable.defaults;
  8163. };
  8164. }(this)));
  8165. 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) {
  8166. var Table = {
  8167. list: {},
  8168. // Bootstrap-table 基础配置
  8169. defaults: {
  8170. url: '',
  8171. sidePagination: 'server',
  8172. method: 'get', //请求方法
  8173. toolbar: ".toolbar", //工具栏
  8174. search: true, //是否启用快速搜索
  8175. cache: false,
  8176. commonSearch: true, //是否启用通用搜索
  8177. searchFormVisible: false, //是否始终显示搜索表单
  8178. titleForm: '', //为空则不显示标题,不定义默认显示:普通搜索
  8179. idTable: 'commonTable',
  8180. showExport: true,
  8181. exportDataType: "all",
  8182. exportTypes: ['json', 'xml', 'csv', 'txt', 'doc', 'excel'],
  8183. pageSize: 10,
  8184. pageList: [10, 25, 50, 'All'],
  8185. pagination: true,
  8186. clickToSelect: true, //是否启用点击选中
  8187. singleSelect: false, //是否启用单选
  8188. showRefresh: false,
  8189. locale: 'zh-CN',
  8190. showToggle: true,
  8191. showColumns: true,
  8192. pk: 'id',
  8193. sortName: 'id',
  8194. sortOrder: 'desc',
  8195. paginationFirstText: __("First"),
  8196. paginationPreText: __("Previous"),
  8197. paginationNextText: __("Next"),
  8198. paginationLastText: __("Last"),
  8199. cardView: false, //卡片视图
  8200. checkOnInit: true, //是否在初始化时判断
  8201. escape: true, //是否对内容进行转义
  8202. extend: {
  8203. index_url: '',
  8204. add_url: '',
  8205. edit_url: '',
  8206. del_url: '',
  8207. import_url: '',
  8208. multi_url: '',
  8209. dragsort_url: 'ajax/weigh',
  8210. }
  8211. },
  8212. // Bootstrap-table 列配置
  8213. columnDefaults: {
  8214. align: 'center',
  8215. valign: 'middle',
  8216. },
  8217. config: {
  8218. firsttd: 'tbody tr td:first-child:not(:has(div.card-views))',
  8219. toolbar: '.toolbar',
  8220. refreshbtn: '.btn-refresh',
  8221. addbtn: '.btn-add',
  8222. editbtn: '.btn-edit',
  8223. delbtn: '.btn-del',
  8224. importbtn: '.btn-import',
  8225. multibtn: '.btn-multi',
  8226. disabledbtn: '.btn-disabled',
  8227. editonebtn: '.btn-editone',
  8228. dragsortfield: 'weigh',
  8229. },
  8230. api: {
  8231. init: function (defaults, columnDefaults, locales) {
  8232. defaults = defaults ? defaults : {};
  8233. columnDefaults = columnDefaults ? columnDefaults : {};
  8234. locales = locales ? locales : {};
  8235. // 如果是iOS设备则启用卡片视图
  8236. if (navigator.userAgent.match(/(iPod|iPhone|iPad)/)) {
  8237. Table.defaults.cardView = true;
  8238. }
  8239. // 写入bootstrap-table默认配置
  8240. $.extend(true, $.fn.bootstrapTable.defaults, Table.defaults, defaults);
  8241. // 写入bootstrap-table column配置
  8242. $.extend($.fn.bootstrapTable.columnDefaults, Table.columnDefaults, columnDefaults);
  8243. // 写入bootstrap-table locale配置
  8244. $.extend($.fn.bootstrapTable.locales[Table.defaults.locale], {
  8245. formatCommonSearch: function () {
  8246. return __('Common search');
  8247. },
  8248. formatCommonSubmitButton: function () {
  8249. return __('Submit');
  8250. },
  8251. formatCommonResetButton: function () {
  8252. return __('Reset');
  8253. },
  8254. formatCommonCloseButton: function () {
  8255. return __('Close');
  8256. },
  8257. formatCommonChoose: function () {
  8258. return __('Choose');
  8259. }
  8260. }, locales);
  8261. },
  8262. // 绑定事件
  8263. bindevent: function (table) {
  8264. //Bootstrap-table的父元素,包含table,toolbar,pagnation
  8265. var parenttable = table.closest('.bootstrap-table');
  8266. //Bootstrap-table配置
  8267. var options = table.bootstrapTable('getOptions');
  8268. //Bootstrap操作区
  8269. var toolbar = $(options.toolbar, parenttable);
  8270. //当刷新表格时
  8271. table.on('load-error.bs.table', function (status, res, e) {
  8272. if (e.status === 0) {
  8273. return;
  8274. }
  8275. Toastr.error(__('Unknown data format'));
  8276. });
  8277. //当刷新表格时
  8278. table.on('refresh.bs.table', function (e, settings, data) {
  8279. $(Table.config.refreshbtn, toolbar).find(".fa").addClass("fa-spin");
  8280. });
  8281. //当双击单元格时
  8282. table.on('dbl-click-row.bs.table', function (e, row, element, field) {
  8283. $(Table.config.editonebtn, element).trigger("click");
  8284. });
  8285. //当内容渲染完成后
  8286. table.on('post-body.bs.table', function (e, settings, json, xhr) {
  8287. $(Table.config.refreshbtn, toolbar).find(".fa").removeClass("fa-spin");
  8288. $(Table.config.disabledbtn, toolbar).toggleClass('disabled', true);
  8289. if ($(Table.config.firsttd, table).find("input[type='checkbox'][data-index]").size() > 0) {
  8290. // 挺拽选择,需要重新绑定事件
  8291. require(['drag', 'drop'], function () {
  8292. $(Table.config.firsttd, table).drag("start", function (ev, dd) {
  8293. return $('<div class="selection" />').css('opacity', .65).appendTo(document.body);
  8294. }).drag(function (ev, dd) {
  8295. $(dd.proxy).css({
  8296. top: Math.min(ev.pageY, dd.startY),
  8297. left: Math.min(ev.pageX, dd.startX),
  8298. height: Math.abs(ev.pageY - dd.startY),
  8299. width: Math.abs(ev.pageX - dd.startX)
  8300. });
  8301. }).drag("end", function (ev, dd) {
  8302. $(dd.proxy).remove();
  8303. });
  8304. $(Table.config.firsttd, table).drop("start", function () {
  8305. Table.api.toggleattr(this);
  8306. }).drop(function () {
  8307. Table.api.toggleattr(this);
  8308. }).drop("end", function () {
  8309. Table.api.toggleattr(this);
  8310. });
  8311. $.drop({
  8312. multi: true
  8313. });
  8314. });
  8315. }
  8316. });
  8317. // 处理选中筛选框后按钮的状态统一变更
  8318. table.on('check.bs.table uncheck.bs.table check-all.bs.table uncheck-all.bs.table', function () {
  8319. var ids = Table.api.selectedids(table);
  8320. $(Table.config.disabledbtn, toolbar).toggleClass('disabled', !ids.length);
  8321. });
  8322. // 刷新按钮事件
  8323. $(toolbar).on('click', Table.config.refreshbtn, function () {
  8324. table.bootstrapTable('refresh');
  8325. });
  8326. // 添加按钮事件
  8327. $(toolbar).on('click', Table.config.addbtn, function () {
  8328. var ids = Table.api.selectedids(table);
  8329. var url = options.extend.add_url;
  8330. if (url.indexOf("{ids}") !== -1) {
  8331. url = Table.api.replaceurl(url, {ids: ids.length > 0 ? ids.join(",") : 0}, table);
  8332. }
  8333. Fast.api.open(url, __('Add'), $(this).data() || {});
  8334. });
  8335. // 导入按钮事件
  8336. if ($(Table.config.importbtn, toolbar).size() > 0) {
  8337. require(['upload'], function (Upload) {
  8338. Upload.api.plupload($(Table.config.importbtn, toolbar), function (data, ret) {
  8339. Fast.api.ajax({
  8340. url: options.extend.import_url,
  8341. data: {file: data.url},
  8342. }, function (data, ret) {
  8343. table.bootstrapTable('refresh');
  8344. });
  8345. });
  8346. });
  8347. }
  8348. // 批量编辑按钮事件
  8349. $(toolbar).on('click', Table.config.editbtn, function () {
  8350. var that = this;
  8351. //循环弹出多个编辑框
  8352. $.each(table.bootstrapTable('getSelections'), function (index, row) {
  8353. var url = options.extend.edit_url;
  8354. row = $.extend({}, row ? row : {}, {ids: row[options.pk]});
  8355. var url = Table.api.replaceurl(url, row, table);
  8356. Fast.api.open(url, __('Edit'), $(that).data() || {});
  8357. });
  8358. });
  8359. // 批量操作按钮事件
  8360. $(toolbar).on('click', Table.config.multibtn, function () {
  8361. var ids = Table.api.selectedids(table);
  8362. Table.api.multi($(this).data("action"), ids, table, this);
  8363. });
  8364. // 批量删除按钮事件
  8365. $(toolbar).on('click', Table.config.delbtn, function () {
  8366. var that = this;
  8367. var ids = Table.api.selectedids(table);
  8368. Layer.confirm(
  8369. __('Are you sure you want to delete the %s selected item?', ids.length),
  8370. {icon: 3, title: __('Warning'), offset: 0, shadeClose: true},
  8371. function (index) {
  8372. Table.api.multi("del", ids, table, that);
  8373. Layer.close(index);
  8374. }
  8375. );
  8376. });
  8377. // 拖拽排序
  8378. require(['dragsort'], function () {
  8379. //绑定拖动排序
  8380. $("tbody", table).dragsort({
  8381. itemSelector: 'tr:visible',
  8382. dragSelector: "a.btn-dragsort",
  8383. dragEnd: function (a, b) {
  8384. var element = $("a.btn-dragsort", this);
  8385. var data = table.bootstrapTable('getData');
  8386. var current = data[parseInt($(this).data("index"))];
  8387. var options = table.bootstrapTable('getOptions');
  8388. //改变的值和改变的ID集合
  8389. var ids = $.map($("tbody tr:visible", table), function (tr) {
  8390. return data[parseInt($(tr).data("index"))][options.pk];
  8391. });
  8392. var changeid = current[options.pk];
  8393. var pid = typeof current.pid != 'undefined' ? current.pid : '';
  8394. var params = {
  8395. url: table.bootstrapTable('getOptions').extend.dragsort_url,
  8396. data: {
  8397. ids: ids.join(','),
  8398. changeid: changeid,
  8399. pid: pid,
  8400. field: Table.config.dragsortfield,
  8401. orderway: options.sortOrder,
  8402. table: options.extend.table
  8403. }
  8404. };
  8405. Fast.api.ajax(params, function (data, ret) {
  8406. var success = $(element).data("success") || $.noop;
  8407. if (typeof success === 'function') {
  8408. if (false === success.call(element, data, ret)) {
  8409. return false;
  8410. }
  8411. }
  8412. table.bootstrapTable('refresh');
  8413. }, function () {
  8414. var error = $(element).data("error") || $.noop;
  8415. if (typeof error === 'function') {
  8416. if (false === error.call(element, data, ret)) {
  8417. return false;
  8418. }
  8419. }
  8420. table.bootstrapTable('refresh');
  8421. });
  8422. },
  8423. placeHolderTemplate: ""
  8424. });
  8425. });
  8426. $(table).on("click", "input[data-id][name='checkbox']", function (e) {
  8427. var ids = $(this).data("id");
  8428. var row = Table.api.getrowbyid(table, ids);
  8429. table.trigger('check.bs.table', [row, this]);
  8430. });
  8431. $(table).on("click", "[data-id].btn-change", function (e) {
  8432. e.preventDefault();
  8433. Table.api.multi($(this).data("action") ? $(this).data("action") : '', [$(this).data("id")], table, this);
  8434. });
  8435. $(table).on("click", "[data-id].btn-edit", function (e) {
  8436. e.preventDefault();
  8437. var ids = $(this).data("id");
  8438. var row = Table.api.getrowbyid(table, ids);
  8439. row.ids = ids;
  8440. var url = Table.api.replaceurl(options.extend.edit_url, row, table);
  8441. Fast.api.open(url, __('Edit'), $(this).data() || {});
  8442. });
  8443. $(table).on("click", "[data-id].btn-del", function (e) {
  8444. e.preventDefault();
  8445. var id = $(this).data("id");
  8446. var that = this;
  8447. Layer.confirm(
  8448. __('Are you sure you want to delete this item?'),
  8449. {icon: 3, title: __('Warning'), shadeClose: true},
  8450. function (index) {
  8451. Table.api.multi("del", id, table, that);
  8452. Layer.close(index);
  8453. }
  8454. );
  8455. });
  8456. var id = table.attr("id");
  8457. Table.list[id] = table;
  8458. return table;
  8459. },
  8460. // 批量操作请求
  8461. multi: function (action, ids, table, element) {
  8462. var options = table.bootstrapTable('getOptions');
  8463. var data = element ? $(element).data() : {};
  8464. var ids = ($.isArray(ids) ? ids.join(",") : ids);
  8465. var url = typeof data.url !== "undefined" ? data.url : (action == "del" ? options.extend.del_url : options.extend.multi_url);
  8466. url = this.replaceurl(url, {ids: ids}, table);
  8467. var params = typeof data.params !== "undefined" ? (typeof data.params == 'object' ? $.param(data.params) : data.params) : '';
  8468. var options = {url: url, data: {action: action, ids: ids, params: params}};
  8469. Fast.api.ajax(options, function (data, ret) {
  8470. var success = $(element).data("success") || $.noop;
  8471. if (typeof success === 'function') {
  8472. if (false === success.call(element, data, ret)) {
  8473. return false;
  8474. }
  8475. }
  8476. table.bootstrapTable('refresh');
  8477. }, function (data, ret) {
  8478. var error = $(element).data("error") || $.noop;
  8479. if (typeof error === 'function') {
  8480. if (false === error.call(element, data, ret)) {
  8481. return false;
  8482. }
  8483. }
  8484. });
  8485. },
  8486. // 单元格元素事件
  8487. events: {
  8488. operate: {
  8489. 'click .btn-editone': function (e, value, row, index) {
  8490. e.stopPropagation();
  8491. e.preventDefault();
  8492. var table = $(this).closest('table');
  8493. var options = table.bootstrapTable('getOptions');
  8494. var ids = row[options.pk];
  8495. row = $.extend({}, row ? row : {}, {ids: ids});
  8496. var url = options.extend.edit_url;
  8497. Fast.api.open(Table.api.replaceurl(url, row, table), __('Edit'), $(this).data() || {});
  8498. },
  8499. 'click .btn-delone': function (e, value, row, index) {
  8500. e.stopPropagation();
  8501. e.preventDefault();
  8502. var that = this;
  8503. var top = $(that).offset().top - $(window).scrollTop();
  8504. var left = $(that).offset().left - $(window).scrollLeft() - 260;
  8505. if (top + 154 > $(window).height()) {
  8506. top = top - 154;
  8507. }
  8508. if ($(window).width() < 480) {
  8509. top = left = undefined;
  8510. }
  8511. Layer.confirm(
  8512. __('Are you sure you want to delete this item?'),
  8513. {icon: 3, title: __('Warning'), offset: [top, left], shadeClose: true},
  8514. function (index) {
  8515. var table = $(that).closest('table');
  8516. var options = table.bootstrapTable('getOptions');
  8517. Table.api.multi("del", row[options.pk], table, that);
  8518. Layer.close(index);
  8519. }
  8520. );
  8521. }
  8522. }
  8523. },
  8524. // 单元格数据格式化
  8525. formatter: {
  8526. icon: function (value, row, index) {
  8527. if (!value)
  8528. return '';
  8529. value = value.indexOf(" ") > -1 ? value : "fa fa-" + value;
  8530. //渲染fontawesome图标
  8531. return '<i class="' + value + '"></i> ' + value;
  8532. },
  8533. image: function (value, row, index) {
  8534. value = value ? value : '/assets/img/blank.gif';
  8535. var classname = typeof this.classname !== 'undefined' ? this.classname : 'img-sm img-center';
  8536. return '<img class="' + classname + '" src="' + Fast.api.cdnurl(value) + '" />';
  8537. },
  8538. images: function (value, row, index) {
  8539. value = value === null ? '' : value.toString();
  8540. var classname = typeof this.classname !== 'undefined' ? this.classname : 'img-sm img-center';
  8541. var arr = value.split(',');
  8542. var html = [];
  8543. $.each(arr, function (i, value) {
  8544. value = value ? value : '/assets/img/blank.gif';
  8545. html.push('<img class="' + classname + '" src="' + Fast.api.cdnurl(value) + '" />');
  8546. });
  8547. return html.join(' ');
  8548. },
  8549. status: function (value, row, index) {
  8550. //颜色状态数组,可使用red/yellow/aqua/blue/navy/teal/olive/lime/fuchsia/purple/maroon
  8551. var colorArr = {normal: 'success', hidden: 'grey', deleted: 'danger', locked: 'info'};
  8552. //如果字段列有定义custom
  8553. if (typeof this.custom !== 'undefined') {
  8554. colorArr = $.extend(colorArr, this.custom);
  8555. }
  8556. value = value === null ? '' : value.toString();
  8557. var color = value && typeof colorArr[value] !== 'undefined' ? colorArr[value] : 'primary';
  8558. value = value.charAt(0).toUpperCase() + value.slice(1);
  8559. //渲染状态
  8560. var html = '<span class="text-' + color + '"><i class="fa fa-circle"></i> ' + __(value) + '</span>';
  8561. return html;
  8562. },
  8563. url: function (value, row, index) {
  8564. 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>';
  8565. },
  8566. search: function (value, row, index) {
  8567. return '<a href="javascript:;" class="searchit" data-field="' + this.field + '" data-value="' + value + '">' + value + '</a>';
  8568. },
  8569. addtabs: function (value, row, index) {
  8570. var url = Table.api.replaceurl(this.url, row, this.table);
  8571. var title = this.atitle ? this.atitle : __("Search %s", value);
  8572. return '<a href="' + Fast.api.fixurl(url) + '" class="addtabsit" data-value="' + value + '" title="' + title + '">' + value + '</a>';
  8573. },
  8574. dialog: function (value, row, index) {
  8575. var url = Table.api.replaceurl(this.url, row, this.table);
  8576. var title = this.atitle ? this.atitle : __("View %s", value);
  8577. return '<a href="' + Fast.api.fixurl(url) + '" class="dialogit" data-value="' + value + '" title="' + title + '">' + value + '</a>';
  8578. },
  8579. flag: function (value, row, index) {
  8580. value = value === null ? '' : value.toString();
  8581. var colorArr = {index: 'success', hot: 'warning', recommend: 'danger', 'new': 'info'};
  8582. //如果字段列有定义custom
  8583. if (typeof this.custom !== 'undefined') {
  8584. colorArr = $.extend(colorArr, this.custom);
  8585. }
  8586. if (typeof this.customField !== 'undefined' && typeof row[this.customField] !== 'undefined') {
  8587. value = row[this.customField];
  8588. }
  8589. //渲染Flag
  8590. var html = [];
  8591. var arr = value.split(',');
  8592. $.each(arr, function (i, value) {
  8593. value = value === null ? '' : value.toString();
  8594. if (value == '')
  8595. return true;
  8596. var color = value && typeof colorArr[value] !== 'undefined' ? colorArr[value] : 'primary';
  8597. value = value.charAt(0).toUpperCase() + value.slice(1);
  8598. html.push('<span class="label label-' + color + '">' + __(value) + '</span>');
  8599. });
  8600. return html.join(' ');
  8601. },
  8602. label: function (value, row, index) {
  8603. return Table.api.formatter.flag.call(this, value, row, index);
  8604. },
  8605. datetime: function (value, row, index) {
  8606. return value ? Moment(parseInt(value) * 1000).format("YYYY-MM-DD HH:mm:ss") : __('None');
  8607. },
  8608. operate: function (value, row, index) {
  8609. var table = this.table;
  8610. // 操作配置
  8611. var options = table ? table.bootstrapTable('getOptions') : {};
  8612. // 默认按钮组
  8613. var buttons = $.extend([], this.buttons || []);
  8614. if (options.extend.dragsort_url !== '') {
  8615. buttons.push({
  8616. name: 'dragsort',
  8617. icon: 'fa fa-arrows',
  8618. title: __('Drag to sort'),
  8619. classname: 'btn btn-xs btn-primary btn-dragsort'
  8620. });
  8621. }
  8622. if (options.extend.edit_url !== '') {
  8623. buttons.push({
  8624. name: 'edit',
  8625. icon: 'fa fa-pencil',
  8626. title: __('Edit'),
  8627. classname: 'btn btn-xs btn-success btn-editone',
  8628. url: options.extend.edit_url
  8629. });
  8630. }
  8631. if (options.extend.del_url !== '') {
  8632. buttons.push({
  8633. name: 'del',
  8634. icon: 'fa fa-trash',
  8635. title: __('Del'),
  8636. classname: 'btn btn-xs btn-danger btn-delone'
  8637. });
  8638. }
  8639. return Table.api.buttonlink(this, buttons, value, row, index, 'operate');
  8640. },
  8641. buttons: function (value, row, index) {
  8642. // 默认按钮组
  8643. var buttons = $.extend([], this.buttons || []);
  8644. return Table.api.buttonlink(this, buttons, value, row, index, 'buttons');
  8645. }
  8646. },
  8647. buttonlink: function (column, buttons, value, row, index, type) {
  8648. var table = column.table;
  8649. type = typeof type === 'undefined' ? 'buttons' : type;
  8650. var options = table ? table.bootstrapTable('getOptions') : {};
  8651. var html = [];
  8652. var hidden, url, classname, icon, text, title, refresh, confirm, extend;
  8653. var fieldIndex = column.fieldIndex;
  8654. $.each(buttons, function (i, j) {
  8655. if (type === 'operate') {
  8656. if (j.name === 'dragsort' && typeof row[Table.config.dragsortfield] === 'undefined') {
  8657. return true;
  8658. }
  8659. if (['add', 'edit', 'del', 'multi', 'dragsort'].indexOf(j.name) > -1 && !options.extend[j.name + "_url"]) {
  8660. return true;
  8661. }
  8662. }
  8663. var attr = table.data(type + "-" + j.name);
  8664. if (typeof attr === 'undefined' || attr) {
  8665. hidden = typeof j.hidden === 'function' ? j.hidden.call(table, row, j) : (j.hidden ? j.hidden : false);
  8666. if (hidden) {
  8667. return true;
  8668. }
  8669. url = j.url ? j.url : '';
  8670. url = typeof url === 'function' ? url.call(table, row, j) : (url ? Fast.api.fixurl(Table.api.replaceurl(url, row, table)) : 'javascript:;');
  8671. classname = j.classname ? j.classname : 'btn-primary btn-' + name + 'one';
  8672. icon = j.icon ? j.icon : '';
  8673. text = j.text ? j.text : '';
  8674. title = j.title ? j.title : text;
  8675. refresh = j.refresh ? 'data-refresh="' + j.refresh + '"' : '';
  8676. confirm = j.confirm ? 'data-confirm="' + j.confirm + '"' : '';
  8677. extend = j.extend ? j.extend : '';
  8678. html.push('<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>');
  8679. }
  8680. });
  8681. return html.join(' ');
  8682. },
  8683. //替换URL中的数据
  8684. replaceurl: function (url, row, table) {
  8685. var options = table ? table.bootstrapTable('getOptions') : null;
  8686. var ids = options ? row[options.pk] : 0;
  8687. row.ids = ids ? ids : (typeof row.ids !== 'undefined' ? row.ids : 0);
  8688. //自动添加ids参数
  8689. url = !url.match(/\{ids\}/i) ? url + (url.match(/(\?|&)+/) ? "&ids=" : "/ids/") + '{ids}' : url;
  8690. url = url.replace(/\{(.*?)\}/gi, function (matched) {
  8691. matched = matched.substring(1, matched.length - 1);
  8692. if (matched.indexOf(".") !== -1) {
  8693. var temp = row;
  8694. var arr = matched.split(/\./);
  8695. for (var i = 0; i < arr.length; i++) {
  8696. if (typeof temp[arr[i]] !== 'undefined') {
  8697. temp = temp[arr[i]];
  8698. }
  8699. }
  8700. return typeof temp === 'object' ? '' : temp;
  8701. }
  8702. return row[matched];
  8703. });
  8704. return url;
  8705. },
  8706. // 获取选中的条目ID集合
  8707. selectedids: function (table) {
  8708. var options = table.bootstrapTable('getOptions');
  8709. if (options.templateView) {
  8710. return $.map($("input[data-id][name='checkbox']:checked"), function (dom) {
  8711. return $(dom).data("id");
  8712. });
  8713. } else {
  8714. return $.map(table.bootstrapTable('getSelections'), function (row) {
  8715. return row[options.pk];
  8716. });
  8717. }
  8718. },
  8719. // 切换复选框状态
  8720. toggleattr: function (table) {
  8721. $("input[type='checkbox']", table).trigger('click');
  8722. },
  8723. // 根据行索引获取行数据
  8724. getrowdata: function (table, index) {
  8725. index = parseInt(index);
  8726. var data = table.bootstrapTable('getData');
  8727. return typeof data[index] !== 'undefined' ? data[index] : null;
  8728. },
  8729. // 根据行索引获取行数据
  8730. getrowbyindex: function (table, index) {
  8731. return Table.api.getrowdata(table, index);
  8732. },
  8733. // 根据主键ID获取行数据
  8734. getrowbyid: function (table, id) {
  8735. var row = {};
  8736. var options = table.bootstrapTable("getOptions");
  8737. $.each(table.bootstrapTable('getData'), function (i, j) {
  8738. if (j[options.pk] == id) {
  8739. row = j;
  8740. return false;
  8741. }
  8742. });
  8743. return row;
  8744. }
  8745. },
  8746. };
  8747. return Table;
  8748. });
  8749. // jQuery List DragSort v0.5.2
  8750. // Website: http://dragsort.codeplex.com/
  8751. // License: http://dragsort.codeplex.com/license
  8752. (function($) {
  8753. $.fn.dragsort = function(options) {
  8754. if (options == "destroy") {
  8755. $(this.selector).trigger("dragsort-uninit");
  8756. return;
  8757. }
  8758. var opts = $.extend({}, $.fn.dragsort.defaults, options);
  8759. var lists = [];
  8760. var list = null, lastPos = null;
  8761. this.each(function(i, cont) {
  8762. //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
  8763. if ($(cont).is("table") && $(cont).children().size() == 1 && $(cont).children().is("tbody"))
  8764. cont = $(cont).children().get(0);
  8765. var newList = {
  8766. draggedItem: null,
  8767. placeHolderItem: null,
  8768. pos: null,
  8769. offset: null,
  8770. offsetLimit: null,
  8771. scroll: null,
  8772. container: cont,
  8773. init: function() {
  8774. //set options to default values if not set
  8775. opts.tagName = opts.tagName == "" ? ($(this.container).children().size() == 0 ? "li" : $(this.container).children().get(0).tagName.toLowerCase()) : opts.tagName;
  8776. if (opts.itemSelector == "")
  8777. opts.itemSelector = opts.tagName;
  8778. if (opts.dragSelector == "")
  8779. opts.dragSelector = opts.tagName;
  8780. if (opts.placeHolderTemplate == "")
  8781. opts.placeHolderTemplate = "<" + opts.tagName + ">&nbsp;</" + opts.tagName + ">";
  8782. //listidx allows reference back to correct list variable instance
  8783. $(this.container).attr("data-listidx", i).mousedown(this.grabItem).bind("dragsort-uninit", this.uninit);
  8784. this.styleDragHandlers(true);
  8785. },
  8786. uninit: function() {
  8787. var list = lists[$(this).attr("data-listidx")];
  8788. $(list.container).unbind("mousedown", list.grabItem).unbind("dragsort-uninit");
  8789. list.styleDragHandlers(false);
  8790. },
  8791. getItems: function() {
  8792. return $(this.container).children(opts.itemSelector);
  8793. },
  8794. styleDragHandlers: function(cursor) {
  8795. this.getItems().map(function() { return $(this).is(opts.dragSelector) ? this : $(this).find(opts.dragSelector).get(); }).css("cursor", cursor ? "pointer" : "");
  8796. },
  8797. grabItem: function(e) {
  8798. var list = lists[$(this).attr("data-listidx")];
  8799. var item = $(e.target).closest("[data-listidx] > " + opts.tagName).get(0);
  8800. var insideMoveableItem = list.getItems().filter(function() { return this == item; }).size() > 0;
  8801. //if not left click or if clicked on excluded element (e.g. text box) or not a moveable list item return
  8802. if (e.which != 1 || $(e.target).is(opts.dragSelectorExclude) || $(e.target).closest(opts.dragSelectorExclude).size() > 0 || !insideMoveableItem)
  8803. return;
  8804. //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,
  8805. //does also stop being able to click text boxes hence dragging on text boxes by default is disabled in dragSelectorExclude
  8806. //e.preventDefault();
  8807. //change cursor to move while dragging
  8808. var dragHandle = e.target;
  8809. while (!$(dragHandle).is(opts.dragSelector)) {
  8810. if (dragHandle == this) return;
  8811. dragHandle = dragHandle.parentNode;
  8812. }
  8813. $(dragHandle).attr("data-cursor", $(dragHandle).css("cursor"));
  8814. $(dragHandle).css("cursor", "move");
  8815. //on mousedown wait for movement of mouse before triggering dragsort script (dragStart) to allow clicking of hyperlinks to work
  8816. var listElem = this;
  8817. var trigger = function() {
  8818. list.dragStart.call(listElem, e);
  8819. $(list.container).unbind("mousemove", trigger);
  8820. };
  8821. $(list.container).mousemove(trigger).mouseup(function() { $(list.container).unbind("mousemove", trigger); $(dragHandle).css("cursor", $(dragHandle).attr("data-cursor")); });
  8822. },
  8823. dragStart: function(e) {
  8824. if (list != null && list.draggedItem != null)
  8825. list.dropItem();
  8826. list = lists[$(this).attr("data-listidx")];
  8827. list.draggedItem = $(e.target).closest("[data-listidx] > " + opts.tagName)
  8828. //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
  8829. list.draggedItem.attr("data-origpos", $(this).attr("data-listidx") + "-" + $(list.container).children().index(list.draggedItem));
  8830. //calculate mouse offset relative to draggedItem
  8831. var mt = parseInt(list.draggedItem.css("marginTop"));
  8832. var ml = parseInt(list.draggedItem.css("marginLeft"));
  8833. list.offset = list.draggedItem.offset();
  8834. list.offset.top = e.pageY - list.offset.top + (isNaN(mt) ? 0 : mt) - 1;
  8835. list.offset.left = e.pageX - list.offset.left + (isNaN(ml) ? 0 : ml) - 1;
  8836. //calculate box the dragged item can't be dragged outside of
  8837. if (!opts.dragBetween) {
  8838. 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();
  8839. list.offsetLimit = $(list.container).offset();
  8840. list.offsetLimit.right = list.offsetLimit.left + $(list.container).outerWidth() - list.draggedItem.outerWidth();
  8841. list.offsetLimit.bottom = list.offsetLimit.top + containerHeight - list.draggedItem.outerHeight();
  8842. }
  8843. //create placeholder item
  8844. var h = list.draggedItem.height();
  8845. var w = list.draggedItem.width();
  8846. if (opts.tagName == "tr") {
  8847. list.draggedItem.children().each(function() { $(this).width($(this).width()); });
  8848. list.placeHolderItem = list.draggedItem.clone().attr("data-placeholder", true);
  8849. list.draggedItem.after(list.placeHolderItem);
  8850. //list.placeHolderItem.children().each(function() { $(this).css({ borderWidth:0, width: $(this).width() + 1, height: $(this).height() + 1 }).html("&nbsp;"); });
  8851. list.placeHolderItem.children().each(function() { $(this).html("&nbsp;"); });
  8852. } else {
  8853. list.draggedItem.after(opts.placeHolderTemplate);
  8854. list.placeHolderItem = list.draggedItem.next().css({ height: h, width: w }).attr("data-placeholder", true);
  8855. }
  8856. if (opts.tagName == "td") {
  8857. var listTable = list.draggedItem.closest("table").get(0);
  8858. $("<table id='" + listTable.id + "' style='border-width: 0px;' class='dragSortItem " + listTable.className + "'><tr></tr></table>").appendTo("body").children().append(list.draggedItem);
  8859. }
  8860. //style draggedItem while dragging
  8861. var orig = list.draggedItem.attr("style");
  8862. list.draggedItem.attr("data-origstyle", orig ? orig : "");
  8863. list.draggedItem.css({ position: "absolute", opacity: 0.8, "z-index": 999, height: h, width: w });
  8864. //auto-scroll setup
  8865. list.scroll = { moveX: 0, moveY: 0, maxX: $(document).width() - $(window).width(), maxY: $(document).height() - $(window).height() };
  8866. list.scroll.scrollY = window.setInterval(function() {
  8867. if (opts.scrollContainer != window) {
  8868. $(opts.scrollContainer).scrollTop($(opts.scrollContainer).scrollTop() + list.scroll.moveY);
  8869. return;
  8870. }
  8871. var t = $(opts.scrollContainer).scrollTop();
  8872. if (list.scroll.moveY > 0 && t < list.scroll.maxY || list.scroll.moveY < 0 && t > 0) {
  8873. $(opts.scrollContainer).scrollTop(t + list.scroll.moveY);
  8874. list.draggedItem.css("top", list.draggedItem.offset().top + list.scroll.moveY + 1);
  8875. }
  8876. }, 10);
  8877. list.scroll.scrollX = window.setInterval(function() {
  8878. if (opts.scrollContainer != window) {
  8879. $(opts.scrollContainer).scrollLeft($(opts.scrollContainer).scrollLeft() + list.scroll.moveX);
  8880. return;
  8881. }
  8882. var l = $(opts.scrollContainer).scrollLeft();
  8883. if (list.scroll.moveX > 0 && l < list.scroll.maxX || list.scroll.moveX < 0 && l > 0) {
  8884. $(opts.scrollContainer).scrollLeft(l + list.scroll.moveX);
  8885. list.draggedItem.css("left", list.draggedItem.offset().left + list.scroll.moveX + 1);
  8886. }
  8887. }, 10);
  8888. //misc
  8889. $(lists).each(function(i, l) { l.createDropTargets(); l.buildPositionTable(); });
  8890. list.setPos(e.pageX, e.pageY);
  8891. $(document).bind("mousemove", list.swapItems);
  8892. $(document).bind("mouseup", list.dropItem);
  8893. if (opts.scrollContainer != window)
  8894. $(window).bind("wheel", list.wheel);
  8895. },
  8896. //set position of draggedItem
  8897. setPos: function(x, y) {
  8898. //remove mouse offset so mouse cursor remains in same place on draggedItem instead of top left corner
  8899. var top = y - this.offset.top;
  8900. var left = x - this.offset.left;
  8901. //limit top, left to within box draggedItem can't be dragged outside of
  8902. if (!opts.dragBetween) {
  8903. top = Math.min(this.offsetLimit.bottom, Math.max(top, this.offsetLimit.top));
  8904. left = Math.min(this.offsetLimit.right, Math.max(left, this.offsetLimit.left));
  8905. }
  8906. //adjust top & left calculations to parent offset
  8907. var parent = this.draggedItem.offsetParent().not("body").offset(); //offsetParent returns body even when it's static, if not static offset is only factoring margin
  8908. if (parent != null) {
  8909. top -= parent.top;
  8910. left -= parent.left;
  8911. }
  8912. //set x or y auto-scroll amount
  8913. if (opts.scrollContainer == window) {
  8914. y -= $(window).scrollTop();
  8915. x -= $(window).scrollLeft();
  8916. y = Math.max(0, y - $(window).height() + 5) + Math.min(0, y - 5);
  8917. x = Math.max(0, x - $(window).width() + 5) + Math.min(0, x - 5);
  8918. } else {
  8919. var cont = $(opts.scrollContainer);
  8920. var offset = cont.offset();
  8921. y = Math.max(0, y - cont.height() - offset.top) + Math.min(0, y - offset.top);
  8922. x = Math.max(0, x - cont.width() - offset.left) + Math.min(0, x - offset.left);
  8923. }
  8924. list.scroll.moveX = x == 0 ? 0 : x * opts.scrollSpeed / Math.abs(x);
  8925. list.scroll.moveY = y == 0 ? 0 : y * opts.scrollSpeed / Math.abs(y);
  8926. //move draggedItem to new mouse cursor location
  8927. this.draggedItem.css({ top: top, left: left });
  8928. },
  8929. //if scroll container is a div allow mouse wheel to scroll div instead of window when mouse is hovering over
  8930. wheel: function(e) {
  8931. if (list && opts.scrollContainer != window) {
  8932. var cont = $(opts.scrollContainer);
  8933. var offset = cont.offset();
  8934. e = e.originalEvent;
  8935. if (e.clientX > offset.left && e.clientX < offset.left + cont.width() && e.clientY > offset.top && e.clientY < offset.top + cont.height()) {
  8936. var deltaY = (e.deltaMode == 0 ? 1 : 10) * e.deltaY;
  8937. cont.scrollTop(cont.scrollTop() + deltaY);
  8938. e.preventDefault();
  8939. }
  8940. }
  8941. },
  8942. //build a table recording all the positions of the moveable list items
  8943. buildPositionTable: function() {
  8944. var pos = [];
  8945. this.getItems().not([list.draggedItem[0], list.placeHolderItem[0]]).each(function(i) {
  8946. var loc = $(this).offset();
  8947. loc.right = loc.left + $(this).outerWidth();
  8948. loc.bottom = loc.top + $(this).outerHeight();
  8949. loc.elm = this;
  8950. pos[i] = loc;
  8951. });
  8952. this.pos = pos;
  8953. },
  8954. dropItem: function() {
  8955. if (list.draggedItem == null)
  8956. return;
  8957. //list.draggedItem.attr("style", "") doesn't work on IE8 and jQuery 1.5 or lower
  8958. //list.draggedItem.removeAttr("style") doesn't work on chrome and jQuery 1.6 (works jQuery 1.5 or lower)
  8959. var orig = list.draggedItem.attr("data-origstyle");
  8960. list.draggedItem.attr("style", orig);
  8961. if (orig == "")
  8962. list.draggedItem.removeAttr("style");
  8963. list.draggedItem.removeAttr("data-origstyle");
  8964. list.styleDragHandlers(true);
  8965. list.placeHolderItem.before(list.draggedItem);
  8966. list.placeHolderItem.remove();
  8967. $("[data-droptarget], .dragSortItem").remove();
  8968. window.clearInterval(list.scroll.scrollY);
  8969. window.clearInterval(list.scroll.scrollX);
  8970. //if position changed call dragEnd
  8971. if (list.draggedItem.attr("data-origpos") != $(lists).index(list) + "-" + $(list.container).children().index(list.draggedItem))
  8972. if (opts.dragEnd.apply(list.draggedItem) == false) { //if dragEnd returns false revert order
  8973. var pos = list.draggedItem.attr("data-origpos").split('-');
  8974. var nextItem = $(lists[pos[0]].container).children().not(list.draggedItem).eq(pos[1]);
  8975. if (nextItem.size() > 0)
  8976. nextItem.before(list.draggedItem);
  8977. else if (pos[1] == 0) //was the only item in list
  8978. $(lists[pos[0]].container).prepend(list.draggedItem);
  8979. else //was the last item in list
  8980. $(lists[pos[0]].container).append(list.draggedItem);
  8981. }
  8982. list.draggedItem.removeAttr("data-origpos");
  8983. list.draggedItem = null;
  8984. $(document).unbind("mousemove", list.swapItems);
  8985. $(document).unbind("mouseup", list.dropItem);
  8986. if (opts.scrollContainer != window)
  8987. $(window).unbind("wheel", list.wheel);
  8988. return false;
  8989. },
  8990. //swap the draggedItem (represented visually by placeholder) with the list item the it has been dragged on top of
  8991. swapItems: function(e) {
  8992. if (list.draggedItem == null)
  8993. return false;
  8994. //move draggedItem to mouse location
  8995. list.setPos(e.pageX, e.pageY);
  8996. //retrieve list and item position mouse cursor is over
  8997. var ei = list.findPos(e.pageX, e.pageY);
  8998. var nlist = list;
  8999. for (var i = 0; ei == -1 && opts.dragBetween && i < lists.length; i++) {
  9000. ei = lists[i].findPos(e.pageX, e.pageY);
  9001. nlist = lists[i];
  9002. }
  9003. //if not over another moveable list item return
  9004. if (ei == -1)
  9005. return false;
  9006. //save fixed items locations
  9007. var children = function() { return $(nlist.container).children().not(nlist.draggedItem); };
  9008. var fixed = children().not(opts.itemSelector).each(function(i) { this.idx = children().index(this); });
  9009. //if moving draggedItem up or left place placeHolder before list item the dragged item is hovering over otherwise place it after
  9010. if (lastPos == null || lastPos.top > list.draggedItem.offset().top || lastPos.left > list.draggedItem.offset().left)
  9011. $(nlist.pos[ei].elm).before(list.placeHolderItem);
  9012. else
  9013. $(nlist.pos[ei].elm).after(list.placeHolderItem);
  9014. //restore fixed items location
  9015. fixed.each(function() {
  9016. var elm = children().eq(this.idx).get(0);
  9017. if (this != elm && children().index(this) < this.idx)
  9018. $(this).insertAfter(elm);
  9019. else if (this != elm)
  9020. $(this).insertBefore(elm);
  9021. });
  9022. //misc
  9023. $(lists).each(function(i, l) { l.createDropTargets(); l.buildPositionTable(); });
  9024. lastPos = list.draggedItem.offset();
  9025. return false;
  9026. },
  9027. //returns the index of the list item the mouse is over
  9028. findPos: function(x, y) {
  9029. for (var i = 0; i < this.pos.length; i++) {
  9030. if (this.pos[i].left < x && this.pos[i].right > x && this.pos[i].top < y && this.pos[i].bottom > y)
  9031. return i;
  9032. }
  9033. return -1;
  9034. },
  9035. //create drop targets which are placeholders at the end of other lists to allow dragging straight to the last position
  9036. createDropTargets: function() {
  9037. if (!opts.dragBetween)
  9038. return;
  9039. $(lists).each(function() {
  9040. var ph = $(this.container).find("[data-placeholder]");
  9041. var dt = $(this.container).find("[data-droptarget]");
  9042. if (ph.size() > 0 && dt.size() > 0)
  9043. dt.remove();
  9044. else if (ph.size() == 0 && dt.size() == 0) {
  9045. if (opts.tagName == "td")
  9046. $(opts.placeHolderTemplate).attr("data-droptarget", true).appendTo(this.container);
  9047. else
  9048. //list.placeHolderItem.clone().removeAttr("data-placeholder") crashes in IE7 and jquery 1.5.1 (doesn't in jquery 1.4.2 or IE8)
  9049. $(this.container).append(list.placeHolderItem.removeAttr("data-placeholder").clone().attr("data-droptarget", true));
  9050. list.placeHolderItem.attr("data-placeholder", true);
  9051. }
  9052. });
  9053. }
  9054. };
  9055. newList.init();
  9056. lists.push(newList);
  9057. });
  9058. return this;
  9059. };
  9060. $.fn.dragsort.defaults = {
  9061. tagName:"",
  9062. itemSelector: "",
  9063. dragSelector: "",
  9064. dragSelectorExclude: "input, textarea",
  9065. dragEnd: function() { },
  9066. dragBetween: false,
  9067. placeHolderTemplate: "",
  9068. scrollContainer: window,
  9069. scrollSpeed: 5
  9070. };
  9071. })(jQuery);
  9072. define("dragsort", function(){});
  9073. /*!
  9074. * jquery.event.drag - v 2.2
  9075. * Copyright (c) 2010 Three Dub Media - http://threedubmedia.com
  9076. * Open Source MIT License - http://threedubmedia.com/code/license
  9077. */
  9078. ;(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);
  9079. define("drag", function(){});
  9080. /*!
  9081. * jquery.event.drop - v 2.2
  9082. * Copyright (c) 2010 Three Dub Media - http://threedubmedia.com
  9083. * Open Source MIT License - http://threedubmedia.com/code/license
  9084. */
  9085. ;(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);
  9086. define("drop", function(){});
  9087. /**
  9088. * http://git.oschina.net/hbbcs/bootStrap-addTabs
  9089. * Created by joe on 2015-12-19.
  9090. */
  9091. $.fn.addtabs = function (options) {
  9092. var obj = $(this);
  9093. options = $.extend({
  9094. content: '', //直接指定所有页面TABS内容
  9095. close: true, //是否可以关闭
  9096. monitor: 'body', //监视的区域
  9097. nav: '.nav-addtabs',
  9098. tab: '.tab-addtabs',
  9099. iframeUse: true, //使用iframe还是ajax
  9100. iframeHeight: $(window).height() - 50, //固定TAB中IFRAME高度,根据需要自己修改
  9101. iframeForceRefresh: false, //点击后强制刷新对应的iframe
  9102. callback: function () {
  9103. //关闭后回调函数
  9104. }
  9105. }, options || {});
  9106. var navobj = $(options.nav);
  9107. var tabobj = $(options.tab);
  9108. if (history.pushState) {
  9109. //浏览器前进后退事件
  9110. $(window).on("popstate", function (e) {
  9111. var state = e.originalEvent.state;
  9112. if (state) {
  9113. $("a[addtabs=" + state.id + "]", options.monitor).data("pushstate", true).trigger("click");
  9114. }
  9115. });
  9116. }
  9117. $(options.monitor).on('click', '[addtabs]', function (e) {
  9118. if ($(this).attr('url').indexOf("javascript:") !== 0) {
  9119. if ($(this).is("a")) {
  9120. e.preventDefault();
  9121. }
  9122. var id = $(this).attr('addtabs');
  9123. var title = $(this).attr('title') ? $(this).attr('title') : $.trim($(this).text());
  9124. var url = $(this).attr('url');
  9125. var content = options.content ? options.content : $(this).attr('content');
  9126. var ajax = $(this).attr('ajax') ? true : false;
  9127. var state = ({
  9128. url: url, title: title, id: id, content: content, ajax: ajax
  9129. });
  9130. document.title = title;
  9131. if (history.pushState && !$(this).data("pushstate")) {
  9132. var pushurl = url.indexOf("ref=addtabs") == -1 ? (url + (url.indexOf("?") > -1 ? "&" : "?") + "ref=addtabs") : url;
  9133. window.history.pushState(state, title, pushurl);
  9134. }
  9135. $(this).data("pushstate", null);
  9136. _add.call(this, {
  9137. id: id,
  9138. title: $(this).attr('title') ? $(this).attr('title') : $(this).html(),
  9139. content: content,
  9140. url: url,
  9141. ajax: ajax
  9142. });
  9143. }
  9144. });
  9145. navobj.on('click', '.close-tab', function (e) {
  9146. id = $(this).prev("a").attr("aria-controls");
  9147. _close(id);
  9148. return false;
  9149. });
  9150. navobj.on('dblclick', 'li[role=presentation]', function (e) {
  9151. $(this).find(".close-tab").trigger("click");
  9152. });
  9153. navobj.on('click', 'li[role=presentation]', function (e) {
  9154. $("a[addtabs=" + $("a", this).attr("node-id") + "]").trigger("click");
  9155. });
  9156. $(window).resize(function () {
  9157. $("#nav").width($("#header > .navbar").width() - $(".sidebar-toggle").outerWidth() - $(".navbar-custom-menu").outerWidth() - 20);
  9158. _drop();
  9159. });
  9160. _add = function (opts) {
  9161. var id, tabid, conid, url;
  9162. id = opts.id;
  9163. tabid = 'tab_' + opts.id;
  9164. conid = 'con_' + opts.id;
  9165. url = opts.url;
  9166. url += (opts.url.indexOf("?") > -1 ? "&addtabs=1" : "?addtabs=1");
  9167. navobj.find("[role='presentation']").removeClass('active');
  9168. tabobj.find("[role='tabpanel']").removeClass('active');
  9169. //如果TAB不存在,创建一个新的TAB
  9170. if ($("#" + tabid).size() == 0) {
  9171. //创建新TAB的title
  9172. title = $('<li role="presentation" id="' + tabid + '"><a href="#' + conid + '" node-id="' + opts.id + '" aria-controls="' + id + '" role="tab" data-toggle="tab">' + opts.title + '</a></li>');
  9173. //是否允许关闭
  9174. if (options.close && $("li", navobj).size() > 0) {
  9175. title.append(' <i class="close-tab fa fa-remove"></i>');
  9176. }
  9177. //创建新TAB的内容
  9178. content = $('<div role="tabpanel" class="tab-pane" id="' + conid + '"></div>');
  9179. //是否指定TAB内容
  9180. if (opts.content) {
  9181. content.append(opts.content);
  9182. } else if (options.iframeUse && !opts.ajax) {//没有内容,使用IFRAME打开链接
  9183. var height = options.iframeHeight;
  9184. content.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>');
  9185. } else {
  9186. $.get(url, function (data) {
  9187. content.append(data);
  9188. });
  9189. }
  9190. //加入TABS
  9191. if ($('.tabdrop li').size() > 0) {
  9192. $('.tabdrop ul').append(title);
  9193. } else {
  9194. navobj.append(title);
  9195. }
  9196. tabobj.append(content);
  9197. } else {
  9198. //强制刷新iframe
  9199. if (options.iframeForceRefresh) {
  9200. $("#" + conid + " iframe").attr('src', function (i, val) {
  9201. return val;
  9202. });
  9203. }
  9204. }
  9205. localStorage.setItem("addtabs", $(this).prop('outerHTML'));
  9206. //激活TAB
  9207. $("#" + tabid).addClass('active');
  9208. $("#" + conid).addClass("active");
  9209. _drop();
  9210. };
  9211. _close = function (id) {
  9212. var tabid = 'tab_' + id;
  9213. var conid = 'con_' + id;
  9214. //如果关闭的是当前激活的TAB,激活他的前一个TAB
  9215. if (obj.find("li.active").not('.tabdrop').attr('id') == tabid) {
  9216. if ($("#" + tabid).prev().not(".tabdrop").size() > 0) {
  9217. $("#" + tabid).prev().not(".tabdrop").find("a").trigger("click");
  9218. } else if ($("#" + tabid).next().size() > 0) {
  9219. $("#" + tabid).next().trigger("click");
  9220. } else {
  9221. $(">li:last > a", navobj).trigger('click');
  9222. }
  9223. }
  9224. //关闭TAB
  9225. $("#" + tabid).remove();
  9226. $("#" + conid).remove();
  9227. _drop();
  9228. options.callback();
  9229. };
  9230. _drop = function () {
  9231. //创建下拉标签
  9232. var dropdown = $('<li class="dropdown pull-right hide tabdrop"><a class="dropdown-toggle" data-toggle="dropdown" href="javascript:;">' +
  9233. '<i class="glyphicon glyphicon-align-justify"></i>' +
  9234. ' <b class="caret"></b></a><ul class="dropdown-menu"></ul></li>');
  9235. //检测是否已增加
  9236. if (!$('.tabdrop').html()) {
  9237. dropdown.prependTo(navobj);
  9238. } else {
  9239. dropdown = navobj.find('.tabdrop');
  9240. }
  9241. //检测是否有下拉样式
  9242. if (navobj.parent().is('.tabs-below')) {
  9243. dropdown.addClass('dropup');
  9244. }
  9245. var collection = 0;
  9246. var maxwidth = navobj.width() - 60;
  9247. var liwidth = 0;
  9248. //检查超过一行的标签页
  9249. var litabs = navobj.append(dropdown.find('li')).find('>li').not('.tabdrop');
  9250. var lisize = litabs.size();
  9251. litabs.each(function (i, j) {
  9252. liwidth += $(this).width();
  9253. if (collection == 0 && i == lisize - 1 && liwidth <= navobj.width()) {
  9254. return true;
  9255. }
  9256. if (liwidth > maxwidth) {
  9257. dropdown.find('ul').append($(this));
  9258. collection++;
  9259. }
  9260. });
  9261. //如果有超出的,显示下拉标签
  9262. if (collection > 0) {
  9263. dropdown.removeClass('hide');
  9264. if (dropdown.find('.active').length == 1) {
  9265. dropdown.addClass('active');
  9266. } else {
  9267. dropdown.removeClass('active');
  9268. }
  9269. } else {
  9270. dropdown.addClass('hide');
  9271. }
  9272. };
  9273. };
  9274. define("addtabs", function(){});
  9275. /**
  9276. * @summary SelectPage
  9277. * @desc Simple and powerful selection plugin
  9278. * @file selectpage.js
  9279. * @version 2.18
  9280. * @author TerryZeng
  9281. * @contact https://terryz.github.io/
  9282. * @license MIT License
  9283. *
  9284. */
  9285. ;
  9286. (function ($) {
  9287. "use strict";
  9288. /**
  9289. * Default options
  9290. */
  9291. var defaults = {
  9292. /**
  9293. * Data source
  9294. * @type {string|Object}
  9295. *
  9296. * string:server side request url address
  9297. * Object:JSON array,format:[{a:1,b:2,c:3},{...}]
  9298. */
  9299. data: undefined,
  9300. /**
  9301. * Language ('cn', 'en', 'ja', 'es', 'pt-br')
  9302. * @type string
  9303. * @default 'cn'
  9304. */
  9305. lang: 'cn',
  9306. /**
  9307. * Multiple select mode(tags)
  9308. * @type boolean
  9309. * @default false
  9310. */
  9311. multiple: false,
  9312. /**
  9313. * pagination or not
  9314. * @type boolean
  9315. * @default true
  9316. */
  9317. pagination: true,
  9318. /**
  9319. * Show up menu button
  9320. * @type boolean
  9321. * @default true
  9322. */
  9323. dropButton: true,
  9324. /**
  9325. * Result list visible size in pagination bar close
  9326. * @type number
  9327. * @default 10
  9328. */
  9329. listSize: 10,
  9330. /**
  9331. * Show control bar in multiple select mode
  9332. * @type boolean
  9333. * @default true
  9334. */
  9335. multipleControlbar: true,
  9336. /**
  9337. * Max selected item limited in multiple select mode
  9338. * @type number
  9339. * @default 0(unlimited)
  9340. */
  9341. maxSelectLimit: 0,
  9342. /**
  9343. * Select result item to close list, work on multiple select mode
  9344. * @type boolean
  9345. * @default false
  9346. */
  9347. selectToCloseList: false,
  9348. /**
  9349. * Init selected item key, the result will match to option.keyField option
  9350. * @type string
  9351. */
  9352. initRecord: undefined,
  9353. /**
  9354. * The table parameter in server side mode
  9355. * @type string
  9356. */
  9357. dbTable: 'tbl',
  9358. /**
  9359. * The value field, the value will fill to hidden element
  9360. * @type string
  9361. * @default 'id'
  9362. */
  9363. keyField: 'id',
  9364. /**
  9365. * The show text field, the text will show to input element or tags(multiple mode)
  9366. * @type string
  9367. * @default 'name'
  9368. */
  9369. showField: 'name',
  9370. /**
  9371. * Actually used to search field
  9372. * @type string
  9373. */
  9374. searchField: undefined,
  9375. /**
  9376. * Search type ('AND' or 'OR')
  9377. * @type string
  9378. * @default 'AND'
  9379. */
  9380. andOr: 'AND',
  9381. /**
  9382. * Result sort type
  9383. * @type array - if not set, will default used showField field
  9384. * @example
  9385. * orderBy : ['id desc']
  9386. */
  9387. orderBy: undefined,
  9388. /**
  9389. * Page size
  9390. * @type number
  9391. * @default 10
  9392. */
  9393. pageSize: 10,
  9394. /**
  9395. * Server side request parameters
  9396. * @type function
  9397. * @return object
  9398. * @example params : function(){return {'name':'aa','sex':1};}
  9399. */
  9400. params: undefined,
  9401. /**
  9402. * Custom result list item show text
  9403. * @type function
  9404. * @param data {object} row data
  9405. * @return string
  9406. */
  9407. formatItem: undefined,
  9408. /**
  9409. * Have some highlight item and lost focus, auto select the highlight item
  9410. * @type boolean
  9411. * @default false
  9412. */
  9413. autoFillResult: false,
  9414. /**
  9415. * Auto select first item in show up result list or search result
  9416. * depend on `autoFillResult` option set to true
  9417. * @type boolean
  9418. * @default false
  9419. */
  9420. autoSelectFirst: false,
  9421. /**
  9422. * Whether clear input element text when enter some keywords to search and no result return
  9423. * @type boolean
  9424. * @default true
  9425. */
  9426. noResultClean: true,
  9427. /**
  9428. * Select only mode
  9429. * @type boolean
  9430. */
  9431. selectOnly: false,
  9432. /**
  9433. * Input to search delay time, work on ajax data source
  9434. * @type number
  9435. * @default 0.5
  9436. */
  9437. inputDelay: 0.5,
  9438. /**
  9439. * -----------------------------------------Callback--------------------------------------------
  9440. */
  9441. /**
  9442. * Result list item selected callback
  9443. * @type function
  9444. * @param object - selected item json data
  9445. * @param self - plugin object
  9446. */
  9447. eSelect: undefined,
  9448. /**
  9449. * Before result list show up callback, you can do anything prepared
  9450. * @param self - plugin object
  9451. */
  9452. eOpen: undefined,
  9453. /**
  9454. * Server side return data convert callback
  9455. * @type function
  9456. * @param data {object} server side return data
  9457. * @param self {object} plugin object
  9458. * @return {object} return data format:
  9459. * @example
  9460. * {
  9461. * list : [{name:'aa',sex:1},{name:'bb',sex:1}...],
  9462. * totalRow : 100
  9463. * }
  9464. */
  9465. eAjaxSuccess: undefined,
  9466. /**
  9467. * Close selected item tag callback (multiple mode)
  9468. * @type function
  9469. * @param removeCount {number} remove item count
  9470. * @param self {object} plugin object
  9471. */
  9472. eTagRemove: undefined,
  9473. /**
  9474. * Clear selected item callback(single select mode)
  9475. * @type function
  9476. * @param self {object} plugin object
  9477. */
  9478. eClear: undefined
  9479. };
  9480. /**
  9481. * SelectPage class definition
  9482. * @constructor
  9483. * @param {Object} input - input element
  9484. * @param {Object} option
  9485. */
  9486. var SelectPage = function (input, option) {
  9487. //特殊字段处理
  9488. $.each({data: 'source', keyField: 'primaryKey', showField: 'field', pageSize: 'perPage'}, function (i, j) {
  9489. if (typeof option[j] !== 'undefined') {
  9490. option[i] = option[j];
  9491. delete option[j];
  9492. }
  9493. });
  9494. this.setOption(option);
  9495. this.setLanguage();
  9496. this.setCssClass();
  9497. this.setProp();
  9498. this.setElem(input);
  9499. this.setButtonAttrDefault();
  9500. this.setInitRecord();
  9501. this.eDropdownButton();
  9502. this.eInput();
  9503. this.eWhole();
  9504. };
  9505. /**
  9506. * Plugin version number
  9507. */
  9508. SelectPage.version = '2.18';
  9509. /**
  9510. * Plugin object cache key
  9511. */
  9512. SelectPage.dataKey = 'selectPageObject';
  9513. /**
  9514. * Options set
  9515. * @param {Object} option
  9516. */
  9517. SelectPage.prototype.setOption = function (option) {
  9518. //use showField to default
  9519. option.searchField = option.searchField || option.showField;
  9520. option.andOr = option.andOr.toUpperCase();
  9521. if (option.andOr !== 'AND' && option.andOr !== 'OR')
  9522. option.andOr = 'AND';
  9523. //support multiple field set
  9524. var arr = ['searchField'];
  9525. for (var i = 0; i < arr.length; i++) {
  9526. option[arr[i]] = this.strToArray(option[arr[i]]);
  9527. }
  9528. //set default order field
  9529. option.orderBy = option.orderBy || option.showField;
  9530. //set multiple order field
  9531. //example: [ ['id', 'ASC'], ['name', 'DESC'] ]
  9532. option.orderBy = this.setOrderbyOption(option.orderBy, option.showField);
  9533. //close auto fill result and auto select first in multiple mode and select item not close list
  9534. if (option.multiple && !option.selectToCloseList) {
  9535. option.autoFillResult = false;
  9536. option.autoSelectFirst = false;
  9537. }
  9538. //show all item when pagination bar close, limited 200
  9539. if (!option.pagination)
  9540. option.pageSize = 200;
  9541. if ($.type(option.listSize) !== 'number' || option.listSize < 0)
  9542. option.listSize = 10;
  9543. this.option = option;
  9544. };
  9545. /**
  9546. * String convert to array
  9547. * @param str {string}
  9548. * @return {Array}
  9549. */
  9550. SelectPage.prototype.strToArray = function (str) {
  9551. if (!str)
  9552. return '';
  9553. return str.replace(/[\s ]+/g, '').split(',');
  9554. };
  9555. /**
  9556. * Set order field
  9557. * @param {Array} arg_order
  9558. * @param {string} arg_field
  9559. * @return {Array}
  9560. */
  9561. SelectPage.prototype.setOrderbyOption = function (arg_order, arg_field) {
  9562. var arr = [], orders = [];
  9563. if (typeof arg_order == 'object') {
  9564. for (var i = 0; i < arg_order.length; i++) {
  9565. orders = $.trim(arg_order[i]).split(' ');
  9566. arr[i] = (orders.length == 2) ? orders : [orders[0], 'ASC'];
  9567. }
  9568. } else {
  9569. orders = $.trim(arg_order).split(' ');
  9570. arr[0] = (orders.length == 2) ? orders : (orders[0].match(/^(ASC|DESC)$/i)) ? [arg_field, orders[0]] : [orders[0], 'ASC'];
  9571. }
  9572. return arr;
  9573. };
  9574. /**
  9575. * i18n
  9576. */
  9577. SelectPage.prototype.setLanguage = function () {
  9578. var message, p = this.option;
  9579. switch (p.lang) {
  9580. // English
  9581. case 'en':
  9582. message = {
  9583. add_btn: 'Add button',
  9584. add_title: 'add a box',
  9585. del_btn: 'Del button',
  9586. del_title: 'delete a box',
  9587. next: 'Next',
  9588. next_title: 'Next' + p.pageSize + ' (Right key)',
  9589. prev: 'Prev',
  9590. prev_title: 'Prev' + p.pageSize + ' (Left key)',
  9591. first_title: 'First (Shift + Left key)',
  9592. last_title: 'Last (Shift + Right key)',
  9593. get_all_btn: 'Get All (Down key)',
  9594. get_all_alt: '(button)',
  9595. close_btn: 'Close (Tab key)',
  9596. close_alt: '(button)',
  9597. loading: 'loading...',
  9598. loading_alt: '(loading)',
  9599. page_info: 'page_num of page_count',
  9600. select_ng: 'Attention : Please choose from among the list.',
  9601. select_ok: 'OK : Correctly selected.',
  9602. not_found: 'not found',
  9603. ajax_error: 'An error occurred while connecting to server.',
  9604. clear: 'Clear content',
  9605. select_all: 'Select current page',
  9606. unselect_all: 'Clear current page',
  9607. clear_all: 'Clear all selected',
  9608. max_selected: 'You can only select up to max_selected_limit items'
  9609. };
  9610. break;
  9611. // 中文
  9612. case 'cn':
  9613. default:
  9614. message = {
  9615. add_btn: '添加按钮',
  9616. add_title: '添加区域',
  9617. del_btn: '删除按钮',
  9618. del_title: '删除区域',
  9619. next: '下一页',
  9620. next_title: '下' + p.pageSize + ' (→)',
  9621. prev: '上一页',
  9622. prev_title: '上' + p.pageSize + ' (←)',
  9623. first_title: '首页 (Shift + ←)',
  9624. last_title: '尾页 (Shift + →)',
  9625. get_all_btn: '获得全部 (↓)',
  9626. get_all_alt: '(按钮)',
  9627. close_btn: '关闭 (Tab键)',
  9628. close_alt: '(按钮)',
  9629. loading: '读取中...',
  9630. loading_alt: '(读取中)',
  9631. page_info: '第 page_num 页(共page_count页)',
  9632. select_ng: '请注意:请从列表中选择.',
  9633. select_ok: 'OK : 已经选择.',
  9634. not_found: '无查询结果',
  9635. ajax_error: '连接到服务器时发生错误!',
  9636. clear: '清除内容',
  9637. select_all: '选择当前页项目',
  9638. unselect_all: '取消选择当前页项目',
  9639. clear_all: '清除全部已选择项目',
  9640. max_selected: '最多只能选择 max_selected_limit 个项目'
  9641. };
  9642. break;
  9643. }
  9644. this.message = message;
  9645. };
  9646. /**
  9647. * Css classname defined
  9648. */
  9649. SelectPage.prototype.setCssClass = function () {
  9650. var css_class = {
  9651. container: 'sp_container',
  9652. container_open: 'sp_container_open',
  9653. re_area: 'sp_result_area',
  9654. result_open: 'sp_result_area_open',
  9655. control_box: 'sp_control_box',
  9656. //multiple select mode
  9657. element_box: 'sp_element_box',
  9658. navi: 'sp_navi',
  9659. //result list
  9660. results: 'sp_results',
  9661. re_off: 'sp_results_off',
  9662. select: 'sp_over',
  9663. select_ok: 'sp_select_ok',
  9664. select_ng: 'sp_select_ng',
  9665. selected: 'sp_selected',
  9666. input_off: 'sp_input_off',
  9667. message_box: 'sp_message_box',
  9668. disabled: 'sp_disabled',
  9669. button: 'sp_button',
  9670. btn_on: 'sp_btn_on',
  9671. btn_out: 'sp_btn_out',
  9672. input: 'sp_input',
  9673. clear_btn: 'sp_clear_btn',
  9674. align_right: 'sp_align_right'
  9675. };
  9676. this.css_class = css_class;
  9677. };
  9678. /**
  9679. * Plugin inner properties
  9680. */
  9681. SelectPage.prototype.setProp = function () {
  9682. this.prop = {
  9683. //input disabled status
  9684. disabled: false,
  9685. current_page: 1,
  9686. //total page
  9687. max_page: 1,
  9688. //ajax data loading status
  9689. is_loading: false,
  9690. xhr: false,
  9691. key_paging: false,
  9692. key_select: false,
  9693. //last selected item value
  9694. prev_value: '',
  9695. //last selected item text
  9696. selected_text: '',
  9697. last_input_time: undefined,
  9698. init_set: false
  9699. };
  9700. this.template = {
  9701. tag: {
  9702. content: '<li class="selected_tag" itemvalue="#item_value#">#item_text#<span class="tag_close"><i class="spfont sp-close"></i></span></li>',
  9703. textKey: '#item_text#',
  9704. valueKey: '#item_value#'
  9705. },
  9706. page: {
  9707. current: 'page_num',
  9708. total: 'page_count'
  9709. },
  9710. msg: {
  9711. maxSelectLimit: 'max_selected_limit'
  9712. }
  9713. };
  9714. };
  9715. /**
  9716. * Get the actual width/height of invisible DOM elements with jQuery.
  9717. * Source code come from dreamerslab/jquery.actual
  9718. * @param element
  9719. * @param method
  9720. * @returns {*}
  9721. */
  9722. SelectPage.prototype.elementRealSize = function (element, method) {
  9723. var defaults = {
  9724. absolute: false,
  9725. clone: false,
  9726. includeMargin: false,
  9727. display: 'block'
  9728. };
  9729. var configs = defaults, $target = element.eq(0), fix, restore, tmp = [], style = '', $hidden;
  9730. fix = function () {
  9731. // get all hidden parents
  9732. $hidden = $target.parents().addBack().filter(':hidden');
  9733. style += 'visibility: hidden !important; display: ' + configs.display + ' !important; ';
  9734. if (configs.absolute === true)
  9735. style += 'position: absolute !important;';
  9736. // save the origin style props
  9737. // set the hidden el css to be got the actual value later
  9738. $hidden.each(function () {
  9739. // Save original style. If no style was set, attr() returns undefined
  9740. var $this = $(this), thisStyle = $this.attr('style');
  9741. tmp.push(thisStyle);
  9742. // Retain as much of the original style as possible, if there is one
  9743. $this.attr('style', thisStyle ? thisStyle + ';' + style : style);
  9744. });
  9745. };
  9746. restore = function () {
  9747. // restore origin style values
  9748. $hidden.each(function (i) {
  9749. var $this = $(this), _tmp = tmp[ i ];
  9750. if (_tmp === undefined)
  9751. $this.removeAttr('style');
  9752. else
  9753. $this.attr('style', _tmp);
  9754. });
  9755. };
  9756. fix();
  9757. // get the actual value with user specific methed
  9758. // it can be 'width', 'height', 'outerWidth', 'innerWidth'... etc
  9759. // configs.includeMargin only works for 'outerWidth' and 'outerHeight'
  9760. var actual = /(outer)/.test(method) ?
  9761. $target[ method ](configs.includeMargin) :
  9762. $target[ method ]();
  9763. restore();
  9764. // IMPORTANT, this plugin only return the value of the first element
  9765. return actual;
  9766. };
  9767. /**
  9768. * Dom building
  9769. * @param {Object} combo_input - original input element
  9770. */
  9771. SelectPage.prototype.setElem = function (combo_input) {
  9772. // 1. build Dom object
  9773. var elem = {}, p = this.option, css = this.css_class, msg = this.message, input = $(combo_input);
  9774. var orgWidth = input.outerWidth();
  9775. // fix input width in hidden situation
  9776. if (orgWidth <= 0)
  9777. orgWidth = this.elementRealSize(input, 'outerWidth');
  9778. if (orgWidth < 150)
  9779. orgWidth = 150;
  9780. elem.combo_input = input.attr({'autocomplete': 'off'}).addClass(css.input).wrap('<div>');
  9781. if (p.selectOnly)
  9782. elem.combo_input.prop('readonly', true);
  9783. elem.container = elem.combo_input.parent().addClass(css.container);
  9784. if (elem.combo_input.prop('disabled')) {
  9785. if (p.multiple)
  9786. elem.container.addClass(css.disabled);
  9787. else
  9788. elem.combo_input.addClass(css.input_off);
  9789. }
  9790. // set outer box width
  9791. elem.container.width(orgWidth);
  9792. elem.button = $('<div>').addClass(css.button);
  9793. //drop down button
  9794. elem.dropdown = $('<span class="sp_caret"></span>');
  9795. //clear button 'X' in single mode
  9796. elem.clear_btn = $('<div>').html($('<i>').addClass('spfont sp-close')).addClass(css.clear_btn).attr('title', msg.clear);
  9797. if (!p.dropButton)
  9798. elem.clear_btn.addClass(css.align_right);
  9799. //main box in multiple mode
  9800. elem.element_box = $('<ul>').addClass(css.element_box);
  9801. if (p.multiple && p.multipleControlbar)
  9802. elem.control = $('<div>').addClass(css.control_box);
  9803. //result list box
  9804. elem.result_area = $('<div>').addClass(css.re_area);
  9805. //pagination bar
  9806. if (p.pagination)
  9807. elem.navi = $('<div>').addClass('sp_pagination').append('<ul>');
  9808. elem.results = $('<ul>').addClass(css.results);
  9809. var namePrefix = '_text',
  9810. input_id = elem.combo_input.attr('id') || elem.combo_input.attr('name'),
  9811. input_name = elem.combo_input.attr('name') || 'selectPage',
  9812. hidden_name = input_name,
  9813. hidden_id = input_id;
  9814. //switch the id and name attributes of input/hidden element
  9815. elem.hidden = $('<input type="hidden" class="sp_hidden" />').attr({
  9816. name: hidden_name,
  9817. id: hidden_id
  9818. }).val('');
  9819. elem.combo_input.attr({
  9820. name: input_name + namePrefix,
  9821. id: input_id + namePrefix
  9822. });
  9823. // 2. DOM element put
  9824. elem.container.append(elem.hidden);
  9825. if (p.dropButton) {
  9826. elem.container.append(elem.button)
  9827. elem.button.append(elem.dropdown);
  9828. }
  9829. $(document.body).append(elem.result_area);
  9830. elem.result_area.append(elem.results);
  9831. if (p.pagination)
  9832. elem.result_area.append(elem.navi);
  9833. //Multiple select mode
  9834. if (p.multiple) {
  9835. if (p.multipleControlbar) {
  9836. elem.control.append('<button type="button" class="btn btn-default sp_clear_all" ><i class="spfont sp-clear"></i></button>');
  9837. elem.control.append('<button type="button" class="btn btn-default sp_unselect_all" ><i class="spfont sp-unselect-all"></i></button>');
  9838. elem.control.append('<button type="button" class="btn btn-default sp_select_all" ><i class="spfont sp-select-all"></i></button>');
  9839. elem.control_text = $('<p>');
  9840. elem.control.append(elem.control_text);
  9841. elem.result_area.prepend(elem.control);
  9842. }
  9843. elem.container.addClass('sp_container_combo');
  9844. elem.combo_input.addClass('sp_combo_input').before(elem.element_box);
  9845. var li = $('<li>').addClass('input_box');
  9846. li.append(elem.combo_input);
  9847. elem.element_box.append(li);
  9848. if (elem.combo_input.attr('placeholder'))
  9849. elem.combo_input.attr('placeholder_bak', elem.combo_input.attr('placeholder'));
  9850. }
  9851. this.elem = elem;
  9852. };
  9853. /**
  9854. * Drop down button set to default
  9855. */
  9856. SelectPage.prototype.setButtonAttrDefault = function () {
  9857. /*
  9858. if (this.option.selectOnly) {
  9859. if ($(this.elem.combo_input).val() !== '') {
  9860. if ($(this.elem.hidden).val() !== '') {
  9861. //选择条件
  9862. $(this.elem.combo_input).attr('title', this.message.select_ok).removeClass(this.css_class.select_ng).addClass(this.css_class.select_ok);
  9863. } else {
  9864. //输入方式
  9865. $(this.elem.combo_input).attr('title', this.message.select_ng).removeClass(this.css_class.select_ok).addClass(this.css_class.select_ng);
  9866. }
  9867. } else {
  9868. $(this.elem.hidden).val('');
  9869. $(this.elem.combo_input).removeAttr('title').removeClass(this.css_class.select_ng);
  9870. }
  9871. }
  9872. */
  9873. //this.elem.button.attr('title', this.message.get_all_btn);
  9874. if (this.option.dropButton)
  9875. this.elem.button.attr('title', this.message.close_btn);
  9876. };
  9877. /**
  9878. * Set item need selected after init
  9879. * set selected item ways:
  9880. * <input value="key">
  9881. * <input data-init="key">
  9882. */
  9883. SelectPage.prototype.setInitRecord = function (refresh) {
  9884. var self = this, p = self.option, el = self.elem, key = '';
  9885. if ($.type(el.combo_input.data('init')) != 'undefined')
  9886. p.initRecord = String(el.combo_input.data('init'));
  9887. //data-init and value attribute can be init plugin selected item
  9888. //but, if set data-init and value attribute in the same time, plugin will choose data-init attribute first
  9889. if (!refresh && !p.initRecord && el.combo_input.val())
  9890. p.initRecord = el.combo_input.val();
  9891. el.combo_input.val('');
  9892. if (!refresh)
  9893. el.hidden.val(p.initRecord);
  9894. key = refresh && el.hidden.val() ? el.hidden.val() : p.initRecord;
  9895. if (key) {
  9896. if (typeof p.data === 'object') {
  9897. var data = new Array();
  9898. var keyarr = key.split(',');
  9899. $.each(keyarr, function (index, row) {
  9900. for (var i = 0; i < p.data.length; i++) {
  9901. if (p.data[i][p.keyField] == row) {
  9902. data.push(p.data[i]);
  9903. break;
  9904. }
  9905. }
  9906. });
  9907. if (!p.multiple && data.length > 1)
  9908. data = [data[0]];
  9909. self.afterInit(self, data);
  9910. } else {//ajax data source mode to init selected item
  9911. $.ajax({
  9912. dataType: 'json',
  9913. type: 'POST',
  9914. url: p.data,
  9915. data: {
  9916. searchTable: p.dbTable,
  9917. searchKey: p.keyField,
  9918. searchValue: key,
  9919. orderBy: p.orderBy,
  9920. showField: p.showField,
  9921. keyField: p.keyField,
  9922. keyValue: key,
  9923. searchField: p.searchField
  9924. },
  9925. success: function (json) {
  9926. var d = null;
  9927. if (p.eAjaxSuccess && $.isFunction(p.eAjaxSuccess))
  9928. d = p.eAjaxSuccess(json);
  9929. self.afterInit(self, d.list);
  9930. },
  9931. error: function (jqXHR, textStatus, errorThrown) {
  9932. self.ajaxErrorNotify(self, errorThrown);
  9933. }
  9934. });
  9935. }
  9936. }
  9937. };
  9938. /**
  9939. * Selected item set to plugin
  9940. * @param {Object} self
  9941. * @param {Object} data - selected item data
  9942. */
  9943. SelectPage.prototype.afterInit = function (self, data) {
  9944. if (!data || ($.isArray(data) && data.length === 0))
  9945. return;
  9946. if (!$.isArray(data))
  9947. data = [data];
  9948. var p = self.option, css = self.css_class;
  9949. var getText = function (row) {
  9950. var text = row[p.showField];
  9951. if (p.formatItem && $.isFunction(p.formatItem)) {
  9952. try {
  9953. text = p.formatItem(row);
  9954. } catch (e) {
  9955. }
  9956. }
  9957. return text;
  9958. };
  9959. if (p.multiple) {
  9960. self.prop.init_set = true;
  9961. self.clearAll(self);
  9962. $.each(data, function (i, row) {
  9963. var item = {text: getText(row), value: row[p.keyField]};
  9964. if (!self.isAlreadySelected(self, item))
  9965. self.addNewTag(self, item);
  9966. });
  9967. self.tagValuesSet(self);
  9968. self.inputResize(self);
  9969. console.log(self.elem.hidden.blur());
  9970. self.prop.init_set = false;
  9971. } else {
  9972. var row = data[0];
  9973. self.elem.combo_input.val(getText(row));
  9974. self.elem.hidden.val(row[p.keyField]);
  9975. self.prop.prev_value = getText(row);
  9976. self.prop.selected_text = getText(row);
  9977. if (p.selectOnly) {
  9978. self.elem.combo_input.attr('title', self.message.select_ok).removeClass(css.select_ng).addClass(css.select_ok);
  9979. }
  9980. self.putClearButton();
  9981. }
  9982. };
  9983. /**
  9984. * Drop down button event bind
  9985. */
  9986. SelectPage.prototype.eDropdownButton = function () {
  9987. var self = this;
  9988. if (self.option.dropButton) {
  9989. self.elem.button.mouseup(function (ev) {
  9990. ev.stopPropagation();
  9991. if (self.elem.result_area.is(':hidden') && !self.elem.combo_input.prop('disabled')) {
  9992. self.elem.combo_input.focus();
  9993. } else
  9994. self.hideResults(self);
  9995. });
  9996. }
  9997. };
  9998. /**
  9999. * Events bind
  10000. */
  10001. SelectPage.prototype.eInput = function () {
  10002. var self = this, p = self.option, el = self.elem, msg = self.message;
  10003. var showList = function () {
  10004. self.prop.page_move = false;
  10005. self.suggest(self);
  10006. self.setCssFocusedInput(self);
  10007. };
  10008. el.combo_input.keyup(function (e) {
  10009. self.processKey(self, e);
  10010. }).keydown(function (e) {
  10011. self.processControl(self, e);
  10012. }).focus(function (e) {
  10013. //When focus on input, show the result list
  10014. if (el.result_area.is(':hidden')) {
  10015. e.stopPropagation();
  10016. self.prop.first_show = true;
  10017. showList();
  10018. }
  10019. });
  10020. el.container.on('click.SelectPage', 'div.' + self.css_class.clear_btn, function (e) {
  10021. e.stopPropagation();
  10022. if (!self.disabled(self)) {
  10023. self.clearAll(self);
  10024. self.elem.hidden.change();
  10025. if (p.eClear && $.isFunction(p.eClear))
  10026. p.eClear(self);
  10027. }
  10028. });
  10029. el.result_area.on('mousedown.SelectPage', function (e) {
  10030. e.stopPropagation();
  10031. });
  10032. if (p.multiple) {
  10033. if (p.multipleControlbar) {
  10034. //Select all item of current page
  10035. el.control.find('.sp_select_all').on('click.SelectPage', function (e) {
  10036. self.selectAllLine(self);
  10037. }).hover(function () {
  10038. el.control_text.html(msg.select_all);
  10039. }, function () {
  10040. el.control_text.html('');
  10041. });
  10042. //Cancel select all item of current page
  10043. el.control.find('.sp_unselect_all').on('click.SelectPage', function (e) {
  10044. self.unSelectAllLine(self);
  10045. }).hover(function () {
  10046. el.control_text.html(msg.unselect_all);
  10047. }, function () {
  10048. el.control_text.html('');
  10049. });
  10050. //Clear all selected item
  10051. el.control.find('.sp_clear_all').on('click.SelectPage', function (e) {
  10052. self.clearAll(self);
  10053. }).hover(function () {
  10054. el.control_text.html(msg.clear_all);
  10055. }, function () {
  10056. el.control_text.html('');
  10057. });
  10058. }
  10059. el.element_box.on('click.SelectPage', function (e) {
  10060. var srcEl = e.target || e.srcElement;
  10061. if ($(srcEl).is('ul'))
  10062. el.combo_input.focus();
  10063. });
  10064. //Tag close
  10065. el.element_box.on('click.SelectPage', 'span.tag_close', function () {
  10066. var li = $(this).closest('li');
  10067. self.removeTag(self, li);
  10068. showList();
  10069. if (p.eTagRemove && $.isFunction(p.eTagRemove))
  10070. p.eTagRemove(1, self);
  10071. });
  10072. self.inputResize(self);
  10073. }
  10074. };
  10075. /**
  10076. * Out of plugin area click event handler
  10077. */
  10078. SelectPage.prototype.eWhole = function () {
  10079. var self = this, css = self.css_class;
  10080. var cleanContent = function (obj) {
  10081. obj.elem.combo_input.val('');
  10082. if (!obj.option.multiple)
  10083. obj.elem.hidden.val('');
  10084. obj.prop.selected_text = '';
  10085. };
  10086. //Out of plugin area
  10087. $(document.body).off('mousedown.selectPage').on('mousedown.selectPage', function (e) {
  10088. var ele = e.target || e.srcElement;
  10089. var sp = $(ele).closest('div.' + css.container);
  10090. //Open status result list
  10091. $('div.' + css.container + '.' + css.container_open).each(function () {
  10092. if (this == sp[0])
  10093. return;
  10094. var $this = $(this), d = $this.find('input.' + css.input).data(SelectPage.dataKey);
  10095. if (!d.elem.combo_input.val() && d.elem.hidden.val() && !d.option.multiple) {
  10096. d.prop.current_page = 1;//reset page to 1
  10097. cleanContent(d);
  10098. d.hideResults(d);
  10099. return true;
  10100. }
  10101. if (d.elem.results.find('li').not('.' + css.message_box).size()) {
  10102. if (d.option.autoFillResult) {
  10103. //have selected item, then hide result list
  10104. if (d.elem.hidden.val())
  10105. d.hideResults(d);
  10106. else if (d.elem.results.find('li.sp_over').size()) {
  10107. //no one selected and have highlight item, select the highlight item
  10108. d.selectCurrentLine(d, true);
  10109. } else if (d.option.autoSelectFirst) {
  10110. //no one selected, no one highlight, select the first item
  10111. d.nextLine(d);
  10112. d.selectCurrentLine(d, true);
  10113. } else
  10114. d.hideResults(d);
  10115. } else
  10116. d.hideResults(d);
  10117. } else {
  10118. //when no one item match, clear search keywords
  10119. if (d.option.noResultClean)
  10120. cleanContent(d);
  10121. else {
  10122. if (!d.option.multiple)
  10123. d.elem.hidden.val('');
  10124. }
  10125. d.hideResults(d);
  10126. }
  10127. });
  10128. });
  10129. };
  10130. /**
  10131. * Result list event bind
  10132. */
  10133. SelectPage.prototype.eResultList = function () {
  10134. var self = this, css = this.css_class;
  10135. self.elem.results.children('li').hover(function () {
  10136. if (self.prop.key_select) {
  10137. self.prop.key_select = false;
  10138. return;
  10139. }
  10140. if (!$(this).hasClass(css.selected) && !$(this).hasClass(css.message_box)) {
  10141. $(this).addClass(css.select);
  10142. self.setCssFocusedResults(self);
  10143. }
  10144. }, function () {
  10145. $(this).removeClass(css.select);
  10146. }).click(function (e) {
  10147. if (self.prop.key_select) {
  10148. self.prop.key_select = false;
  10149. return;
  10150. }
  10151. e.preventDefault();
  10152. e.stopPropagation();
  10153. if (!$(this).hasClass(css.selected))
  10154. self.selectCurrentLine(self, false);
  10155. });
  10156. };
  10157. /**
  10158. * Reposition result list when list beyond the visible area
  10159. */
  10160. SelectPage.prototype.eScroll = function () {
  10161. var self = this, css = this.css_class;
  10162. $(window).on('scroll.SelectPage', function (e) {
  10163. $('div.' + css.container + '.' + css.container_open).each(function () {
  10164. var $this = $(this), d = $this.find('input.' + css.input).data(SelectPage.dataKey),
  10165. offset = d.elem.result_area.offset(),
  10166. screenScrollTop = $(window).scrollTop(),
  10167. docHeight = $(document).height(),
  10168. viewHeight = $(window).height(),
  10169. listHeight = d.elem.result_area.outerHeight(),
  10170. listBottom = offset.top + listHeight,
  10171. hasOverflow = docHeight > viewHeight,
  10172. down = d.elem.result_area.hasClass('shadowDown');
  10173. if (hasOverflow) {
  10174. if (down) {//open down
  10175. if (listBottom > (viewHeight + screenScrollTop))
  10176. d.calcResultsSize(d);
  10177. } else {//open up
  10178. if (offset.top < screenScrollTop)
  10179. d.calcResultsSize(d);
  10180. }
  10181. }
  10182. });
  10183. });
  10184. };
  10185. /**
  10186. * Page bar button event bind
  10187. */
  10188. SelectPage.prototype.ePaging = function () {
  10189. var self = this;
  10190. if (!self.option.pagination)
  10191. return;
  10192. self.elem.navi.find('li.csFirstPage').off('click').on('click', function (ev) {
  10193. //$(self.elem.combo_input).focus();
  10194. ev.preventDefault();
  10195. self.firstPage(self);
  10196. });
  10197. self.elem.navi.find('li.csPreviousPage').off('click').on('click', function (ev) {
  10198. //$(self.elem.combo_input).focus();
  10199. ev.preventDefault();
  10200. self.prevPage(self);
  10201. });
  10202. self.elem.navi.find('li.csNextPage').off('click').on('click', function (ev) {
  10203. //$(self.elem.combo_input).focus();
  10204. ev.preventDefault();
  10205. self.nextPage(self);
  10206. });
  10207. self.elem.navi.find('li.csLastPage').off('click').on('click', function (ev) {
  10208. //$(self.elem.combo_input).focus();
  10209. ev.preventDefault();
  10210. self.lastPage(self);
  10211. });
  10212. };
  10213. /**
  10214. * Ajax request fail
  10215. * @param {Object} self
  10216. * @param {string} errorThrown
  10217. */
  10218. SelectPage.prototype.ajaxErrorNotify = function (self, errorThrown) {
  10219. self.showMessage(self.message.ajax_error);
  10220. };
  10221. /**
  10222. * Message box
  10223. * @param {Object} self
  10224. * @param msg {string} the text need to show
  10225. */
  10226. SelectPage.prototype.showMessage = function (self, msg) {
  10227. if (!msg)
  10228. return;
  10229. var msgLi = '<li class="' + self.css_class.message_box + '"><i class="spfont sp-warning"></i> ' + msg + '</li>';
  10230. self.elem.results.empty().append(msgLi).show();
  10231. self.calcResultsSize(self);
  10232. self.setOpenStatus(self, true);
  10233. self.elem.control.hide();
  10234. if (self.option.pagination)
  10235. self.elem.navi.hide();
  10236. };
  10237. /**
  10238. * @desc Scroll
  10239. * @param {Object} self
  10240. * @param {boolean} enforce
  10241. */
  10242. SelectPage.prototype.scrollWindow = function (self, enforce) {
  10243. var current_result = self.getCurrentLine(self),
  10244. target_top = (current_result && !enforce) ? current_result.offset().top : self.elem.container.offset().top,
  10245. target_size;
  10246. self.prop.size_li = self.elem.results.children('li:first').outerHeight();
  10247. target_size = self.prop.size_li;
  10248. var gap, client_height = $(window).height(),
  10249. scroll_top = $(window).scrollTop(),
  10250. scroll_bottom = scroll_top + client_height - target_size;
  10251. if (current_result.length) {
  10252. if (target_top < scroll_top || target_size > client_height) {
  10253. //scroll to top
  10254. gap = target_top - scroll_top;
  10255. } else if (target_top > scroll_bottom) {
  10256. //scroll down
  10257. gap = target_top - scroll_bottom;
  10258. } else
  10259. return; //do not scroll
  10260. } else if (target_top < scroll_top)
  10261. gap = target_top - scroll_top;
  10262. window.scrollBy(0, gap);
  10263. };
  10264. /**
  10265. * change css class by status
  10266. * @param self
  10267. * @param status {boolean} true: open, false: close
  10268. */
  10269. SelectPage.prototype.setOpenStatus = function (self, status) {
  10270. var el = self.elem, css = self.css_class;
  10271. if (status) {
  10272. el.container.addClass(css.container_open);
  10273. el.result_area.addClass(css.result_open);
  10274. } else {
  10275. el.container.removeClass(css.container_open);
  10276. el.result_area.removeClass(css.result_open);
  10277. }
  10278. };
  10279. /**
  10280. * input element in focus css class set
  10281. * @param {Object} self
  10282. */
  10283. SelectPage.prototype.setCssFocusedInput = function (self) {
  10284. //$(self.elem.results).addClass(self.css_class.re_off);
  10285. //$(self.elem.combo_input).removeClass(self.css_class.input_off);
  10286. };
  10287. /**
  10288. * set result list get focus and input element lost focus
  10289. * @param {Object} self
  10290. */
  10291. SelectPage.prototype.setCssFocusedResults = function (self) {
  10292. //$(self.elem.results).removeClass(self.css_class.re_off);
  10293. //$(self.elem.combo_input).addClass(self.css_class.input_off);
  10294. };
  10295. /**
  10296. * Quick search input keywords listener
  10297. * @param {Object} self
  10298. */
  10299. SelectPage.prototype.checkValue = function (self) {
  10300. var now_value = self.elem.combo_input.val();
  10301. if (now_value != self.prop.prev_value) {
  10302. self.prop.prev_value = now_value;
  10303. self.prop.first_show = false;
  10304. if (self.option.selectOnly)
  10305. self.setButtonAttrDefault();
  10306. if (!self.option.multiple && !now_value) {
  10307. self.elem.combo_input.val('');
  10308. self.elem.hidden.val('');
  10309. self.elem.clear_btn.remove();
  10310. }
  10311. self.suggest(self);
  10312. }
  10313. };
  10314. /**
  10315. * Input handle(regular input)
  10316. * @param {Object} self
  10317. * @param {Object} e - event object
  10318. */
  10319. SelectPage.prototype.processKey = function (self, e) {
  10320. if ($.inArray(e.keyCode, [37, 38, 39, 40, 27, 9, 13]) === -1) {
  10321. if (e.keyCode != 16)
  10322. self.setCssFocusedInput(self); // except Shift(16)
  10323. self.inputResize(self);
  10324. if ($.type(self.option.data) === 'string') {
  10325. self.prop.last_input_time = e.timeStamp;
  10326. setTimeout(function () {
  10327. if ((e.timeStamp - self.prop.last_input_time) === 0)
  10328. self.checkValue(self);
  10329. }, self.option.inputDelay * 1000);
  10330. } else {
  10331. self.checkValue(self);
  10332. }
  10333. }
  10334. }
  10335. /**
  10336. * Input handle(control key)
  10337. * @param {Object} self
  10338. * @param {Object} e - event object
  10339. */
  10340. SelectPage.prototype.processControl = function (self, e) {
  10341. if (($.inArray(e.keyCode, [37, 38, 39, 40, 27, 9]) > -1 && self.elem.result_area.is(':visible')) ||
  10342. ($.inArray(e.keyCode, [13, 9]) > -1 && self.getCurrentLine(self))) {
  10343. e.preventDefault();
  10344. e.stopPropagation();
  10345. e.cancelBubble = true;
  10346. e.returnValue = false;
  10347. switch (e.keyCode) {
  10348. case 37:// left
  10349. if (e.shiftKey)
  10350. self.firstPage(self);
  10351. else
  10352. self.prevPage(self);
  10353. break;
  10354. case 38:// up
  10355. self.prop.key_select = true;
  10356. self.prevLine(self);
  10357. break;
  10358. case 39:// right
  10359. if (e.shiftKey)
  10360. self.lastPage(self);
  10361. else
  10362. self.nextPage(self);
  10363. break;
  10364. case 40:// down
  10365. if (self.elem.results.children('li').length) {
  10366. self.prop.key_select = true;
  10367. self.nextLine(self);
  10368. } else
  10369. self.suggest(self);
  10370. break;
  10371. case 9:// tab
  10372. self.prop.key_paging = true;
  10373. self.selectCurrentLine(self, true);
  10374. //self.hideResults(self);
  10375. break;
  10376. case 13:// return
  10377. self.selectCurrentLine(self, true);
  10378. break;
  10379. case 27:// escape
  10380. self.prop.key_paging = true;
  10381. self.hideResults(self);
  10382. break;
  10383. }
  10384. }
  10385. };
  10386. /**
  10387. * Abort Ajax request
  10388. * @param {Object} self
  10389. */
  10390. SelectPage.prototype.abortAjax = function (self) {
  10391. if (self.prop.xhr) {
  10392. self.prop.xhr.abort();
  10393. self.prop.xhr = false;
  10394. }
  10395. };
  10396. /**
  10397. * Suggest result of search keywords
  10398. * @param {Object} self
  10399. */
  10400. SelectPage.prototype.suggest = function (self) {
  10401. var q_word, val = $.trim(self.elem.combo_input.val());
  10402. if (self.option.multiple)
  10403. q_word = val;
  10404. else {
  10405. if (val && val === self.prop.selected_text)
  10406. q_word = '';
  10407. else
  10408. q_word = val;
  10409. }
  10410. q_word = q_word.split(/[\s ]+/);
  10411. //Before show up result list callback
  10412. if (self.option.eOpen && $.isFunction(self.option.eOpen))
  10413. self.option.eOpen.call(self);
  10414. self.abortAjax(self);
  10415. //self.setLoading(self);
  10416. var which_page_num = self.prop.current_page || 1;
  10417. if (typeof self.option.data == 'object')
  10418. self.searchForJson(self, q_word, which_page_num);
  10419. else
  10420. self.searchForDb(self, q_word, which_page_num);
  10421. };
  10422. /**
  10423. * Loading
  10424. * @param {Object} self
  10425. */
  10426. SelectPage.prototype.setLoading = function (self) {
  10427. if (self.elem.results.html() === '') {
  10428. //self.calcResultsSize(self);
  10429. self.setOpenStatus(self, true);
  10430. }
  10431. };
  10432. /**
  10433. * Search for ajax
  10434. * @param {Object} self
  10435. * @param {Array} q_word - query keyword
  10436. * @param {number} which_page_num - target page number
  10437. */
  10438. SelectPage.prototype.searchForDb = function (self, q_word, which_page_num) {
  10439. var p = self.option;
  10440. if (!p.eAjaxSuccess || !$.isFunction(p.eAjaxSuccess))
  10441. self.hideResults(self);
  10442. var _paramsFunc = p.params, _params = {}, searchKey = p.searchField;
  10443. //when have new query keyword, then reset page number to 1.
  10444. if (q_word.length && q_word[0] && q_word[0] !== self.prop.prev_value)
  10445. which_page_num = 1;
  10446. var _orgParams = {
  10447. q_word: q_word,
  10448. pageNumber: which_page_num,
  10449. pageSize: p.pageSize,
  10450. andOr: p.andOr,
  10451. orderBy: p.orderBy,
  10452. searchTable: p.dbTable,
  10453. showField: self.option.showField,
  10454. keyField: self.option.keyField,
  10455. searchField: self.option.searchField
  10456. };
  10457. _orgParams[searchKey] = q_word[0];
  10458. if (_paramsFunc) {
  10459. var result = $.isFunction(_paramsFunc) ? _paramsFunc() : _paramsFunc;
  10460. if (result && $.isPlainObject(result)) {
  10461. _params = $.extend({}, _orgParams, result);
  10462. } else {
  10463. _params = _orgParams;
  10464. }
  10465. } else
  10466. _params = _orgParams;
  10467. self.prop.xhr = $.ajax({
  10468. dataType: 'json',
  10469. url: p.data,
  10470. type: 'POST',
  10471. data: _params,
  10472. success: function (returnData) {
  10473. if (!returnData || !$.isPlainObject(returnData)) {
  10474. self.hideResults(self);
  10475. self.ajaxErrorNotify(self, errorThrown);
  10476. return;
  10477. }
  10478. var data = {}, json = {};
  10479. try {
  10480. data = p.eAjaxSuccess(returnData);
  10481. json.originalResult = data.list;
  10482. json.cnt_whole = data.totalRow;
  10483. } catch (e) {
  10484. self.showMessage(self, self.message.ajax_error);
  10485. return;
  10486. }
  10487. if(self.elem.navi) {
  10488. $(self.elem.navi).toggleClass("hide", json.cnt_whole <= json.originalResult.length);
  10489. }
  10490. json.candidate = [];
  10491. json.keyField = [];
  10492. if (typeof json.originalResult != 'object') {
  10493. self.prop.xhr = null;
  10494. self.notFoundSearch(self);
  10495. return;
  10496. }
  10497. json.cnt_page = json.originalResult.length;
  10498. for (var i = 0; i < json.cnt_page; i++) {
  10499. for (var key in json.originalResult[i]) {
  10500. if (key == p.keyField) {
  10501. json.keyField.push(json.originalResult[i][key]);
  10502. }
  10503. if (key == p.showField) {
  10504. json.candidate.push(json.originalResult[i][key]);
  10505. }
  10506. }
  10507. }
  10508. self.prepareResults(self, json, q_word, which_page_num);
  10509. },
  10510. error: function (jqXHR, textStatus, errorThrown) {
  10511. if (textStatus != 'abort') {
  10512. self.hideResults(self);
  10513. self.ajaxErrorNotify(self, errorThrown);
  10514. }
  10515. },
  10516. complete: function () {
  10517. self.prop.xhr = null;
  10518. }
  10519. });
  10520. };
  10521. /**
  10522. * Search for json data source
  10523. * @param {Object} self
  10524. * @param {Array} q_word
  10525. * @param {number} which_page_num
  10526. */
  10527. SelectPage.prototype.searchForJson = function (self, q_word, which_page_num) {
  10528. var p = self.option, matched = [], esc_q = [], sorted = [], json = {}, i = 0, arr_reg = [];
  10529. //query keyword filter
  10530. do {
  10531. //'/\W/g'正则代表全部不是字母,数字,下划线,汉字的字符
  10532. //将非法字符进行转义
  10533. esc_q[i] = q_word[i].replace(/\W/g, '\\$&').toString();
  10534. arr_reg[i] = new RegExp(esc_q[i], 'gi');
  10535. i++;
  10536. } while (i < q_word.length);
  10537. // SELECT * FROM data WHERE field LIKE q_word;
  10538. for (i = 0; i < p.data.length; i++) {
  10539. var flag = false, row = p.data[i], itemText;
  10540. for (var j = 0; j < arr_reg.length; j++) {
  10541. itemText = row[p.searchField];
  10542. if (p.formatItem && $.isFunction(p.formatItem))
  10543. itemText = p.formatItem(row);
  10544. if (itemText.match(arr_reg[j])) {
  10545. flag = true;
  10546. if (p.andOr == 'OR')
  10547. break;
  10548. } else {
  10549. flag = false;
  10550. if (p.andOr == 'AND')
  10551. break;
  10552. }
  10553. }
  10554. if (flag)
  10555. matched.push(row);
  10556. }
  10557. // (CASE WHEN ...) then く order some column
  10558. var reg1 = new RegExp('^' + esc_q[0] + '$', 'gi'),
  10559. reg2 = new RegExp('^' + esc_q[0], 'gi'),
  10560. matched1 = [], matched2 = [], matched3 = [];
  10561. for (i = 0; i < matched.length; i++) {
  10562. var orderField = p.orderBy[0][0];
  10563. var orderValue = String(matched[i][orderField]);
  10564. if (orderValue.match(reg1)) {
  10565. matched1.push(matched[i]);
  10566. } else if (orderValue.match(reg2)) {
  10567. matched2.push(matched[i]);
  10568. } else {
  10569. matched3.push(matched[i]);
  10570. }
  10571. }
  10572. if (p.orderBy[0][1].match(/^asc$/i)) {
  10573. matched1 = self.sortAsc(self, matched1);
  10574. matched2 = self.sortAsc(self, matched2);
  10575. matched3 = self.sortAsc(self, matched3);
  10576. } else {
  10577. matched1 = self.sortDesc(self, matched1);
  10578. matched2 = self.sortDesc(self, matched2);
  10579. matched3 = self.sortDesc(self, matched3);
  10580. }
  10581. sorted = sorted.concat(matched1).concat(matched2).concat(matched3);
  10582. /*
  10583. if (sorted.length === undefined || sorted.length === 0 ) {
  10584. self.notFoundSearch(self);
  10585. return;
  10586. }
  10587. */
  10588. json.cnt_whole = sorted.length;
  10589. //page_move used to distinguish between init plugin or page moving
  10590. if (!self.prop.page_move) {
  10591. //only single mode can be used page number relocation
  10592. if (!p.multiple) {
  10593. //get selected item belong page number
  10594. var currentValue = self.elem.hidden.val();
  10595. if ($.type(currentValue) !== 'undefined' && $.trim(currentValue) !== '') {
  10596. var index = 0;
  10597. $.each(sorted, function (i, row) {
  10598. if (row[p.keyField] == currentValue) {
  10599. index = i + 1;
  10600. return false;
  10601. }
  10602. });
  10603. which_page_num = Math.ceil(index / p.pageSize);
  10604. if (which_page_num < 1)
  10605. which_page_num = 1;
  10606. self.prop.current_page = which_page_num;
  10607. }
  10608. }
  10609. } else {
  10610. //set page number to 1 when result number less then page size
  10611. if (sorted.length <= ((which_page_num - 1) * p.pageSize)) {
  10612. which_page_num = 1;
  10613. self.prop.current_page = 1;
  10614. }
  10615. }
  10616. //LIMIT xx OFFSET xx
  10617. var start = (which_page_num - 1) * p.pageSize, end = start + p.pageSize;
  10618. //save original data
  10619. json.originalResult = [];
  10620. //after data filter handle
  10621. for (i = start; i < end; i++) {
  10622. if (sorted[i] === undefined)
  10623. break;
  10624. json.originalResult.push(sorted[i]);
  10625. for (var key in sorted[i]) {
  10626. if (key == p.keyField) {
  10627. if (json.keyField === undefined)
  10628. json.keyField = [];
  10629. json.keyField.push(sorted[i][key]);
  10630. }
  10631. if (key == p.showField) {
  10632. if (json.candidate === undefined)
  10633. json.candidate = [];
  10634. json.candidate.push(sorted[i][key]);
  10635. }
  10636. }
  10637. }
  10638. if (json.candidate === undefined)
  10639. json.candidate = [];
  10640. json.cnt_page = json.candidate.length;
  10641. self.prepareResults(self, json, q_word, which_page_num);
  10642. };
  10643. /**
  10644. * Set order asc
  10645. * @param {Object} self
  10646. * @param {Array} arr - result array
  10647. */
  10648. SelectPage.prototype.sortAsc = function (self, arr) {
  10649. arr.sort(function (a, b) {
  10650. var valA = a[self.option.orderBy[0][0]], valB = b[self.option.orderBy[0][0]];
  10651. return $.type(valA) === 'number' ? valA - valB : String(valA).localeCompare(String(valB));
  10652. });
  10653. return arr;
  10654. };
  10655. /**
  10656. * Set order desc
  10657. * @param {Object} self
  10658. * @param {Array} arr - result array
  10659. */
  10660. SelectPage.prototype.sortDesc = function (self, arr) {
  10661. arr.sort(function (a, b) {
  10662. var valA = a[self.option.orderBy[0][0]], valB = b[self.option.orderBy[0][0]];
  10663. return $.type(valA) === 'number' ? valB - valA : String(valB).localeCompare(String(valA));
  10664. });
  10665. return arr;
  10666. };
  10667. /**
  10668. * Not result found handle
  10669. * @param {Object} self
  10670. */
  10671. SelectPage.prototype.notFoundSearch = function (self) {
  10672. self.elem.results.empty();
  10673. self.calcResultsSize(self);
  10674. self.setOpenStatus(self, true);
  10675. self.setCssFocusedInput(self);
  10676. };
  10677. /**
  10678. * Prepare data to show
  10679. * @param {Object} self
  10680. * @param {Object} json - data result
  10681. * @param {Array} q_word - query keyword
  10682. * @param {number} which_page_num - target page number
  10683. */
  10684. SelectPage.prototype.prepareResults = function (self, json, q_word, which_page_num) {
  10685. if (self.option.pagination)
  10686. self.setNavi(self, json.cnt_whole, json.cnt_page, which_page_num);
  10687. if (!json.keyField)
  10688. json.keyField = false;
  10689. if (self.option.selectOnly && json.candidate.length === 1 && json.candidate[0] == q_word[0]) {
  10690. self.elem.hidden.val(json.keyField[0]);
  10691. this.setButtonAttrDefault();
  10692. }
  10693. var is_query = false;
  10694. if (q_word && q_word.length && q_word[0])
  10695. is_query = true;
  10696. self.displayResults(self, json, is_query);
  10697. };
  10698. /**
  10699. * Build page bar
  10700. * @param {Object} self
  10701. * @param {number} cnt_whole - total record count
  10702. * @param {number} cnt_page
  10703. * @param {number} page_num - current page number
  10704. */
  10705. SelectPage.prototype.setNavi = function (self, cnt_whole, cnt_page, page_num) {
  10706. var msg = self.message;
  10707. /**
  10708. * build pagination bar
  10709. */
  10710. var buildPageNav = function (self, pagebar, page_num, last_page) {
  10711. var updatePageInfo = function () {
  10712. var pageInfo = msg.page_info;
  10713. return pageInfo.replace(self.template.page.current, page_num).replace(self.template.page.total, last_page);
  10714. };
  10715. if (pagebar.find('li').size() === 0) {
  10716. pagebar.hide().empty();
  10717. var iconFist = 'spfont sp-first',
  10718. iconPrev = 'spfont sp-previous',
  10719. iconNext = 'spfont sp-next',
  10720. iconLast = 'spfont sp-last';
  10721. pagebar.append('<li class="csFirstPage" title="' + msg.first_title + '" ><a href="javascript:void(0);"> <i class="' + iconFist + '"></i> </a></li>');
  10722. pagebar.append('<li class="csPreviousPage" title="' + msg.prev_title + '" ><a href="javascript:void(0);"><i class="' + iconPrev + '"></i></a></li>');
  10723. //pagination information
  10724. pagebar.append('<li class="pageInfoBox"><a href="javascript:void(0);"> ' + updatePageInfo() + ' </a></li>');
  10725. pagebar.append('<li class="csNextPage" title="' + msg.next_title + '" ><a href="javascript:void(0);"><i class="' + iconNext + '"></i></a></li>');
  10726. pagebar.append('<li class="csLastPage" title="' + msg.last_title + '" ><a href="javascript:void(0);"> <i class="' + iconLast + '"></i> </a></li>');
  10727. pagebar.show();
  10728. } else {
  10729. pagebar.find('li.pageInfoBox a').html(updatePageInfo());
  10730. }
  10731. };
  10732. var pagebar = self.elem.navi.find('ul'),
  10733. last_page = Math.ceil(cnt_whole / self.option.pageSize); //calculate total page
  10734. if (last_page === 0)
  10735. page_num = 0;
  10736. else {
  10737. if (last_page < page_num)
  10738. page_num = last_page;
  10739. else if (page_num === 0)
  10740. page_num = 1;
  10741. }
  10742. self.prop.current_page = page_num;//update current page number
  10743. self.prop.max_page = last_page;//update page count
  10744. buildPageNav(self, pagebar, page_num, last_page);
  10745. //update paging status
  10746. var dClass = 'disabled',
  10747. first = pagebar.find('li.csFirstPage'),
  10748. previous = pagebar.find('li.csPreviousPage'),
  10749. next = pagebar.find('li.csNextPage'),
  10750. last = pagebar.find('li.csLastPage');
  10751. //first and previous
  10752. if (page_num === 1 || page_num === 0) {
  10753. if (!first.hasClass(dClass))
  10754. first.addClass(dClass);
  10755. if (!previous.hasClass(dClass))
  10756. previous.addClass(dClass);
  10757. } else {
  10758. if (first.hasClass(dClass))
  10759. first.removeClass(dClass);
  10760. if (previous.hasClass(dClass))
  10761. previous.removeClass(dClass);
  10762. }
  10763. //next and last
  10764. if (page_num === last_page || last_page === 0) {
  10765. if (!next.hasClass(dClass))
  10766. next.addClass(dClass);
  10767. if (!last.hasClass(dClass))
  10768. last.addClass(dClass);
  10769. } else {
  10770. if (next.hasClass(dClass))
  10771. next.removeClass(dClass);
  10772. if (last.hasClass(dClass))
  10773. last.removeClass(dClass);
  10774. }
  10775. if (last_page > 1)
  10776. self.ePaging(); //pagination event bind
  10777. };
  10778. /**
  10779. * Render result list
  10780. * @param {Object} self
  10781. * @param {Object} json - result data
  10782. * @param {boolean} is_query - used to different from search to open and just click to open
  10783. */
  10784. SelectPage.prototype.displayResults = function (self, json, is_query) {
  10785. var p = self.option, el = self.elem;
  10786. el.results.hide().empty();
  10787. if (p.multiple && $.type(p.maxSelectLimit) === 'number' && p.maxSelectLimit > 0) {
  10788. var selectedSize = el.element_box.find('li.selected_tag').size();
  10789. if (selectedSize > 0 && selectedSize >= p.maxSelectLimit) {
  10790. var msg = self.message.max_selected;
  10791. self.showMessage(self, msg.replace(self.template.msg.maxSelectLimit, p.maxSelectLimit));
  10792. return;
  10793. }
  10794. }
  10795. if (json.candidate.length) {
  10796. var arr_candidate = json.candidate,
  10797. arr_primary_key = json.keyField,
  10798. keystr = el.hidden.val(),
  10799. keyArr = keystr ? keystr.split(',') : new Array(),
  10800. itemText = '';
  10801. for (var i = 0; i < arr_candidate.length; i++) {
  10802. if (p.formatItem && $.isFunction(p.formatItem)) {
  10803. try {
  10804. itemText = p.formatItem(json.originalResult[i]);
  10805. } catch (e) {
  10806. console.error('formatItem内容格式化函数内容设置不正确!');
  10807. itemText = arr_candidate[i];
  10808. }
  10809. } else
  10810. itemText = arr_candidate[i];
  10811. var list = $('<li>').html(itemText).attr({
  10812. pkey: arr_primary_key[i]
  10813. });
  10814. if (!p.formatItem)
  10815. list.attr('title', itemText);
  10816. //Set selected item highlight
  10817. if ($.inArray(arr_primary_key[i].toString(), keyArr) !== -1) {
  10818. list.addClass(self.css_class.selected);
  10819. }
  10820. //cache item data
  10821. list.data('dataObj', json.originalResult[i]);
  10822. el.results.append(list);
  10823. }
  10824. } else {
  10825. var li = '<li class="' + self.css_class.message_box + '"><i class="spfont sp-warning"></i> ' +
  10826. self.message.not_found + '</li>';
  10827. el.results.append(li);
  10828. }
  10829. el.results.show();
  10830. if (p.multiple && p.multipleControlbar)
  10831. el.control.show();
  10832. if (p.pagination)
  10833. el.navi.show();
  10834. self.calcResultsSize(self);
  10835. self.setOpenStatus(self, true);
  10836. //Result item event bind
  10837. self.eResultList();
  10838. //scrolling listen
  10839. self.eScroll();
  10840. //auto highlight first item in search, have result and set autoSelectFirst to true situation
  10841. if (is_query && json.candidate.length && p.autoSelectFirst)
  10842. self.nextLine(self);
  10843. };
  10844. /**
  10845. * Calculate result list size and position
  10846. * @param {Object} self
  10847. */
  10848. SelectPage.prototype.calcResultsSize = function (self) {
  10849. var p = self.option, el = self.elem;
  10850. var rePosition = function () {
  10851. if (el.container.css('position') === 'static') {
  10852. // position: static
  10853. var offset = el.combo_input.offset();
  10854. el.result_area.css({
  10855. top: offset.top + el.combo_input.outerHeight() + 'px',
  10856. left: offset.left + 'px'
  10857. });
  10858. } else {
  10859. if (!p.pagination) {
  10860. var itemHeight = el.results.find('li:first').outerHeight(true),
  10861. listHeight = itemHeight * p.listSize;
  10862. el.results.css({
  10863. 'max-height': listHeight,
  10864. 'overflow-y': 'auto'
  10865. });
  10866. }
  10867. //handle result list show up side(left, right, up or down)
  10868. var docWidth = $(document).width(),
  10869. docHeight = $(document).height(), //the document full height
  10870. viewHeight = $(window).height(), //browser visible area height
  10871. offset = el.container.offset(),
  10872. screenScrollTop = $(window).scrollTop(),
  10873. listWidth = el.result_area.outerWidth(),
  10874. //result list height
  10875. listHeight = el.result_area.outerHeight(),
  10876. //default left used input element left
  10877. defaultLeft = offset.left, //p.multiple ? -1 : 0;
  10878. //input element height
  10879. inputHeight = el.container.outerHeight(),
  10880. left = (offset.left + listWidth) > docWidth ?
  10881. defaultLeft - (listWidth - el.container.outerWidth()) :
  10882. defaultLeft,
  10883. //the actual top coordinate of input element(outer div)
  10884. screenTop = offset.top, //$(el.container).scrollTop();//offset.top - screenScrollTop;
  10885. top = 0, dist = 5, //set distance between input element and result list
  10886. //the actual top coordinate of result list
  10887. listBottom = screenTop + inputHeight + listHeight + dist,
  10888. hasOverflow = docHeight > viewHeight;
  10889. if ((screenTop - screenScrollTop - dist > listHeight) &&
  10890. (hasOverflow && listBottom > (viewHeight + screenScrollTop)) ||
  10891. (!hasOverflow && listBottom > viewHeight)) {
  10892. //open up
  10893. top = offset.top - listHeight - dist;
  10894. el.result_area.removeClass('shadowUp shadowDown').addClass('shadowUp');
  10895. } else {
  10896. //open down
  10897. top = offset.top + (p.multiple ? el.container.outerHeight() : inputHeight);
  10898. el.result_area.removeClass('shadowUp shadowDown').addClass('shadowDown');
  10899. top += dist;
  10900. }
  10901. return {
  10902. top: top + 'px', left: left + 'px'
  10903. };
  10904. }
  10905. };
  10906. if (el.result_area.is(':visible')) {
  10907. el.result_area.css(rePosition());
  10908. } else {
  10909. var pss = rePosition();
  10910. el.result_area.css(pss).show(1, function () {
  10911. var repss = rePosition();
  10912. if (pss.top !== repss.top || pss.left !== repss.left)
  10913. el.result_area.css(repss);
  10914. });
  10915. }
  10916. };
  10917. /**
  10918. * hide result list
  10919. * @param {Object} self
  10920. */
  10921. SelectPage.prototype.hideResults = function (self) {
  10922. if (self.prop.key_paging) {
  10923. self.scrollWindow(self, true);
  10924. self.prop.key_paging = false;
  10925. }
  10926. self.setCssFocusedInput(self);
  10927. if (self.option.autoFillResult) {
  10928. //self.selectCurrentLine(self, true);
  10929. }
  10930. self.elem.results.empty();
  10931. self.elem.result_area.hide();
  10932. self.setOpenStatus(self, false);
  10933. //unbind window scroll listen
  10934. $(window).off('scroll.SelectPage');
  10935. self.abortAjax(self);
  10936. self.setButtonAttrDefault();
  10937. };
  10938. /**
  10939. * set plugin to disabled / enabled
  10940. * @param self
  10941. * @param disabled
  10942. */
  10943. SelectPage.prototype.disabled = function (self, disabled) {
  10944. var p = self.option, el = self.elem;
  10945. if ($.type(disabled) === 'undefined')
  10946. return el.combo_input.prop('disabled');
  10947. if ($.type(disabled) === 'boolean') {
  10948. el.combo_input.prop('disabled', disabled);
  10949. if (disabled)
  10950. el.container.addClass(self.css_class.disabled);
  10951. else
  10952. el.container.removeClass(self.css_class.disabled);
  10953. }
  10954. };
  10955. /**
  10956. * Go fist page
  10957. * @param {Object} self
  10958. */
  10959. SelectPage.prototype.firstPage = function (self) {
  10960. if (self.prop.current_page > 1) {
  10961. self.prop.current_page = 1;
  10962. self.prop.page_move = true;
  10963. self.suggest(self);
  10964. }
  10965. };
  10966. /**
  10967. * Go previous page
  10968. * @param {Object} self
  10969. */
  10970. SelectPage.prototype.prevPage = function (self) {
  10971. if (self.prop.current_page > 1) {
  10972. self.prop.current_page--;
  10973. self.prop.page_move = true;
  10974. self.suggest(self);
  10975. }
  10976. };
  10977. /**
  10978. * Go next page
  10979. * @param {Object} self
  10980. */
  10981. SelectPage.prototype.nextPage = function (self) {
  10982. if (self.prop.current_page < self.prop.max_page) {
  10983. self.prop.current_page++;
  10984. self.prop.page_move = true;
  10985. self.suggest(self);
  10986. }
  10987. };
  10988. /**
  10989. * Go last page
  10990. * @param {Object} self
  10991. */
  10992. SelectPage.prototype.lastPage = function (self) {
  10993. if (self.prop.current_page < self.prop.max_page) {
  10994. self.prop.current_page = self.prop.max_page;
  10995. self.prop.page_move = true;
  10996. self.suggest(self);
  10997. }
  10998. };
  10999. /**
  11000. * do something after select/unSelect action
  11001. * @param {Object} self
  11002. */
  11003. SelectPage.prototype.afterAction = function (self) {
  11004. self.inputResize(self);
  11005. self.elem.combo_input.change();
  11006. self.setCssFocusedInput(self);
  11007. if (self.prop.init_set)
  11008. return;
  11009. if (self.option.multiple) {
  11010. if (self.option.selectToCloseList) {
  11011. self.hideResults(self);
  11012. self.elem.combo_input.blur();
  11013. } else {
  11014. self.suggest(self);
  11015. self.elem.combo_input.focus();
  11016. }
  11017. } else {
  11018. self.hideResults(self);
  11019. self.elem.combo_input.blur();
  11020. }
  11021. };
  11022. /**
  11023. * Select current list item
  11024. * @param {Object} self
  11025. * @param {boolean} is_enter_key
  11026. */
  11027. SelectPage.prototype.selectCurrentLine = function (self, is_enter_key) {
  11028. self.scrollWindow(self, true);
  11029. var p = self.option, current = self.getCurrentLine(self);
  11030. if (current) {
  11031. if (!p.multiple) {
  11032. self.elem.combo_input.val(current.text());
  11033. self.elem.hidden.val(current.attr('pkey'));
  11034. } else {
  11035. //build tags in multiple selection mode
  11036. self.elem.combo_input.val('');
  11037. var item = {text: current.text(), value: current.attr('pkey')};
  11038. if (!self.isAlreadySelected(self, item)) {
  11039. self.addNewTag(self, item);
  11040. self.tagValuesSet(self);
  11041. }
  11042. }
  11043. if (p.selectOnly)
  11044. self.setButtonAttrDefault();
  11045. //Select item callback
  11046. if (p.eSelect && $.isFunction(p.eSelect))
  11047. p.eSelect(current.data('dataObj'), self);
  11048. self.prop.prev_value = self.elem.combo_input.val();
  11049. self.prop.selected_text = self.elem.combo_input.val();
  11050. self.putClearButton();
  11051. }
  11052. self.afterAction(self);
  11053. };
  11054. /**
  11055. * Show clear button when item selected in single selection mode
  11056. */
  11057. SelectPage.prototype.putClearButton = function () {
  11058. if (!this.option.multiple && !this.elem.combo_input.prop('disabled'))
  11059. this.elem.container.append(this.elem.clear_btn);
  11060. };
  11061. /**
  11062. * Select all list item
  11063. * @param {Object} self
  11064. */
  11065. SelectPage.prototype.selectAllLine = function (self) {
  11066. var p = self.option, jsonarr = new Array();
  11067. self.elem.results.find('li').each(function (i, row) {
  11068. var $row = $(row);
  11069. var item = {text: $row.text(), value: $row.attr('pkey')};
  11070. if (!self.isAlreadySelected(self, item)) {
  11071. self.addNewTag(self, item);
  11072. self.tagValuesSet(self);
  11073. }
  11074. jsonarr.push($row.data('dataObj'));
  11075. //limited max selected items
  11076. if ($.type(p.maxSelectLimit) === 'number' &&
  11077. p.maxSelectLimit > 0 &&
  11078. p.maxSelectLimit === self.elem.element_box.find('li.selected_tag').size()) {
  11079. return false;
  11080. }
  11081. });
  11082. if (p.eSelect && $.isFunction(p.eSelect))
  11083. p.eSelect(jsonarr, self);
  11084. self.afterAction(self);
  11085. };
  11086. /**
  11087. * Cancel select all item in current page
  11088. * @param {Object} self
  11089. */
  11090. SelectPage.prototype.unSelectAllLine = function (self) {
  11091. var p = self.option, size = self.elem.results.find('li').size();
  11092. self.elem.results.find('li').each(function (i, row) {
  11093. var key = $(row).attr('pkey');
  11094. var tag = self.elem.element_box.find('li.selected_tag[itemvalue="' + key + '"]');
  11095. self.removeTag(self, tag);
  11096. });
  11097. self.afterAction(self);
  11098. if (p.eTagRemove && $.isFunction(p.eTagRemove))
  11099. p.eTagRemove(size, self);
  11100. };
  11101. /**
  11102. * Clear all selected items
  11103. * @param {Object} self
  11104. */
  11105. SelectPage.prototype.clearAll = function (self) {
  11106. var p = self.option, size = 0;
  11107. if (p.multiple) {
  11108. size = self.elem.element_box.find('li.selected_tag').size();
  11109. self.elem.element_box.find('li.selected_tag').remove();
  11110. }
  11111. self.reset(self);
  11112. self.afterAction(self);
  11113. if (!p.multiple)
  11114. self.elem.clear_btn.remove();
  11115. if (p.multiple) {
  11116. if (p.eTagRemove && $.isFunction(p.eTagRemove))
  11117. p.eTagRemove(size, self);
  11118. }
  11119. };
  11120. /**
  11121. * reset
  11122. */
  11123. SelectPage.prototype.reset = function (self) {
  11124. self.elem.combo_input.val('');
  11125. self.elem.hidden.val('');
  11126. self.prop.prev_value = '';
  11127. self.prop.selected_text = '';
  11128. self.prop.current_page = 1;
  11129. };
  11130. /**
  11131. * Get current highlight item
  11132. * @param {Object} self
  11133. */
  11134. SelectPage.prototype.getCurrentLine = function (self) {
  11135. if (self.elem.result_area.is(':hidden'))
  11136. return false;
  11137. var obj = self.elem.results.find('li.' + self.css_class.select);
  11138. if (obj.size())
  11139. return obj;
  11140. else
  11141. return false;
  11142. };
  11143. /**
  11144. * Check the result item is already selected or not
  11145. * @param {Object} self
  11146. * @param {Object} item - item info
  11147. */
  11148. SelectPage.prototype.isAlreadySelected = function (self, item) {
  11149. var isExist = false;
  11150. if (item.value) {
  11151. var keys = self.elem.hidden.val();
  11152. if (keys) {
  11153. var karr = keys.split(',');
  11154. if (karr && karr.length && $.inArray(item.value, karr) != -1)
  11155. isExist = true;
  11156. }
  11157. }
  11158. return isExist;
  11159. };
  11160. /**
  11161. * Add a new tag in multiple selection mode
  11162. * @param {Object} self
  11163. * @param {Object} item
  11164. */
  11165. SelectPage.prototype.addNewTag = function (self, item) {
  11166. if (!self.option.multiple || !item)
  11167. return;
  11168. var tmp = self.template.tag.content, tag;
  11169. tmp = tmp.replace(self.template.tag.textKey, item.text);
  11170. tmp = tmp.replace(self.template.tag.valueKey, item.value);
  11171. tag = $(tmp);
  11172. if (self.elem.combo_input.prop('disabled'))
  11173. tag.find('span.tag_close').hide();
  11174. self.elem.combo_input.closest('li').before(tag);
  11175. };
  11176. /**
  11177. * Remove a tag in multiple selection mode
  11178. * @param {Object} self
  11179. * @param {Object} item
  11180. */
  11181. SelectPage.prototype.removeTag = function (self, item) {
  11182. var key = $(item).attr('itemvalue');
  11183. var keys = self.elem.hidden.val();
  11184. if ($.type(key) != 'undefined' && keys) {
  11185. var keyarr = keys.split(','),
  11186. index = $.inArray(key.toString(), keyarr);
  11187. if (index != -1) {
  11188. keyarr.splice(index, 1);
  11189. self.elem.hidden.val(keyarr.toString());
  11190. }
  11191. }
  11192. $(item).remove();
  11193. self.afterAction(self);
  11194. };
  11195. /**
  11196. * Selected item value(keyField) put in to hidden element
  11197. * @param {Object} self
  11198. */
  11199. SelectPage.prototype.tagValuesSet = function (self) {
  11200. if (!self.option.multiple)
  11201. return;
  11202. var tags = self.elem.element_box.find('li.selected_tag');
  11203. if (tags && tags.size()) {
  11204. var result = new Array();
  11205. $.each(tags, function (i, li) {
  11206. var v = $(li).attr('itemvalue');
  11207. if ($.type(v) !== 'undefined')
  11208. result.push(v);
  11209. });
  11210. if (result.length) {
  11211. self.elem.hidden.val(result.join(','));
  11212. }
  11213. }
  11214. };
  11215. /**
  11216. * auto resize input element width in multiple select mode
  11217. * @param {Object} self
  11218. */
  11219. SelectPage.prototype.inputResize = function (self) {
  11220. if (!self.option.multiple)
  11221. return;
  11222. var width = '',
  11223. inputLi = self.elem.combo_input.closest('li');
  11224. var setDefaultSize = function (self, inputLi) {
  11225. inputLi.removeClass('full_width');
  11226. var minimumWidth = self.elem.combo_input.val().length + 1,
  11227. width = (minimumWidth * 0.75) + 'em';
  11228. self.elem.combo_input.css('width', width).removeAttr('placeholder');
  11229. };
  11230. if (self.elem.element_box.find('li.selected_tag').size() === 0) {
  11231. if (self.elem.combo_input.attr('placeholder_bak')) {
  11232. if (!inputLi.hasClass('full_width'))
  11233. inputLi.addClass('full_width');
  11234. self.elem.combo_input.attr('placeholder', self.elem.combo_input.attr('placeholder_bak')).removeAttr('style');
  11235. } else
  11236. setDefaultSize(self, inputLi);
  11237. } else
  11238. setDefaultSize(self, inputLi);
  11239. };
  11240. /**
  11241. * Move to next line
  11242. * @param {Object} self
  11243. */
  11244. SelectPage.prototype.nextLine = function (self) {
  11245. var obj = self.getCurrentLine(self), idx;
  11246. if (!obj)
  11247. idx = -1;
  11248. else {
  11249. idx = self.elem.results.children('li').index(obj);
  11250. obj.removeClass(self.css_class.select);
  11251. }
  11252. idx++;
  11253. if (idx < self.elem.results.children('li').length) {
  11254. var next = self.elem.results.children('li').eq(idx);
  11255. next.addClass(self.css_class.select);
  11256. self.setCssFocusedResults(self);
  11257. } else
  11258. self.setCssFocusedInput(self);
  11259. self.scrollWindow(self, false);
  11260. };
  11261. /**
  11262. * Move to previous line
  11263. * @param {Object} self
  11264. */
  11265. SelectPage.prototype.prevLine = function (self) {
  11266. var obj = self.getCurrentLine(self), idx;
  11267. if (!obj)
  11268. idx = self.elem.results.children('li').length;
  11269. else {
  11270. idx = self.elem.results.children('li').index(obj);
  11271. obj.removeClass(self.css_class.select);
  11272. }
  11273. idx--;
  11274. if (idx > -1) {
  11275. var prev = self.elem.results.children('li').eq(idx);
  11276. prev.addClass(self.css_class.select);
  11277. self.setCssFocusedResults(self);
  11278. } else
  11279. self.setCssFocusedInput(self);
  11280. self.scrollWindow(self, false);
  11281. };
  11282. /**
  11283. * SelectPage plugin definition
  11284. * @global
  11285. * @param option {Object} init plugin option
  11286. */
  11287. function Plugin(option) {
  11288. return this.each(function () {
  11289. var $this = $(this),
  11290. data = $this.data(SelectPage.dataKey),
  11291. params = $.extend({}, defaults, $this.data(), data && data.option, typeof option === 'object' && option);
  11292. if (!data)
  11293. $this.data(SelectPage.dataKey, (data = new SelectPage(this, params)));
  11294. });
  11295. }
  11296. /**
  11297. * Get plugin object
  11298. * @param {object} obj
  11299. * @returns
  11300. */
  11301. function getPlugin(obj) {
  11302. return $(obj).closest('div.sp_container').find('input.sp_input');
  11303. }
  11304. /**
  11305. * Clear all selected item
  11306. */
  11307. function ClearSelected() {
  11308. return this.each(function () {
  11309. var $this = getPlugin(this),
  11310. data = $this.data(SelectPage.dataKey);
  11311. if (data) {
  11312. data.prop.init_set = true;
  11313. data.clearAll(data);
  11314. data.prop.init_set = false;
  11315. }
  11316. });
  11317. }
  11318. /**
  11319. * Refresh result list
  11320. * use case:
  11321. * 1.use $(obj).val('xxx') to modify selectpage selected item key
  11322. * 2.refresh selected item show content/tag text
  11323. */
  11324. function SelectedRefresh() {
  11325. return this.each(function () {
  11326. var $this = getPlugin(this),
  11327. data = $this.data(SelectPage.dataKey);
  11328. if (data && data.elem.hidden.val())
  11329. data.setInitRecord(true);
  11330. });
  11331. }
  11332. /**
  11333. * Modify plugin datasource, only work on json datasource mode
  11334. * @param {array} data - new datasource
  11335. * @example
  11336. * [{name:'aa',sex:1},{name:'bb',sex:0},{...}]
  11337. */
  11338. function ModifyDataSource(data) {
  11339. return this.each(function () {
  11340. if (data && $.isArray(data)) {
  11341. var $this = getPlugin(this),
  11342. plugin = $this.data(SelectPage.dataKey);
  11343. if (plugin) {
  11344. plugin.clearAll(plugin);
  11345. plugin.option.data = data;
  11346. }
  11347. }
  11348. });
  11349. }
  11350. /**
  11351. * Get plugin disabled status or Modify plugin disabled status
  11352. * @param disabled {boolean} set disabled status
  11353. */
  11354. function PluginDisabled(disabled) {
  11355. var status = false;
  11356. this.each(function () {
  11357. var $this = getPlugin(this),
  11358. plugin = $this.data(SelectPage.dataKey);
  11359. if (plugin) {
  11360. if ($.type(disabled) !== 'undefined')
  11361. plugin.disabled(plugin, disabled);
  11362. else
  11363. status = plugin.disabled(plugin);
  11364. }
  11365. });
  11366. return status;
  11367. }
  11368. /**
  11369. * Get selected item text
  11370. * @returns {string}
  11371. */
  11372. function GetInputText() {
  11373. var str = '';
  11374. this.each(function () {
  11375. var $this = getPlugin(this), data = $this.data(SelectPage.dataKey);
  11376. if (data) {
  11377. if (data.option.multiple) {
  11378. var tags = [];
  11379. data.elem.element_box.find('li.selected_tag').each(function (i, tag) {
  11380. tags.push($(tag).text());
  11381. });
  11382. str += tags.toString();
  11383. } else {
  11384. str += data.elem.combo_input.val();
  11385. }
  11386. }
  11387. });
  11388. return str;
  11389. }
  11390. var old = $.fn.selectPage;
  11391. $.fn.selectPage = Plugin;
  11392. $.fn.selectPage.Constructor = SelectPage;
  11393. $.fn.selectPageClear = ClearSelected;
  11394. $.fn.selectPageRefresh = SelectedRefresh;
  11395. $.fn.selectPageData = ModifyDataSource;
  11396. $.fn.selectPageDisabled = PluginDisabled;
  11397. $.fn.selectPageText = GetInputText;
  11398. // SelectPage no conflict
  11399. // =================
  11400. $.fn.selectPage.noConflict = function () {
  11401. $.fn.selectPage = old;
  11402. return this;
  11403. };
  11404. })(window.jQuery);
  11405. define("selectpage", function(){});