require-backend.min.js 843 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478
  1. /*! jQuery v2.1.4 | (c) 2005, 2015 jQuery Foundation, Inc. | 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=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l=a.document,m="2.1.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 d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return n.each(this,a,b)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.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(null)},push:f,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){return!n.isArray(a)&&a-parseFloat(a)+1>=0},isPlainObject:function(a){return"object"!==n.type(a)||a.nodeType||n.isWindow(a)?!1:a.constructor&&!j.call(a.constructor.prototype,"isPrototypeOf")?!1:!0},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?h[i.call(a)]||"object":typeof a},globalEval:function(a){var b,c=eval;a=n.trim(a),a&&(1===a.indexOf("use strict")?(b=l.createElement("script"),b.text=a,l.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,c){var d,e=0,f=a.length,g=s(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),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):f.call(c,a)),c},inArray:function(a,b,c){return null==b?-1:g.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,f=0,g=a.length,h=s(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(c=a[b],b=a,a=c),n.isFunction(a)?(e=d.call(arguments,2),f=function(){return a.apply(b||this,e.concat(d.call(arguments)))},f.guid=a.guid=a.guid||n.guid++,f):void 0},now:Date.now,support:k}),n.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function s(a){var b="length"in a&&a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:1===a.nodeType&&b?!0:"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=ha(),z=ha(),A=ha(),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=M.replace("w","w#"),O="\\["+L+"*("+M+")(?:"+L+"*([*^$|!~]?=)"+L+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+N+"))|)"+L+"*\\]",P=":("+M+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+O+")*)|.*)\\)|)",Q=new RegExp(L+"+","g"),R=new RegExp("^"+L+"+|((?:^|[^\\\\])(?:\\\\.)*)"+L+"+$","g"),S=new RegExp("^"+L+"*,"+L+"*"),T=new RegExp("^"+L+"*([>+~]|"+L+")"+L+"*"),U=new RegExp("="+L+"*([^\\]'\"]*?)"+L+"*\\]","g"),V=new RegExp(P),W=new RegExp("^"+N+"$"),X={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M.replace("w","w*")+")"),ATTR:new RegExp("^"+O),PSEUDO:new RegExp("^"+P),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")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,aa=/[+~]/,ba=/'|\\/g,ca=new RegExp("\\\\([\\da-f]{1,6}"+L+"?|("+L+")|.)","ig"),da=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)},ea=function(){m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(fa){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 ga(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],k=b.nodeType,"string"!=typeof a||!a||1!==k&&9!==k&&11!==k)return d;if(!e&&p){if(11!==k&&(f=_.exec(a)))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return H.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName)return H.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=1!==k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(ba,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+ra(o[l]);w=aa.test(a)&&pa(b.parentNode)||b,x=o.join(",")}if(x)try{return H.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function ha(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ia(a){return a[u]=!0,a}function ja(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ka(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function la(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 ma(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function na(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function oa(a){return ia(function(b){return b=+b,ia(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 pa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=ga.support={},f=ga.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=ga.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=g.documentElement,e=g.defaultView,e&&e!==e.top&&(e.addEventListener?e.addEventListener("unload",ea,!1):e.attachEvent&&e.attachEvent("onunload",ea)),p=!f(g),c.attributes=ja(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ja(function(a){return a.appendChild(g.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(g.getElementsByClassName),c.getById=ja(function(a){return o.appendChild(a).id=u,!g.getElementsByName||!g.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.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ca,da);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ca,da);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 p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(g.querySelectorAll))&&(ja(function(a){o.appendChild(a).innerHTML="<a id='"+u+"'></a><select id='"+u+"-\f]' 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(".#.+[+~]")}),ja(function(a){var b=g.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=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ja(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",P)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.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===g||a.ownerDocument===v&&t(v,a)?-1:b===g||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,h=[a],i=[b];if(!e||!f)return a===g?-1:b===g?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return la(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?la(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},g):n},ga.matches=function(a,b){return ga(a,null,null,b)},ga.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||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 ga(b,n,null,[a]).length>0},ga.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},ga.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},ga.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},ga.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=ga.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=ga.selectors={cacheLength:50,createPseudo:ia,match:X,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(ca,da),a[3]=(a[3]||a[4]||a[5]||"").replace(ca,da),"~="===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]||ga.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]&&ga.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.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(ca,da).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=ga.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(Q," ")+" ").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;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||ga.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ia(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:ia(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?ia(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:ia(function(a){return function(b){return ga(a,b).length>0}}),contains:ia(function(a){return a=a.replace(ca,da),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ia(function(a){return W.test(a||"")||ga.error("unsupported lang: "+a),a=a.replace(ca,da).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 Z.test(a.nodeName)},input:function(a){return Y.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:oa(function(){return[0]}),last:oa(function(a,b){return[b-1]}),eq:oa(function(a,b,c){return[0>c?c+b:c]}),even:oa(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:oa(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:oa(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:oa(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]=ma(b);for(b in{submit:!0,reset:!0})d.pseudos[b]=na(b);function qa(){}qa.prototype=d.filters=d.pseudos,d.setFilters=new qa,g=ga.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=S.exec(h)))&&(e&&(h=h.slice(e[0].length)||h),i.push(f=[])),c=!1,(e=T.exec(h))&&(c=e.shift(),f.push({value:c,type:e[0].replace(R," ")}),h=h.slice(c.length));for(g in d.filter)!(e=X[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?ga.error(a):z(a,i).slice(0)};function ra(a){for(var b=0,c=a.length,d="";c>b;b++)d+=a[b].value;return d}function sa(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=[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(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function ta(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 ua(a,b,c){for(var d=0,e=b.length;e>d;d++)ga(a,b[d],c);return c}function va(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 wa(a,b,c,d,e,f){return d&&!d[u]&&(d=wa(d)),e&&!e[u]&&(e=wa(e,f)),ia(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||ua(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:va(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=va(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=va(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function xa(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=sa(function(a){return a===b},h,!0),l=sa(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=[sa(ta(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 wa(i>1&&ta(m),i>1&&ra(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&xa(a.slice(i,e)),f>e&&xa(a=a.slice(e)),f>e&&ra(a))}m.push(c)}return ta(m)}function ya(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=F.call(i));s=va(s)}H.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&ga.uniqueSort(i)}return k&&(w=v,j=t),r};return c?ia(f):f}return h=ga.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=xa(b[c]),f[u]?d.push(f):e.push(f);f=A(a,ya(e,d)),f.selector=a}return f},i=ga.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(ca,da),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.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(ca,da),aa.test(j[0].type)&&pa(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&ra(j),!a)return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,aa.test(a)&&pa(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ja(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ja(function(a){return a.innerHTML="<a href='#'></a>","#"===a.firstChild.getAttribute("href")})||ka("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ja(function(a){return a.innerHTML="<input/>",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ka("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ja(function(a){return null==a.getAttribute("disabled")})||ka(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}),ga}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=n.expr.match.needsContext,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^.[^:#\[\.,]*$/;function x(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(w.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return g.call(b,a)>=0!==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(x(this,a||[],!1))},not:function(a){return this.pushStack(x(this,a||[],!0))},is:function(a){return!!x(this,"string"==typeof a&&u.test(a)?n(a):a||[],!1).length}});var y,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=n.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||y).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:l,!0)),v.test(c[1])&&n.isPlainObject(b))for(c in b)n.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}return d=l.getElementById(c[2]),d&&d.parentNode&&(this.length=1,this[0]=d),this.context=l,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?"undefined"!=typeof y.ready?y.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};A.prototype=n.fn,y=n(l);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};n.extend({dir: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},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),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=u.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.unique(f):f)},index:function(a){return a?"string"==typeof a?g.call(n(a),this[0]):g.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.unique(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(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 n.dir(a,"parentNode")},parentsUntil:function(a,b,c){return n.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return n.dir(a,"nextSibling")},prevAll:function(a){return n.dir(a,"previousSibling")},nextUntil:function(a,b,c){return n.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return n.dir(a,"previousSibling",c)},siblings:function(a){return n.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return n.sibling(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&&(C[a]||n.unique(e),B.test(a)&&e.reverse()),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return n.each(a.match(E)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):n.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(b=a.memory&&l,c=!0,g=e||0,e=0,f=h.length,d=!0;h&&f>g;g++)if(h[g].apply(l[0],l[1])===!1&&a.stopOnFalse){b=!1;break}d=!1,h&&(i?i.length&&j(i.shift()):b?h=[]:k.disable())},k={add:function(){if(h){var c=h.length;!function g(b){n.each(b,function(b,c){var d=n.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&g(c)})}(arguments),d?f=h.length:b&&(e=c,j(b))}return this},remove:function(){return h&&n.each(arguments,function(a,b){var c;while((c=n.inArray(b,h,c))>-1)h.splice(c,1),d&&(f>=c&&f--,g>=c&&g--)}),this},has:function(a){return a?n.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],f=0,this},disable:function(){return h=i=b=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,b||k.disable(),this},locked:function(){return!i},fireWith:function(a,b){return!h||c&&!i||(b=b||[],b=[a,b.slice?b.slice():b],d?i.push(b):j(b)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!c}};return k},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().done(c.resolve).fail(c.reject).progress(c.notify):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=d.call(arguments),e=c.length,f=1!==e||a&&n.isFunction(a.promise)?e:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;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||(H.resolveWith(l,[n]),n.fn.triggerHandler&&(n(l).triggerHandler("ready"),n(l).off("ready"))))}});function I(){l.removeEventListener("DOMContentLoaded",I,!1),a.removeEventListener("load",I,!1),n.ready()}n.ready.promise=function(b){return H||(H=n.Deferred(),"complete"===l.readyState?setTimeout(n.ready):(l.addEventListener("DOMContentLoaded",I,!1),a.addEventListener("load",I,!1))),H.promise(b)},n.ready.promise();var J=n.access=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)n.access(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};n.acceptData=function(a){return 1===a.nodeType||9===a.nodeType||!+a.nodeType};function K(){Object.defineProperty(this.cache={},0,{get:function(){return{}}}),this.expando=n.expando+K.uid++}K.uid=1,K.accepts=n.acceptData,K.prototype={key:function(a){if(!K.accepts(a))return 0;var b={},c=a[this.expando];if(!c){c=K.uid++;try{b[this.expando]={value:c},Object.defineProperties(a,b)}catch(d){b[this.expando]=c,n.extend(a,b)}}return this.cache[c]||(this.cache[c]={}),c},set:function(a,b,c){var d,e=this.key(a),f=this.cache[e];if("string"==typeof b)f[b]=c;else if(n.isEmptyObject(f))n.extend(this.cache[e],b);else for(d in b)f[d]=b[d];return f},get:function(a,b){var c=this.cache[this.key(a)];return void 0===b?c:c[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=this.key(a),g=this.cache[f];if(void 0===b)this.cache[f]={};else{n.isArray(b)?d=b.concat(b.map(n.camelCase)):(e=n.camelCase(b),b in g?d=[b,e]:(d=e,d=d in g?[d]:d.match(E)||[])),c=d.length;while(c--)delete g[d[c]]}},hasData:function(a){return!n.isEmptyObject(this.cache[a[this.expando]]||{})},discard:function(a){a[this.expando]&&delete this.cache[a[this.expando]]}};var L=new K,M=new K,N=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,O=/([A-Z])/g;function P(a,b,c){var d;if(void 0===c&&1===a.nodeType)if(d="data-"+b.replace(O,"-$1").toLowerCase(),c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:N.test(c)?n.parseJSON(c):c}catch(e){}M.set(a,b,c)}else c=void 0;return c}n.extend({hasData:function(a){return M.hasData(a)||L.hasData(a)},data:function(a,b,c){
  3. return M.access(a,b,c)},removeData:function(a,b){M.remove(a,b)},_data:function(a,b,c){return L.access(a,b,c)},_removeData:function(a,b){L.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=M.get(f),1===f.nodeType&&!L.get(f,"hasDataAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),P(f,d,e[d])));L.set(f,"hasDataAttrs",!0)}return e}return"object"==typeof a?this.each(function(){M.set(this,a)}):J(this,function(b){var c,d=n.camelCase(a);if(f&&void 0===b){if(c=M.get(f,a),void 0!==c)return c;if(c=M.get(f,d),void 0!==c)return c;if(c=P(f,d,void 0),void 0!==c)return c}else this.each(function(){var c=M.get(this,d);M.set(this,d,b),-1!==a.indexOf("-")&&void 0!==c&&M.set(this,a,b)})},null,b,arguments.length>1,null,!0)},removeData:function(a){return this.each(function(){M.remove(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=L.get(a,b),c&&(!d||n.isArray(c)?d=L.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 L.get(a,c)||L.access(a,c,{empty:n.Callbacks("once memory").add(function(){L.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=L.get(f[g],a+"queueHooks"),c&&c.empty&&(d++,c.empty.add(h));return h(),e.promise(b)}});var Q=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,R=["Top","Right","Bottom","Left"],S=function(a,b){return a=b||a,"none"===n.css(a,"display")||!n.contains(a.ownerDocument,a)},T=/^(?:checkbox|radio)$/i;!function(){var a=l.createDocumentFragment(),b=a.appendChild(l.createElement("div")),c=l.createElement("input");c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),b.appendChild(c),k.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,b.innerHTML="<textarea>x</textarea>",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var U="undefined";k.focusinBubbles="onfocusin"in a;var V=/^key/,W=/^(?:mouse|pointer|contextmenu)|click/,X=/^(?:focusinfocus|focusoutblur)$/,Y=/^([^.]*)(?:\.(.+)|)$/;function Z(){return!0}function $(){return!1}function _(){try{return l.activeElement}catch(a){}}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=L.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 typeof n!==U&&n.event.triggered!==b.type?n.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(E)||[""],j=b.length;while(j--)h=Y.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,!1)),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=L.hasData(a)&&L.get(a);if(r&&(i=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=Y.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)&&(delete r.handle,L.remove(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,m,o,p=[d||l],q=j.call(b,"type")?b.type:b,r=j.call(b,"namespace")?b.namespace.split("."):[];if(g=h=d=d||l,3!==d.nodeType&&8!==d.nodeType&&!X.test(q+n.event.triggered)&&(q.indexOf(".")>=0&&(r=q.split("."),q=r.shift(),r.sort()),k=q.indexOf(":")<0&&"on"+q,b=b[n.expando]?b:new n.Event(q,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=r.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+r.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:n.makeArray(c,[b]),o=n.event.special[q]||{},e||!o.trigger||o.trigger.apply(d,c)!==!1)){if(!e&&!o.noBubble&&!n.isWindow(d)){for(i=o.delegateType||q,X.test(i+q)||(g=g.parentNode);g;g=g.parentNode)p.push(g),h=g;h===(d.ownerDocument||l)&&p.push(h.defaultView||h.parentWindow||a)}f=0;while((g=p[f++])&&!b.isPropagationStopped())b.type=f>1?i:o.bindType||q,m=(L.get(g,"events")||{})[b.type]&&L.get(g,"handle"),m&&m.apply(g,c),m=k&&g[k],m&&m.apply&&n.acceptData(g)&&(b.result=m.apply(g,c),b.result===!1&&b.preventDefault());return b.type=q,e||b.isDefaultPrevented()||o._default&&o._default.apply(p.pop(),c)!==!1||!n.acceptData(d)||k&&n.isFunction(d[q])&&!n.isWindow(d)&&(h=d[k],h&&(d[k]=null),n.event.triggered=q,d[q](),n.event.triggered=void 0,h&&(d[k]=h)),b.result}},dispatch:function(a){a=n.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(L.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.namespace_re||a.namespace_re.test(g.namespace))&&(a.handleObj=g,a.data=g.data,e=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==e&&(a.result=e)===!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&&(!a.button||"click"!==a.type))for(;i!==this;i=i.parentNode||this)if(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)>=0: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 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,d,e,f=b.button;return null==a.pageX&&null!=b.clientX&&(c=a.target.ownerDocument||l,d=c.documentElement,e=c.body,a.pageX=b.clientX+(d&&d.scrollLeft||e&&e.scrollLeft||0)-(d&&d.clientLeft||e&&e.clientLeft||0),a.pageY=b.clientY+(d&&d.scrollTop||e&&e.scrollTop||0)-(d&&d.clientTop||e&&e.clientTop||0)),a.which||void 0===f||(a.which=1&f?1:2&f?3:4&f?2:0),a}},fix:function(a){if(a[n.expando])return a;var b,c,d,e=a.type,f=a,g=this.fixHooks[e];g||(this.fixHooks[e]=g=W.test(e)?this.mouseHooks:V.test(e)?this.keyHooks:{}),d=g.props?this.props.concat(g.props):this.props,a=new n.Event(f),b=d.length;while(b--)c=d[b],a[c]=f[c];return a.target||(a.target=l),3===a.target.nodeType&&(a.target=a.target.parentNode),g.filter?g.filter(a,f):a},special:{load:{noBubble:!0},focus:{trigger:function(){return this!==_()&&this.focus?(this.focus(),!1):void 0},delegateType:"focusin"},blur:{trigger:function(){return this===_()&&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)}}},simulate:function(a,b,c,d){var e=n.extend(new n.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?n.event.trigger(e,null,b):n.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},n.removeEvent=function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)},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?Z:$):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={isDefaultPrevented:$,isPropagationStopped:$,isImmediatePropagationStopped:$,preventDefault:function(){var a=this.originalEvent;this.isDefaultPrevented=Z,a&&a.preventDefault&&a.preventDefault()},stopPropagation:function(){var a=this.originalEvent;this.isPropagationStopped=Z,a&&a.stopPropagation&&a.stopPropagation()},stopImmediatePropagation:function(){var a=this.originalEvent;this.isImmediatePropagationStopped=Z,a&&a.stopImmediatePropagation&&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}}}),k.focusinBubbles||n.each({focus:"focusin",blur:"focusout"},function(a,b){var c=function(a){n.event.simulate(b,a.target,n.event.fix(a),!0)};n.event.special[b]={setup:function(){var d=this.ownerDocument||this,e=L.access(d,b);e||d.addEventListener(a,c,!0),L.access(d,b,(e||0)+1)},teardown:function(){var d=this.ownerDocument||this,e=L.access(d,b)-1;e?L.access(d,b,e):(d.removeEventListener(a,c,!0),L.remove(d,b))}}}),n.fn.extend({on:function(a,b,c,d,e){var f,g;if("object"==typeof a){"string"!=typeof b&&(c=c||b,b=void 0);for(g in a)this.on(g,b,c,a[g],e);return this}if(null==c&&null==d?(d=b,c=b=void 0):null==d&&("string"==typeof b?(d=c,c=void 0):(d=c,c=b,b=void 0)),d===!1)d=$;else if(!d)return this;return 1===e&&(f=d,d=function(a){return n().off(a),f.apply(this,arguments)},d.guid=f.guid||(f.guid=n.guid++)),this.each(function(){n.event.add(this,a,d,c,b)})},one:function(a,b,c,d){return this.on(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=$),this.each(function(){n.event.remove(this,a,c,b)})},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}});var aa=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,ba=/<([\w:]+)/,ca=/<|&#?\w+;/,da=/<(?:script|style|link)/i,ea=/checked\s*(?:[^=]|=\s*.checked.)/i,fa=/^$|\/(?:java|ecma)script/i,ga=/^true\/(.*)/,ha=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,ia={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,"",""]};ia.optgroup=ia.option,ia.tbody=ia.tfoot=ia.colgroup=ia.caption=ia.thead,ia.th=ia.td;function ja(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 ka(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function la(a){var b=ga.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function ma(a,b){for(var c=0,d=a.length;d>c;c++)L.set(a[c],"globalEval",!b||L.get(b[c],"globalEval"))}function na(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(L.hasData(a)&&(f=L.access(a),g=L.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])}M.hasData(a)&&(h=M.access(a),i=n.extend({},h),M.set(b,i))}}function oa(a,b){var c=a.getElementsByTagName?a.getElementsByTagName(b||"*"):a.querySelectorAll?a.querySelectorAll(b||"*"):[];return void 0===b||b&&n.nodeName(a,b)?n.merge([a],c):c}function pa(a,b){var c=b.nodeName.toLowerCase();"input"===c&&T.test(a.type)?b.checked=a.checked:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}n.extend({clone:function(a,b,c){var d,e,f,g,h=a.cloneNode(!0),i=n.contains(a.ownerDocument,a);if(!(k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(g=oa(h),f=oa(a),d=0,e=f.length;e>d;d++)pa(f[d],g[d]);if(b)if(c)for(f=f||oa(a),g=g||oa(h),d=0,e=f.length;e>d;d++)na(f[d],g[d]);else na(a,h);return g=oa(h,"script"),g.length>0&&ma(g,!i&&oa(a,"script")),h},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,k=b.createDocumentFragment(),l=[],m=0,o=a.length;o>m;m++)if(e=a[m],e||0===e)if("object"===n.type(e))n.merge(l,e.nodeType?[e]:e);else if(ca.test(e)){f=f||k.appendChild(b.createElement("div")),g=(ba.exec(e)||["",""])[1].toLowerCase(),h=ia[g]||ia._default,f.innerHTML=h[1]+e.replace(aa,"<$1></$2>")+h[2],j=h[0];while(j--)f=f.lastChild;n.merge(l,f.childNodes),f=k.firstChild,f.textContent=""}else l.push(b.createTextNode(e));k.textContent="",m=0;while(e=l[m++])if((!d||-1===n.inArray(e,d))&&(i=n.contains(e.ownerDocument,e),f=oa(k.appendChild(e),"script"),i&&ma(f),c)){j=0;while(e=f[j++])fa.test(e.type||"")&&c.push(e)}return k},cleanData:function(a){for(var b,c,d,e,f=n.event.special,g=0;void 0!==(c=a[g]);g++){if(n.acceptData(c)&&(e=c[L.expando],e&&(b=L.cache[e]))){if(b.events)for(d in b.events)f[d]?n.event.remove(c,d):n.removeEvent(c,d,b.handle);L.cache[e]&&delete L.cache[e]}delete M.cache[c[M.expando]]}}}),n.fn.extend({text:function(a){return J(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 this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=ja(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=ja(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?n.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||n.cleanData(oa(c)),c.parentNode&&(b&&n.contains(c.ownerDocument,c)&&ma(oa(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(n.cleanData(oa(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 J(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&&!da.test(a)&&!ia[(ba.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(aa,"<$1></$2>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(oa(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,n.cleanData(oa(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,m=this,o=l-1,p=a[0],q=n.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&ea.test(p))return this.each(function(c){var d=m.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(c=n.buildFragment(a,this[0].ownerDocument,!1,this),d=c.firstChild,1===c.childNodes.length&&(c=d),d)){for(f=n.map(oa(c,"script"),ka),g=f.length;l>j;j++)h=c,j!==o&&(h=n.clone(h,!0,!0),g&&n.merge(f,oa(h,"script"))),b.call(this[j],h,j);if(g)for(i=f[f.length-1].ownerDocument,n.map(f,la),j=0;g>j;j++)h=f[j],fa.test(h.type||"")&&!L.access(h,"globalEval")&&n.contains(i,h)&&(h.src?n._evalUrl&&n._evalUrl(h.src):n.globalEval(h.textContent.replace(ha,"")))}return this}}),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),g=e.length-1,h=0;g>=h;h++)c=h===g?this:this.clone(!0),n(e[h])[b](c),f.apply(d,c.get());return this.pushStack(d)}});var qa,ra={};function sa(b,c){var d,e=n(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:n.css(e[0],"display");return e.detach(),f}function ta(a){var b=l,c=ra[a];return c||(c=sa(a,b),"none"!==c&&c||(qa=(qa||n("<iframe frameborder='0' width='0' height='0'/>")).appendTo(b.documentElement),b=qa[0].contentDocument,b.write(),b.close(),c=sa(a,b),qa.detach()),ra[a]=c),c}var ua=/^margin/,va=new RegExp("^("+Q+")(?!px)[a-z%]+$","i"),wa=function(b){return b.ownerDocument.defaultView.opener?b.ownerDocument.defaultView.getComputedStyle(b,null):a.getComputedStyle(b,null)};function xa(a,b,c){var d,e,f,g,h=a.style;return c=c||wa(a),c&&(g=c.getPropertyValue(b)||c[b]),c&&(""!==g||n.contains(a.ownerDocument,a)||(g=n.style(a,b)),va.test(g)&&ua.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 ya(a,b){return{get:function(){return a()?void delete this.get:(this.get=b).apply(this,arguments)}}}!function(){var b,c,d=l.documentElement,e=l.createElement("div"),f=l.createElement("div");if(f.style){f.style.backgroundClip="content-box",f.cloneNode(!0).style.backgroundClip="",k.clearCloneStyle="content-box"===f.style.backgroundClip,e.style.cssText="border:0;width:0;height:0;top:0;left:-9999px;margin-top:1px;position:absolute",e.appendChild(f);function g(){f.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;margin-top:1%;top:1%;border:1px;padding:1px;width:4px;position:absolute",f.innerHTML="",d.appendChild(e);var g=a.getComputedStyle(f,null);b="1%"!==g.top,c="4px"===g.width,d.removeChild(e)}a.getComputedStyle&&n.extend(k,{pixelPosition:function(){return g(),b},boxSizingReliable:function(){return null==c&&g(),c},reliableMarginRight:function(){var b,c=f.appendChild(l.createElement("div"));return c.style.cssText=f.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",c.style.marginRight=c.style.width="0",f.style.width="1px",d.appendChild(e),b=!parseFloat(a.getComputedStyle(c,null).marginRight),d.removeChild(e),f.removeChild(c),b}})}}(),n.swap=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};var za=/^(none|table(?!-c[ea]).+)/,Aa=new RegExp("^("+Q+")(.*)$","i"),Ba=new RegExp("^([+-])=("+Q+")","i"),Ca={position:"absolute",visibility:"hidden",display:"block"},Da={letterSpacing:"0",fontWeight:"400"},Ea=["Webkit","O","Moz","ms"];function Fa(a,b){if(b in a)return b;var c=b[0].toUpperCase()+b.slice(1),d=b,e=Ea.length;while(e--)if(b=Ea[e]+c,b in a)return b;return d}function Ga(a,b,c){var d=Aa.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function Ha(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+R[f],!0,e)),d?("content"===c&&(g-=n.css(a,"padding"+R[f],!0,e)),"margin"!==c&&(g-=n.css(a,"border"+R[f]+"Width",!0,e))):(g+=n.css(a,"padding"+R[f],!0,e),"padding"!==c&&(g+=n.css(a,"border"+R[f]+"Width",!0,e)));return g}function Ia(a,b,c){var d=!0,e="width"===b?a.offsetWidth:a.offsetHeight,f=wa(a),g="border-box"===n.css(a,"boxSizing",!1,f);if(0>=e||null==e){if(e=xa(a,b,f),(0>e||null==e)&&(e=a.style[b]),va.test(e))return e;d=g&&(k.boxSizingReliable()||e===a.style[b]),e=parseFloat(e)||0}return e+Ha(a,b,c||(g?"border":"content"),d,f)+"px"}function Ja(a,b){for(var c,d,e,f=[],g=0,h=a.length;h>g;g++)d=a[g],d.style&&(f[g]=L.get(d,"olddisplay"),c=d.style.display,b?(f[g]||"none"!==c||(d.style.display=""),""===d.style.display&&S(d)&&(f[g]=L.access(d,"olddisplay",ta(d.nodeName)))):(e=S(d),"none"===c&&e||L.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=xa(a,"opacity");return""===c?"1":c}}}},cssNumber:{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]=Fa(i,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=Ba.exec(c))&&(c=(e[1]+1)*e[2]+parseFloat(n.css(a,b)),f="number"),null!=c&&c===c&&("number"!==f||n.cssNumber[h]||(c+="px"),k.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]=Fa(a.style,h)),g=n.cssHooks[b]||n.cssHooks[h],g&&"get"in g&&(e=g.get(a,!0,c)),void 0===e&&(e=xa(a,b,d)),"normal"===e&&b in Da&&(e=Da[b]),""===c||c?(f=parseFloat(e),c===!0||n.isNumeric(f)?f||0:e):e}}),n.each(["height","width"],function(a,b){n.cssHooks[b]={get:function(a,c,d){return c?za.test(n.css(a,"display"))&&0===a.offsetWidth?n.swap(a,Ca,function(){return Ia(a,b,d)}):Ia(a,b,d):void 0},set:function(a,c,d){var e=d&&wa(a);return Ga(a,c,d?Ha(a,b,d,"border-box"===n.css(a,"boxSizing",!1,e),e):0)}}}),n.cssHooks.marginRight=ya(k.reliableMarginRight,function(a,b){return b?n.swap(a,{display:"inline-block"},xa,[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+R[d]+b]=f[d]||f[d-2]||f[0];return e}},ua.test(a)||(n.cssHooks[a+b].set=Ga)}),n.fn.extend({css:function(a,b){return J(this,function(a,b,c){var d,e,f={},g=0;if(n.isArray(b)){for(d=wa(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 Ja(this,!0)},hide:function(){return Ja(this)},toggle:function(a){return"boolean"==typeof a?a?this.show():this.hide():this.each(function(){S(this)?n(this).show():n(this).hide()})}});function Ka(a,b,c,d,e){return new Ka.prototype.init(a,b,c,d,e)}n.Tween=Ka,Ka.prototype={constructor:Ka,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(n.cssNumber[c]?"":"px")},cur:function(){var a=Ka.propHooks[this.prop];return a&&a.get?a.get(this):Ka.propHooks._default.get(this)},run:function(a){var b,c=Ka.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):Ka.propHooks._default.set(this),this}},Ka.prototype.init.prototype=Ka.prototype,Ka.propHooks={_default:{get:function(a){var b;return null==a.elem[a.prop]||a.elem.style&&null!=a.elem.style[a.prop]?(b=n.css(a.elem,a.prop,""),b&&"auto"!==b?b:0):a.elem[a.prop]},set:function(a){n.fx.step[a.prop]?n.fx.step[a.prop](a):a.elem.style&&(null!=a.elem.style[n.cssProps[a.prop]]||n.cssHooks[a.prop])?n.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},Ka.propHooks.scrollTop=Ka.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}},n.fx=Ka.prototype.init,n.fx.step={};var La,Ma,Na=/^(?:toggle|show|hide)$/,Oa=new RegExp("^(?:([+-])=|)("+Q+")([a-z%]*)$","i"),Pa=/queueHooks$/,Qa=[Va],Ra={"*":[function(a,b){var c=this.createTween(a,b),d=c.cur(),e=Oa.exec(b),f=e&&e[3]||(n.cssNumber[a]?"":"px"),g=(n.cssNumber[a]||"px"!==f&&+d)&&Oa.exec(n.css(c.elem,a)),h=1,i=20;if(g&&g[3]!==f){f=f||g[3],e=e||[],g=+d||1;do h=h||".5",g/=h,n.style(c.elem,a,g+f);while(h!==(h=c.cur()/d)&&1!==h&&--i)}return e&&(g=c.start=+g||+d||0,c.unit=f,c.end=e[1]?g+(e[1]+1)*e[2]:+e[2]),c}]};function Sa(){return setTimeout(function(){La=void 0}),La=n.now()}function Ta(a,b){var c,d=0,e={height:a};for(b=b?1:0;4>d;d+=2-b)c=R[d],e["margin"+c]=e["padding"+c]=a;return b&&(e.opacity=e.width=a),e}function Ua(a,b,c){for(var d,e=(Ra[b]||[]).concat(Ra["*"]),f=0,g=e.length;g>f;f++)if(d=e[f].call(c,b,a))return d}function Va(a,b,c){var d,e,f,g,h,i,j,k,l=this,m={},o=a.style,p=a.nodeType&&S(a),q=L.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?L.get(a,"olddisplay")||ta(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],Na.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?ta(a.nodeName):j)&&(o.display=j);else{q?"hidden"in q&&(p=q.hidden):q=L.access(a,"fxshow",{}),f&&(q.hidden=!p),p?n(a).show():l.done(function(){n(a).hide()}),l.done(function(){var b;L.remove(a,"fxshow");for(b in m)n.style(a,b,m[b])});for(d in m)g=Ua(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 Wa(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 Xa(a,b,c){var d,e,f=0,g=Qa.length,h=n.Deferred().always(function(){delete i.elem}),i=function(){if(e)return!1;for(var b=La||Sa(),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:{}},c),originalProperties:b,originalOptions:c,startTime:La||Sa(),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.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;for(Wa(k,j.opts.specialEasing);g>f;f++)if(d=Qa[f].call(j,a,k,j.opts))return d;return n.map(k,Ua,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(Xa,{tweener:function(a,b){n.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");for(var c,d=0,e=a.length;e>d;d++)c=a[d],Ra[c]=Ra[c]||[],Ra[c].unshift(b)},prefilter:function(a,b){b?Qa.unshift(a):Qa.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(S).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=Xa(this,n.extend({},a),f);(e||L.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=L.get(this);if(e)g[e]&&g[e].stop&&d(g[e]);else for(e in g)g[e]&&g[e].stop&&Pa.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=L.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(Ta(b,!0),a,d,e)}}),n.each({slideDown:Ta("show"),slideUp:Ta("hide"),slideToggle:Ta("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(La=n.now();b<c.length;b++)a=c[b],a()||c[b]!==a||c.splice(b--,1);c.length||n.fx.stop(),La=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(){Ma||(Ma=setInterval(n.fx.tick,n.fx.interval))},n.fx.stop=function(){clearInterval(Ma),Ma=null},n.fx.speeds={slow:600,fast:200,_default:400},n.fn.delay=function(a,b){return a=n.fx?n.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},function(){var a=l.createElement("input"),b=l.createElement("select"),c=b.appendChild(l.createElement("option"));a.type="checkbox",k.checkOn=""!==a.value,k.optSelected=c.selected,b.disabled=!0,k.optDisabled=!c.disabled,a=l.createElement("input"),a.value="t",a.type="radio",k.radioValue="t"===a.value}();var Ya,Za,$a=n.expr.attrHandle;n.fn.extend({attr:function(a,b){return J(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(a&&3!==f&&8!==f&&2!==f)return typeof a.getAttribute===U?n.prop(a,b,c):(1===f&&n.isXMLDoc(a)||(b=b.toLowerCase(),d=n.attrHooks[b]||(n.expr.match.bool.test(b)?Za:Ya)),
  4. void 0===c?d&&"get"in d&&null!==(e=d.get(a,b))?e:(e=n.find.attr(a,b),null==e?void 0:e):null!==c?d&&"set"in d&&void 0!==(e=d.set(a,c,b))?e:(a.setAttribute(b,c+""),c):void n.removeAttr(a,b))},removeAttr:function(a,b){var c,d,e=0,f=b&&b.match(E);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)},attrHooks:{type:{set:function(a,b){if(!k.radioValue&&"radio"===b&&n.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}}}),Za={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=$a[b]||n.find.attr;$a[b]=function(a,b,d){var e,f;return d||(f=$a[b],$a[b]=e,e=null!=c(a,b,d)?b.toLowerCase():null,$a[b]=f),e}});var _a=/^(?:input|select|textarea|button)$/i;n.fn.extend({prop:function(a,b){return J(this,n.prop,a,b,arguments.length>1)},removeProp:function(a){return this.each(function(){delete this[n.propFix[a]||a]})}}),n.extend({propFix:{"for":"htmlFor","class":"className"},prop:function(a,b,c){var d,e,f,g=a.nodeType;if(a&&3!==g&&8!==g&&2!==g)return f=1!==g||!n.isXMLDoc(a),f&&(b=n.propFix[b]||b,e=n.propHooks[b]),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){return a.hasAttribute("tabindex")||_a.test(a.nodeName)||a.href?a.tabIndex:-1}}}}),k.optSelected||(n.propHooks.selected={get:function(a){var b=a.parentNode;return b&&b.parentNode&&b.parentNode.selectedIndex,null}}),n.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){n.propFix[this.toLowerCase()]=this});var ab=/[\t\r\n\f]/g;n.fn.extend({addClass:function(a){var b,c,d,e,f,g,h="string"==typeof a&&a,i=0,j=this.length;if(n.isFunction(a))return this.each(function(b){n(this).addClass(a.call(this,b,this.className))});if(h)for(b=(a||"").match(E)||[];j>i;i++)if(c=this[i],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(ab," "):" ")){f=0;while(e=b[f++])d.indexOf(" "+e+" ")<0&&(d+=e+" ");g=n.trim(d),c.className!==g&&(c.className=g)}return this},removeClass:function(a){var b,c,d,e,f,g,h=0===arguments.length||"string"==typeof a&&a,i=0,j=this.length;if(n.isFunction(a))return this.each(function(b){n(this).removeClass(a.call(this,b,this.className))});if(h)for(b=(a||"").match(E)||[];j>i;i++)if(c=this[i],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(ab," "):"")){f=0;while(e=b[f++])while(d.indexOf(" "+e+" ")>=0)d=d.replace(" "+e+" "," ");g=a?n.trim(d):"",c.className!==g&&(c.className=g)}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):this.each(n.isFunction(a)?function(c){n(this).toggleClass(a.call(this,c,this.className,b),b)}:function(){if("string"===c){var b,d=0,e=n(this),f=a.match(E)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else(c===U||"boolean"===c)&&(this.className&&L.set(this,"__className__",this.className),this.className=this.className||a===!1?"":L.get(this,"__className__")||"")})},hasClass:function(a){for(var b=" "+a+" ",c=0,d=this.length;d>c;c++)if(1===this[c].nodeType&&(" "+this[c].className+" ").replace(ab," ").indexOf(b)>=0)return!0;return!1}});var bb=/\r/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(bb,""):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))}},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||(k.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(d.value,f)>=0)&&(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)>=0:void 0}},k.checkOn||(n.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})}),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)},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)}});var cb=n.now(),db=/\?/;n.parseJSON=function(a){return JSON.parse(a+"")},n.parseXML=function(a){var b,c;if(!a||"string"!=typeof a)return null;try{c=new DOMParser,b=c.parseFromString(a,"text/xml")}catch(d){b=void 0}return(!b||b.getElementsByTagName("parsererror").length)&&n.error("Invalid XML: "+a),b};var eb=/#.*$/,fb=/([?&])_=[^&]*/,gb=/^(.*?):[ \t]*([^\r\n]*)$/gm,hb=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,ib=/^(?:GET|HEAD)$/,jb=/^\/\//,kb=/^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,lb={},mb={},nb="*/".concat("*"),ob=a.location.href,pb=kb.exec(ob.toLowerCase())||[];function qb(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(E)||[];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 rb(a,b,c,d){var e={},f=a===mb;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 sb(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 tb(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 ub(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:ob,type:"GET",isLocal:hb.test(pb[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":nb,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},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?sb(sb(a,n.ajaxSettings),b):sb(n.ajaxSettings,a)},ajaxPrefilter:qb(lb),ajaxTransport:qb(mb),ajax:function(a,b){"object"==typeof a&&(b=a,a=void 0),b=b||{};var c,d,e,f,g,h,i,j,k=n.ajaxSetup({},b),l=k.context||k,m=k.context&&(l.nodeType||l.jquery)?n(l):n.event,o=n.Deferred(),p=n.Callbacks("once memory"),q=k.statusCode||{},r={},s={},t=0,u="canceled",v={readyState:0,getResponseHeader:function(a){var b;if(2===t){if(!f){f={};while(b=gb.exec(e))f[b[1].toLowerCase()]=b[2]}b=f[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return 2===t?e:null},setRequestHeader:function(a,b){var c=a.toLowerCase();return t||(a=s[c]=s[c]||a,r[a]=b),this},overrideMimeType:function(a){return t||(k.mimeType=a),this},statusCode:function(a){var b;if(a)if(2>t)for(b in a)q[b]=[q[b],a[b]];else v.always(a[v.status]);return this},abort:function(a){var b=a||u;return c&&c.abort(b),x(0,b),this}};if(o.promise(v).complete=p.add,v.success=v.done,v.error=v.fail,k.url=((a||k.url||ob)+"").replace(eb,"").replace(jb,pb[1]+"//"),k.type=b.method||b.type||k.method||k.type,k.dataTypes=n.trim(k.dataType||"*").toLowerCase().match(E)||[""],null==k.crossDomain&&(h=kb.exec(k.url.toLowerCase()),k.crossDomain=!(!h||h[1]===pb[1]&&h[2]===pb[2]&&(h[3]||("http:"===h[1]?"80":"443"))===(pb[3]||("http:"===pb[1]?"80":"443")))),k.data&&k.processData&&"string"!=typeof k.data&&(k.data=n.param(k.data,k.traditional)),rb(lb,k,b,v),2===t)return v;i=n.event&&k.global,i&&0===n.active++&&n.event.trigger("ajaxStart"),k.type=k.type.toUpperCase(),k.hasContent=!ib.test(k.type),d=k.url,k.hasContent||(k.data&&(d=k.url+=(db.test(d)?"&":"?")+k.data,delete k.data),k.cache===!1&&(k.url=fb.test(d)?d.replace(fb,"$1_="+cb++):d+(db.test(d)?"&":"?")+"_="+cb++)),k.ifModified&&(n.lastModified[d]&&v.setRequestHeader("If-Modified-Since",n.lastModified[d]),n.etag[d]&&v.setRequestHeader("If-None-Match",n.etag[d])),(k.data&&k.hasContent&&k.contentType!==!1||b.contentType)&&v.setRequestHeader("Content-Type",k.contentType),v.setRequestHeader("Accept",k.dataTypes[0]&&k.accepts[k.dataTypes[0]]?k.accepts[k.dataTypes[0]]+("*"!==k.dataTypes[0]?", "+nb+"; q=0.01":""):k.accepts["*"]);for(j in k.headers)v.setRequestHeader(j,k.headers[j]);if(k.beforeSend&&(k.beforeSend.call(l,v,k)===!1||2===t))return v.abort();u="abort";for(j in{success:1,error:1,complete:1})v[j](k[j]);if(c=rb(mb,k,b,v)){v.readyState=1,i&&m.trigger("ajaxSend",[v,k]),k.async&&k.timeout>0&&(g=setTimeout(function(){v.abort("timeout")},k.timeout));try{t=1,c.send(r,x)}catch(w){if(!(2>t))throw w;x(-1,w)}}else x(-1,"No Transport");function x(a,b,f,h){var j,r,s,u,w,x=b;2!==t&&(t=2,g&&clearTimeout(g),c=void 0,e=h||"",v.readyState=a>0?4:0,j=a>=200&&300>a||304===a,f&&(u=tb(k,v,f)),u=ub(k,u,v,j),j?(k.ifModified&&(w=v.getResponseHeader("Last-Modified"),w&&(n.lastModified[d]=w),w=v.getResponseHeader("etag"),w&&(n.etag[d]=w)),204===a||"HEAD"===k.type?x="nocontent":304===a?x="notmodified":(x=u.state,r=u.data,s=u.error,j=!s)):(s=x,(a||!x)&&(x="error",0>a&&(a=0))),v.status=a,v.statusText=(b||x)+"",j?o.resolveWith(l,[r,x,v]):o.rejectWith(l,[v,x,s]),v.statusCode(q),q=void 0,i&&m.trigger(j?"ajaxSuccess":"ajaxError",[v,k,j?r:s]),p.fireWith(l,[v,x]),i&&(m.trigger("ajaxComplete",[v,k]),--n.active||n.event.trigger("ajaxStop")))}return v},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({url:a,type:b,dataType:e,data:c,success:d})}}),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 this.each(n.isFunction(a)?function(b){n(this).wrapInner(a.call(this,b))}: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 a.offsetWidth<=0&&a.offsetHeight<=0},n.expr.filters.visible=function(a){return!n.expr.filters.hidden(a)};var vb=/%20/g,wb=/\[\]$/,xb=/\r?\n/g,yb=/^(?:submit|button|image|reset|file)$/i,zb=/^(?:input|select|textarea|keygen)/i;function Ab(a,b,c,d){var e;if(n.isArray(b))n.each(b,function(b,e){c||wb.test(a)?d(a,e):Ab(a+"["+("object"==typeof e?b:"")+"]",e,c,d)});else if(c||"object"!==n.type(b))d(a,b);else for(e in b)Ab(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)Ab(c,a[c],b,e);return d.join("&").replace(vb,"+")},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")&&zb.test(this.nodeName)&&!yb.test(a)&&(this.checked||!T.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(xb,"\r\n")}}):{name:b.name,value:c.replace(xb,"\r\n")}}).get()}}),n.ajaxSettings.xhr=function(){try{return new XMLHttpRequest}catch(a){}};var Bb=0,Cb={},Db={0:200,1223:204},Eb=n.ajaxSettings.xhr();a.attachEvent&&a.attachEvent("onunload",function(){for(var a in Cb)Cb[a]()}),k.cors=!!Eb&&"withCredentials"in Eb,k.ajax=Eb=!!Eb,n.ajaxTransport(function(a){var b;return k.cors||Eb&&!a.crossDomain?{send:function(c,d){var e,f=a.xhr(),g=++Bb;if(f.open(a.type,a.url,a.async,a.username,a.password),a.xhrFields)for(e in a.xhrFields)f[e]=a.xhrFields[e];a.mimeType&&f.overrideMimeType&&f.overrideMimeType(a.mimeType),a.crossDomain||c["X-Requested-With"]||(c["X-Requested-With"]="XMLHttpRequest");for(e in c)f.setRequestHeader(e,c[e]);b=function(a){return function(){b&&(delete Cb[g],b=f.onload=f.onerror=null,"abort"===a?f.abort():"error"===a?d(f.status,f.statusText):d(Db[f.status]||f.status,f.statusText,"string"==typeof f.responseText?{text:f.responseText}:void 0,f.getAllResponseHeaders()))}},f.onload=b(),f.onerror=b("error"),b=Cb[g]=b("abort");try{f.send(a.hasContent&&a.data||null)}catch(h){if(b)throw h}},abort:function(){b&&b()}}:void 0}),n.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},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(d,e){b=n("<script>").prop({async:!0,charset:a.scriptCharset,src:a.url}).on("load error",c=function(a){b.remove(),c=null,a&&e("error"===a.type?404:200,a.type)}),l.head.appendChild(b[0])},abort:function(){c&&c()}}}});var Fb=[],Gb=/(=)\?(?=&|$)|\?\?/;n.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=Fb.pop()||n.expando+"_"+cb++;return this[a]=!0,a}}),n.ajaxPrefilter("json jsonp",function(b,c,d){var e,f,g,h=b.jsonp!==!1&&(Gb.test(b.url)?"url":"string"==typeof b.data&&!(b.contentType||"").indexOf("application/x-www-form-urlencoded")&&Gb.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(Gb,"$1"+e):b.jsonp!==!1&&(b.url+=(db.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(){a[e]=f,b[e]&&(b.jsonpCallback=c.jsonpCallback,Fb.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||l;var d=v.exec(a),e=!c&&[];return d?[b.createElement(d[1])]:(d=n.buildFragment([a],b,e),e&&e.length&&n(e).remove(),n.merge([],d.childNodes))};var Hb=n.fn.load;n.fn.load=function(a,b,c){if("string"!=typeof a&&Hb)return Hb.apply(this,arguments);var d,e,f,g=this,h=a.indexOf(" ");return h>=0&&(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,dataType:"html",data:b}).done(function(a){f=arguments,g.html(d?n("<div>").append(n.parseHTML(a)).find(d):a)}).complete(c&&function(a,b){g.each(c,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};var Ib=a.document.documentElement;function Jb(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,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)?(typeof d.getBoundingClientRect!==U&&(e=d.getBoundingClientRect()),c=Jb(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||Ib;while(a&&!n.nodeName(a,"html")&&"static"===n.css(a,"position"))a=a.offsetParent;return a||Ib})}}),n.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(b,c){var d="pageYOffset"===c;n.fn[b]=function(e){return J(this,function(b,e,f){var g=Jb(b);return void 0===f?g?g[c]:b[e]:void(g?g.scrollTo(d?a.pageXOffset:f,d?f:a.pageYOffset):b[e]=f)},b,e,arguments.length,null)}}),n.each(["top","left"],function(a,b){n.cssHooks[b]=ya(k.pixelPosition,function(a,c){return c?(c=xa(a,b),va.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 J(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.size=function(){return this.length},n.fn.andSelf=n.fn.addBack,"function"==typeof define&&define.amd&&define("jquery",[],function(){return n});var Kb=a.jQuery,Lb=a.$;return n.noConflict=function(b){return a.$===n&&(a.$=Lb),b&&a.jQuery===n&&(a.jQuery=Kb),n},typeof b===U&&(a.jQuery=a.$=n),n});
  5. //# sourceMappingURL=jquery.min.map;
  6. /*!
  7. * Bootstrap v3.3.7 (http://getbootstrap.com)
  8. * Copyright 2011-2016 Twitter, Inc.
  9. * Licensed under the MIT license
  10. */
  11. 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){
  12. 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);
  13. define("bootstrap", ["jquery"], function(){});
  14. require.config({
  15. urlArgs: "v=" + requirejs.s.contexts._.config.config.site.version,
  16. packages: [{
  17. name: 'moment',
  18. location: '../libs/moment',
  19. main: 'moment'
  20. }],
  21. //在打包压缩时将会把include中的模块合并到主文件中
  22. include: ['css', 'layer', 'toastr', 'fast', 'backend', '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-select': '../libs/bootstrap-select/dist/js/bootstrap-select.min',
  42. 'bootstrap-select-lang': '../libs/bootstrap-select/dist/js/i18n/defaults-zh_CN',
  43. 'bootstrap-table': '../libs/bootstrap-table/dist/bootstrap-table.min',
  44. 'bootstrap-table-export': '../libs/bootstrap-table/dist/extensions/export/bootstrap-table-export.min',
  45. 'bootstrap-table-mobile': '../libs/bootstrap-table/dist/extensions/mobile/bootstrap-table-mobile',
  46. 'bootstrap-table-lang': '../libs/bootstrap-table/dist/locale/bootstrap-table-zh-CN',
  47. 'tableexport': '../libs/tableExport.jquery.plugin/tableExport.min',
  48. 'dragsort': '../libs/dragsort/jquery.dragsort',
  49. 'qrcode': '../libs/jquery-qrcode/jquery.qrcode.min',
  50. 'sortable': '../libs/Sortable/Sortable.min',
  51. 'addtabs': '../libs/jquery-addtabs/jquery.addtabs',
  52. 'slimscroll': '../libs/jquery-slimscroll/jquery.slimscroll',
  53. 'summernote': '../libs/summernote/dist/lang/summernote-zh-CN.min',
  54. 'validator-core': '../libs/nice-validator/dist/jquery.validator',
  55. 'validator-lang': '../libs/nice-validator/dist/local/zh-CN',
  56. 'plupload': '../libs/plupload/js/plupload.min',
  57. 'toastr': '../libs/toastr/toastr',
  58. 'jstree': '../libs/jstree/dist/jstree.min',
  59. 'layer': '../libs/layer/src/layer',
  60. 'cookie': '../libs/jquery.cookie/jquery.cookie',
  61. 'cxselect': '../libs/jquery-cxselect/js/jquery.cxselect',
  62. 'template': '../libs/art-template/dist/template-native',
  63. 'selectpage': '../libs/selectpage/selectpage',
  64. },
  65. // shim依赖配置
  66. shim: {
  67. 'bootstrap': ['jquery'],
  68. 'bootstrap-table': {
  69. deps: [
  70. 'bootstrap',
  71. // 'css!../libs/bootstrap-table/dist/bootstrap-table.min.css'
  72. ],
  73. exports: '$.fn.bootstrapTable'
  74. },
  75. 'bootstrap-table-lang': {
  76. deps: ['bootstrap-table'],
  77. exports: '$.fn.bootstrapTable.defaults'
  78. },
  79. 'bootstrap-table-export': {
  80. deps: ['bootstrap-table', 'tableexport'],
  81. exports: '$.fn.bootstrapTable.defaults'
  82. },
  83. 'bootstrap-table-mobile': {
  84. deps: ['bootstrap-table'],
  85. exports: '$.fn.bootstrapTable.defaults'
  86. },
  87. 'bootstrap-table-advancedsearch': {
  88. deps: ['bootstrap-table'],
  89. exports: '$.fn.bootstrapTable.defaults'
  90. },
  91. 'bootstrap-table-commonsearch': {
  92. deps: ['bootstrap-table'],
  93. exports: '$.fn.bootstrapTable.defaults'
  94. },
  95. 'bootstrap-table-template': {
  96. deps: ['bootstrap-table', 'template'],
  97. exports: '$.fn.bootstrapTable.defaults'
  98. },
  99. 'tableexport': {
  100. deps: ['jquery'],
  101. exports: '$.fn.extend'
  102. },
  103. 'slimscroll': {
  104. deps: ['jquery'],
  105. exports: '$.fn.extend'
  106. },
  107. 'adminlte': {
  108. deps: ['bootstrap', 'slimscroll'],
  109. exports: '$.AdminLTE'
  110. },
  111. 'bootstrap-datetimepicker': [
  112. 'moment/locale/zh-cn',
  113. // 'css!../libs/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.css',
  114. ],
  115. 'bootstrap-select': ['css!../libs/bootstrap-select/dist/css/bootstrap-select.min.css', ],
  116. 'bootstrap-select-lang': ['bootstrap-select'],
  117. 'summernote': ['../libs/summernote/dist/summernote.min', 'css!../libs/summernote/dist/summernote.css'],
  118. // 'toastr': ['css!../libs/toastr/toastr.min.css'],
  119. 'jstree': ['css!../libs/jstree/dist/themes/default/style.css', ],
  120. 'plupload': {
  121. deps: ['../libs/plupload/js/moxie.min'],
  122. exports: "plupload"
  123. },
  124. // 'layer': ['css!../libs/layer/build/skin/default/layer.css'],
  125. // 'validator-core': ['css!../libs/nice-validator/dist/jquery.validator.css'],
  126. 'validator-lang': ['validator-core'],
  127. // 'selectpage': ['css!../libs/selectpage/selectpage.css'],
  128. },
  129. baseUrl: requirejs.s.contexts._.config.config.site.cdnurl + '/assets/js/', //资源基础路径
  130. map: {
  131. '*': {
  132. 'css': '../libs/require-css/css.min'
  133. }
  134. },
  135. waitSeconds: 30,
  136. charset: 'utf-8' // 文件编码
  137. });
  138. require(['jquery', 'bootstrap'], function ($, undefined) {
  139. //初始配置
  140. var Config = requirejs.s.contexts._.config.config;
  141. //将Config渲染到全局
  142. window.Config = Config;
  143. // 配置语言包的路径
  144. var paths = {};
  145. paths['lang'] = Config.moduleurl + '/ajax/lang?callback=define&controllername=' + Config.controllername;
  146. // 避免目录冲突
  147. paths['backend/'] = 'backend/';
  148. require.config({paths: paths});
  149. // 初始化
  150. $(function () {
  151. require(['fast'], function (Fast) {
  152. require(['backend'], function (Backend) {
  153. //加载相应模块
  154. if (Config.jsname) {
  155. require([Config.jsname], function (Controller) {
  156. Controller[Config.actionname] != undefined && Controller[Config.actionname]();
  157. }, function (e) {
  158. console.error(e);
  159. // 这里可捕获模块加载的错误
  160. });
  161. }
  162. });
  163. });
  164. });
  165. });
  166. define("require-backend", function(){});
  167. 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});
  168. /**
  169. @Name:layer v3.0.3 Web弹层组件
  170. @Author:贤心
  171. @Site:http://layer.layui.com
  172. @License:MIT
  173. */
  174. ;!function(window, undefined){
  175. "use strict";
  176. var isLayui = window.layui && layui.define, $, win, ready = {
  177. getPath: function(){
  178. var js = document.scripts, script = js[js.length - 1], jsPath = script.src;
  179. if(script.getAttribute('merge')) return;
  180. return jsPath.substring(0, jsPath.lastIndexOf("/") + 1);
  181. }(),
  182. config: {}, end: {}, minIndex: 0, minLeft: [],
  183. btn: ['&#x786E;&#x5B9A;', '&#x53D6;&#x6D88;'],
  184. //五种原始层模式
  185. type: ['dialog', 'page', 'iframe', 'loading', 'tips']
  186. };
  187. //默认内置方法。
  188. var layer = {
  189. v: '3.0.3',
  190. ie: function(){ //ie版本
  191. var agent = navigator.userAgent.toLowerCase();
  192. return (!!window.ActiveXObject || "ActiveXObject" in window) ? (
  193. (agent.match(/msie\s(\d+)/) || [])[1] || '11' //由于ie11并没有msie的标识
  194. ) : false;
  195. }(),
  196. index: (window.layer && window.layer.v) ? 100000 : 0,
  197. path: ready.getPath,
  198. config: function(options, fn){
  199. options = options || {};
  200. layer.cache = ready.config = $.extend({}, ready.config, options);
  201. layer.path = ready.config.path || layer.path;
  202. typeof options.extend === 'string' && (options.extend = [options.extend]);
  203. if(ready.config.path) layer.ready();
  204. if(!options.extend) return this;
  205. isLayui
  206. ? layui.addcss('modules/layer/' + options.extend)
  207. : layer.link('skin/' + options.extend);
  208. return this;
  209. },
  210. //载入CSS配件
  211. link: function(href, fn, cssname){
  212. //未设置路径,则不主动加载css
  213. if(!layer.path) return;
  214. var head = $('head')[0], link = document.createElement('link');
  215. if(typeof fn === 'string') cssname = fn;
  216. var app = (cssname || href).replace(/\.|\//g, '');
  217. var id = 'layuicss-'+app, timeout = 0;
  218. link.rel = 'stylesheet';
  219. link.href = layer.path + href;
  220. link.id = id;
  221. if(!$('#'+ id)[0]){
  222. head.appendChild(link);
  223. }
  224. if(typeof fn !== 'function') return;
  225. //轮询css是否加载完毕
  226. (function poll() {
  227. if(++timeout > 8 * 1000 / 100){
  228. return window.console && console.error('layer.css: Invalid');
  229. };
  230. parseInt($('#'+id).css('width')) === 1989 ? fn() : setTimeout(poll, 100);
  231. }());
  232. },
  233. ready: function(callback){
  234. var cssname = 'skinlayercss', ver = '303';
  235. isLayui ? layui.addcss('modules/layer/default/layer.css?v='+layer.v+ver, callback, cssname)
  236. : layer.link('skin/default/layer.css?v='+layer.v+ver, callback, cssname);
  237. return this;
  238. },
  239. //各种快捷引用
  240. alert: function(content, options, yes){
  241. var type = typeof options === 'function';
  242. if(type) yes = options;
  243. return layer.open($.extend({
  244. content: content,
  245. yes: yes
  246. }, type ? {} : options));
  247. },
  248. confirm: function(content, options, yes, cancel){
  249. var type = typeof options === 'function';
  250. if(type){
  251. cancel = yes;
  252. yes = options;
  253. }
  254. return layer.open($.extend({
  255. content: content,
  256. btn: ready.btn,
  257. yes: yes,
  258. btn2: cancel
  259. }, type ? {} : options));
  260. },
  261. msg: function(content, options, end){ //最常用提示层
  262. var type = typeof options === 'function', rskin = ready.config.skin;
  263. var skin = (rskin ? rskin + ' ' + rskin + '-msg' : '')||'layui-layer-msg';
  264. var anim = doms.anim.length - 1;
  265. if(type) end = options;
  266. return layer.open($.extend({
  267. content: content,
  268. time: 3000,
  269. shade: false,
  270. skin: skin,
  271. title: false,
  272. closeBtn: false,
  273. btn: false,
  274. resize: false,
  275. end: end
  276. }, (type && !ready.config.skin) ? {
  277. skin: skin + ' layui-layer-hui',
  278. anim: anim
  279. } : function(){
  280. options = options || {};
  281. if(options.icon === -1 || options.icon === undefined && !ready.config.skin){
  282. options.skin = skin + ' ' + (options.skin||'layui-layer-hui');
  283. }
  284. return options;
  285. }()));
  286. },
  287. load: function(icon, options){
  288. return layer.open($.extend({
  289. type: 3,
  290. icon: icon || 0,
  291. resize: false,
  292. shade: 0.01
  293. }, options));
  294. },
  295. tips: function(content, follow, options){
  296. return layer.open($.extend({
  297. type: 4,
  298. content: [content, follow],
  299. closeBtn: false,
  300. time: 3000,
  301. shade: false,
  302. resize: false,
  303. fixed: false,
  304. maxWidth: 210
  305. }, options));
  306. }
  307. };
  308. var Class = function(setings){
  309. var that = this;
  310. that.index = ++layer.index;
  311. that.config = $.extend({}, that.config, ready.config, setings);
  312. document.body ? that.creat() : setTimeout(function(){
  313. that.creat();
  314. }, 30);
  315. };
  316. Class.pt = Class.prototype;
  317. //缓存常用字符
  318. var doms = ['layui-layer', '.layui-layer-title', '.layui-layer-main', '.layui-layer-dialog', 'layui-layer-iframe', 'layui-layer-content', 'layui-layer-btn', 'layui-layer-close'];
  319. doms.anim = ['layer-anim', 'layer-anim-01', 'layer-anim-02', 'layer-anim-03', 'layer-anim-04', 'layer-anim-05', 'layer-anim-06'];
  320. //默认配置
  321. Class.pt.config = {
  322. type: 0,
  323. shade: 0.3,
  324. fixed: true,
  325. move: doms[1],
  326. title: '&#x4FE1;&#x606F;',
  327. offset: 'auto',
  328. area: 'auto',
  329. closeBtn: 1,
  330. time: 0, //0表示不自动关闭
  331. zIndex: 19891014,
  332. maxWidth: 360,
  333. anim: 0,
  334. isOutAnim: true,
  335. icon: -1,
  336. moveType: 1,
  337. resize: true,
  338. scrollbar: true, //是否允许浏览器滚动条
  339. tips: 2
  340. };
  341. //容器
  342. Class.pt.vessel = function(conType, callback){
  343. var that = this, times = that.index, config = that.config;
  344. var zIndex = config.zIndex + times, titype = typeof config.title === 'object';
  345. var ismax = config.maxmin && (config.type === 1 || config.type === 2);
  346. var titleHTML = (config.title ? '<div class="layui-layer-title" style="'+ (titype ? config.title[1] : '') +'">'
  347. + (titype ? config.title[0] : config.title)
  348. + '</div>' : '');
  349. config.zIndex = zIndex;
  350. callback([
  351. //遮罩
  352. config.shade ? ('<div class="layui-layer-shade" id="layui-layer-shade'+ times +'" times="'+ times +'" style="'+ ('z-index:'+ (zIndex-1) +'; background-color:'+ (config.shade[1]||'#000') +'; opacity:'+ (config.shade[0]||config.shade) +'; filter:alpha(opacity='+ (config.shade[0]*100||config.shade*100) +');') +'"></div>') : '',
  353. //主体
  354. '<div class="'+ doms[0] + (' layui-layer-'+ready.type[config.type]) + (((config.type == 0 || config.type == 2) && !config.shade) ? ' layui-layer-border' : '') + ' ' + (config.skin||'') +'" id="'+ doms[0] + times +'" type="'+ ready.type[config.type] +'" times="'+ times +'" showtime="'+ config.time +'" conType="'+ (conType ? 'object' : 'string') +'" style="z-index: '+ zIndex +'; width:'+ config.area[0] + ';height:' + config.area[1] + (config.fixed ? '' : ';position:absolute;') +'">'
  355. + (conType && config.type != 2 ? '' : titleHTML)
  356. + '<div id="'+ (config.id||'') +'" class="layui-layer-content'+ ((config.type == 0 && config.icon !== -1) ? ' layui-layer-padding' :'') + (config.type == 3 ? ' layui-layer-loading'+config.icon : '') +'">'
  357. + (config.type == 0 && config.icon !== -1 ? '<i class="layui-layer-ico layui-layer-ico'+ config.icon +'"></i>' : '')
  358. + (config.type == 1 && conType ? '' : (config.content||''))
  359. + '</div>'
  360. + '<span class="layui-layer-setwin">'+ function(){
  361. var closebtn = ismax ? '<a class="layui-layer-min" href="javascript:;"><cite></cite></a><a class="layui-layer-ico layui-layer-max" href="javascript:;"></a>' : '';
  362. config.closeBtn && (closebtn += '<a class="layui-layer-ico '+ doms[7] +' '+ doms[7] + (config.title ? config.closeBtn : (config.type == 4 ? '1' : '2')) +'" href="javascript:;"></a>');
  363. return closebtn;
  364. }() + '</span>'
  365. + (config.btn ? function(){
  366. var button = '';
  367. typeof config.btn === 'string' && (config.btn = [config.btn]);
  368. for(var i = 0, len = config.btn.length; i < len; i++){
  369. button += '<a class="'+ doms[6] +''+ i +'">'+ config.btn[i] +'</a>'
  370. }
  371. return '<div class="'+ doms[6] +' layui-layer-btn-'+ (config.btnAlign||'') +'">'+ button +'</div>'
  372. }() : '')
  373. + (config.resize ? '<span class="layui-layer-resize"></span>' : '')
  374. + '</div>'
  375. ], titleHTML, $('<div class="layui-layer-move"></div>'));
  376. return that;
  377. };
  378. //创建骨架
  379. Class.pt.creat = function(){
  380. var that = this
  381. ,config = that.config
  382. ,times = that.index, nodeIndex
  383. ,content = config.content
  384. ,conType = typeof content === 'object'
  385. ,body = $('body');
  386. if(config.id && $('#'+config.id)[0]) return;
  387. if(typeof config.area === 'string'){
  388. config.area = config.area === 'auto' ? ['', ''] : [config.area, ''];
  389. }
  390. //anim兼容旧版shift
  391. if(config.shift){
  392. config.anim = config.shift;
  393. }
  394. if(layer.ie == 6){
  395. config.fixed = false;
  396. }
  397. switch(config.type){
  398. case 0:
  399. config.btn = ('btn' in config) ? config.btn : ready.btn[0];
  400. layer.closeAll('dialog');
  401. break;
  402. case 2:
  403. var content = config.content = conType ? config.content : [config.content||'http://layer.layui.com', 'auto'];
  404. config.content = '<iframe scrolling="'+ (config.content[1]||'auto') +'" allowtransparency="true" id="'+ doms[4] +''+ times +'" name="'+ doms[4] +''+ times +'" onload="this.className=\'\';" class="layui-layer-load" frameborder="0" src="' + config.content[0] + '"></iframe>';
  405. break;
  406. case 3:
  407. delete config.title;
  408. delete config.closeBtn;
  409. config.icon === -1 && (config.icon === 0);
  410. layer.closeAll('loading');
  411. break;
  412. case 4:
  413. conType || (config.content = [config.content, 'body']);
  414. config.follow = config.content[1];
  415. config.content = config.content[0] + '<i class="layui-layer-TipsG"></i>';
  416. delete config.title;
  417. config.tips = typeof config.tips === 'object' ? config.tips : [config.tips, true];
  418. config.tipsMore || layer.closeAll('tips');
  419. break;
  420. }
  421. //建立容器
  422. that.vessel(conType, function(html, titleHTML, moveElem){
  423. body.append(html[0]);
  424. conType ? function(){
  425. (config.type == 2 || config.type == 4) ? function(){
  426. $('body').append(html[1]);
  427. }() : function(){
  428. if(!content.parents('.'+doms[0])[0]){
  429. content.data('display', content.css('display')).show().addClass('layui-layer-wrap').wrap(html[1]);
  430. $('#'+ doms[0] + times).find('.'+doms[5]).before(titleHTML);
  431. }
  432. }();
  433. }() : body.append(html[1]);
  434. $('.layui-layer-move')[0] || body.append(ready.moveElem = moveElem);
  435. that.layero = $('#'+ doms[0] + times);
  436. config.scrollbar || doms.html.css('overflow', 'hidden').attr('layer-full', times);
  437. }).auto(times);
  438. config.type == 2 && layer.ie == 6 && that.layero.find('iframe').attr('src', content[0]);
  439. //坐标自适应浏览器窗口尺寸
  440. config.type == 4 ? that.tips() : that.offset();
  441. if(config.fixed){
  442. win.on('resize', function(){
  443. that.offset();
  444. (/^\d+%$/.test(config.area[0]) || /^\d+%$/.test(config.area[1])) && that.auto(times);
  445. config.type == 4 && that.tips();
  446. });
  447. }
  448. config.time <= 0 || setTimeout(function(){
  449. layer.close(that.index)
  450. }, config.time);
  451. that.move().callback();
  452. //为兼容jQuery3.0的css动画影响元素尺寸计算
  453. if(doms.anim[config.anim]){
  454. that.layero.addClass(doms.anim[config.anim]);
  455. };
  456. //记录关闭动画
  457. if(config.isOutAnim){
  458. that.layero.data('isOutAnim', true);
  459. }
  460. };
  461. //自适应
  462. Class.pt.auto = function(index){
  463. var that = this, config = that.config, layero = $('#'+ doms[0] + index);
  464. if(config.area[0] === '' && config.maxWidth > 0){
  465. //为了修复IE7下一个让人难以理解的bug
  466. if(layer.ie && layer.ie < 8 && config.btn){
  467. layero.width(layero.innerWidth());
  468. }
  469. layero.outerWidth() > config.maxWidth && layero.width(config.maxWidth);
  470. }
  471. var area = [layero.innerWidth(), layero.innerHeight()];
  472. var titHeight = layero.find(doms[1]).outerHeight() || 0;
  473. var btnHeight = layero.find('.'+doms[6]).outerHeight() || 0;
  474. function setHeight(elem){
  475. elem = layero.find(elem);
  476. elem.height(area[1] - titHeight - btnHeight - 2*(parseFloat(elem.css('padding-top'))|0));
  477. }
  478. switch(config.type){
  479. case 2:
  480. setHeight('iframe');
  481. break;
  482. default:
  483. if(config.area[1] === ''){
  484. if(config.fixed && area[1] >= win.height()){
  485. area[1] = win.height();
  486. setHeight('.'+doms[5]);
  487. }
  488. } else {
  489. setHeight('.'+doms[5]);
  490. }
  491. break;
  492. }
  493. return that;
  494. };
  495. //计算坐标
  496. Class.pt.offset = function(){
  497. var that = this, config = that.config, layero = that.layero;
  498. var area = [layero.outerWidth(), layero.outerHeight()];
  499. var type = typeof config.offset === 'object';
  500. that.offsetTop = (win.height() - area[1])/2;
  501. that.offsetLeft = (win.width() - area[0])/2;
  502. if(type){
  503. that.offsetTop = config.offset[0];
  504. that.offsetLeft = config.offset[1]||that.offsetLeft;
  505. } else if(config.offset !== 'auto'){
  506. if(config.offset === 't'){ //上
  507. that.offsetTop = 0;
  508. } else if(config.offset === 'r'){ //右
  509. that.offsetLeft = win.width() - area[0];
  510. } else if(config.offset === 'b'){ //下
  511. that.offsetTop = win.height() - area[1];
  512. } else if(config.offset === 'l'){ //左
  513. that.offsetLeft = 0;
  514. } else if(config.offset === 'lt'){ //左上角
  515. that.offsetTop = 0;
  516. that.offsetLeft = 0;
  517. } else if(config.offset === 'lb'){ //左下角
  518. that.offsetTop = win.height() - area[1];
  519. that.offsetLeft = 0;
  520. } else if(config.offset === 'rt'){ //右上角
  521. that.offsetTop = 0;
  522. that.offsetLeft = win.width() - area[0];
  523. } else if(config.offset === 'rb'){ //右下角
  524. that.offsetTop = win.height() - area[1];
  525. that.offsetLeft = win.width() - area[0];
  526. } else {
  527. that.offsetTop = config.offset;
  528. }
  529. }
  530. if(!config.fixed){
  531. that.offsetTop = /%$/.test(that.offsetTop) ?
  532. win.height()*parseFloat(that.offsetTop)/100
  533. : parseFloat(that.offsetTop);
  534. that.offsetLeft = /%$/.test(that.offsetLeft) ?
  535. win.width()*parseFloat(that.offsetLeft)/100
  536. : parseFloat(that.offsetLeft);
  537. that.offsetTop += win.scrollTop();
  538. that.offsetLeft += win.scrollLeft();
  539. }
  540. if(layero.attr('minLeft')){
  541. that.offsetTop = win.height() - (layero.find(doms[1]).outerHeight() || 0);
  542. that.offsetLeft = layero.css('left');
  543. }
  544. layero.css({top: that.offsetTop, left: that.offsetLeft});
  545. };
  546. //Tips
  547. Class.pt.tips = function(){
  548. var that = this, config = that.config, layero = that.layero;
  549. var layArea = [layero.outerWidth(), layero.outerHeight()], follow = $(config.follow);
  550. if(!follow[0]) follow = $('body');
  551. var goal = {
  552. width: follow.outerWidth(),
  553. height: follow.outerHeight(),
  554. top: follow.offset().top,
  555. left: follow.offset().left
  556. }, tipsG = layero.find('.layui-layer-TipsG');
  557. var guide = config.tips[0];
  558. config.tips[1] || tipsG.remove();
  559. goal.autoLeft = function(){
  560. if(goal.left + layArea[0] - win.width() > 0){
  561. goal.tipLeft = goal.left + goal.width - layArea[0];
  562. tipsG.css({right: 12, left: 'auto'});
  563. } else {
  564. goal.tipLeft = goal.left;
  565. };
  566. };
  567. //辨别tips的方位
  568. goal.where = [function(){ //上
  569. goal.autoLeft();
  570. goal.tipTop = goal.top - layArea[1] - 10;
  571. tipsG.removeClass('layui-layer-TipsB').addClass('layui-layer-TipsT').css('border-right-color', config.tips[1]);
  572. }, function(){ //右
  573. goal.tipLeft = goal.left + goal.width + 10;
  574. goal.tipTop = goal.top;
  575. tipsG.removeClass('layui-layer-TipsL').addClass('layui-layer-TipsR').css('border-bottom-color', config.tips[1]);
  576. }, function(){ //下
  577. goal.autoLeft();
  578. goal.tipTop = goal.top + goal.height + 10;
  579. tipsG.removeClass('layui-layer-TipsT').addClass('layui-layer-TipsB').css('border-right-color', config.tips[1]);
  580. }, function(){ //左
  581. goal.tipLeft = goal.left - layArea[0] - 10;
  582. goal.tipTop = goal.top;
  583. tipsG.removeClass('layui-layer-TipsR').addClass('layui-layer-TipsL').css('border-bottom-color', config.tips[1]);
  584. }];
  585. goal.where[guide-1]();
  586. /* 8*2为小三角形占据的空间 */
  587. if(guide === 1){
  588. goal.top - (win.scrollTop() + layArea[1] + 8*2) < 0 && goal.where[2]();
  589. } else if(guide === 2){
  590. win.width() - (goal.left + goal.width + layArea[0] + 8*2) > 0 || goal.where[3]()
  591. } else if(guide === 3){
  592. (goal.top - win.scrollTop() + goal.height + layArea[1] + 8*2) - win.height() > 0 && goal.where[0]();
  593. } else if(guide === 4){
  594. layArea[0] + 8*2 - goal.left > 0 && goal.where[1]()
  595. }
  596. layero.find('.'+doms[5]).css({
  597. 'background-color': config.tips[1],
  598. 'padding-right': (config.closeBtn ? '30px' : '')
  599. });
  600. layero.css({
  601. left: goal.tipLeft - (config.fixed ? win.scrollLeft() : 0),
  602. top: goal.tipTop - (config.fixed ? win.scrollTop() : 0)
  603. });
  604. }
  605. //拖拽层
  606. Class.pt.move = function(){
  607. var that = this
  608. ,config = that.config
  609. ,_DOC = $(document)
  610. ,layero = that.layero
  611. ,moveElem = layero.find(config.move)
  612. ,resizeElem = layero.find('.layui-layer-resize')
  613. ,dict = {};
  614. if(config.move){
  615. moveElem.css('cursor', 'move');
  616. }
  617. moveElem.on('mousedown', function(e){
  618. e.preventDefault();
  619. if(config.move){
  620. dict.moveStart = true;
  621. dict.offset = [
  622. e.clientX - parseFloat(layero.css('left'))
  623. ,e.clientY - parseFloat(layero.css('top'))
  624. ];
  625. ready.moveElem.css('cursor', 'move').show();
  626. }
  627. });
  628. resizeElem.on('mousedown', function(e){
  629. e.preventDefault();
  630. dict.resizeStart = true;
  631. dict.offset = [e.clientX, e.clientY];
  632. dict.area = [
  633. layero.outerWidth()
  634. ,layero.outerHeight()
  635. ];
  636. ready.moveElem.css('cursor', 'se-resize').show();
  637. });
  638. _DOC.on('mousemove', function(e){
  639. //拖拽移动
  640. if(dict.moveStart){
  641. var X = e.clientX - dict.offset[0]
  642. ,Y = e.clientY - dict.offset[1]
  643. ,fixed = layero.css('position') === 'fixed';
  644. e.preventDefault();
  645. dict.stX = fixed ? 0 : win.scrollLeft();
  646. dict.stY = fixed ? 0 : win.scrollTop();
  647. //控制元素不被拖出窗口外
  648. if(!config.moveOut){
  649. var setRig = win.width() - layero.outerWidth() + dict.stX
  650. ,setBot = win.height() - layero.outerHeight() + dict.stY;
  651. X < dict.stX && (X = dict.stX);
  652. X > setRig && (X = setRig);
  653. Y < dict.stY && (Y = dict.stY);
  654. Y > setBot && (Y = setBot);
  655. }
  656. layero.css({
  657. left: X
  658. ,top: Y
  659. });
  660. }
  661. //Resize
  662. if(config.resize && dict.resizeStart){
  663. var X = e.clientX - dict.offset[0]
  664. ,Y = e.clientY - dict.offset[1];
  665. e.preventDefault();
  666. layer.style(that.index, {
  667. width: dict.area[0] + X
  668. ,height: dict.area[1] + Y
  669. })
  670. dict.isResize = true;
  671. config.resizing && config.resizing(layero);
  672. }
  673. }).on('mouseup', function(e){
  674. if(dict.moveStart){
  675. delete dict.moveStart;
  676. ready.moveElem.hide();
  677. config.moveEnd && config.moveEnd(layero);
  678. }
  679. if(dict.resizeStart){
  680. delete dict.resizeStart;
  681. ready.moveElem.hide();
  682. }
  683. });
  684. return that;
  685. };
  686. Class.pt.callback = function(){
  687. var that = this, layero = that.layero, config = that.config;
  688. that.openLayer();
  689. if(config.success){
  690. if(config.type == 2){
  691. layero.find('iframe').on('load', function(){
  692. config.success(layero, that.index);
  693. });
  694. } else {
  695. config.success(layero, that.index);
  696. }
  697. }
  698. layer.ie == 6 && that.IE6(layero);
  699. //按钮
  700. layero.find('.'+ doms[6]).children('a').on('click', function(){
  701. var index = $(this).index();
  702. if(index === 0){
  703. if(config.yes){
  704. config.yes(that.index, layero)
  705. } else if(config['btn1']){
  706. config['btn1'](that.index, layero)
  707. } else {
  708. layer.close(that.index);
  709. }
  710. } else {
  711. var close = config['btn'+(index+1)] && config['btn'+(index+1)](that.index, layero);
  712. close === false || layer.close(that.index);
  713. }
  714. });
  715. //取消
  716. function cancel(){
  717. var close = config.cancel && config.cancel(that.index, layero);
  718. close === false || layer.close(that.index);
  719. }
  720. //右上角关闭回调
  721. layero.find('.'+ doms[7]).on('click', cancel);
  722. //点遮罩关闭
  723. if(config.shadeClose){
  724. $('#layui-layer-shade'+ that.index).on('click', function(){
  725. layer.close(that.index);
  726. });
  727. }
  728. //最小化
  729. layero.find('.layui-layer-min').on('click', function(){
  730. var min = config.min && config.min(layero);
  731. min === false || layer.min(that.index, config);
  732. });
  733. //全屏/还原
  734. layero.find('.layui-layer-max').on('click', function(){
  735. if($(this).hasClass('layui-layer-maxmin')){
  736. layer.restore(that.index);
  737. config.restore && config.restore(layero);
  738. } else {
  739. layer.full(that.index, config);
  740. setTimeout(function(){
  741. config.full && config.full(layero);
  742. }, 100);
  743. }
  744. });
  745. config.end && (ready.end[that.index] = config.end);
  746. };
  747. //for ie6 恢复select
  748. ready.reselect = function(){
  749. $.each($('select'), function(index , value){
  750. var sthis = $(this);
  751. if(!sthis.parents('.'+doms[0])[0]){
  752. (sthis.attr('layer') == 1 && $('.'+doms[0]).length < 1) && sthis.removeAttr('layer').show();
  753. }
  754. sthis = null;
  755. });
  756. };
  757. Class.pt.IE6 = function(layero){
  758. //隐藏select
  759. $('select').each(function(index , value){
  760. var sthis = $(this);
  761. if(!sthis.parents('.'+doms[0])[0]){
  762. sthis.css('display') === 'none' || sthis.attr({'layer' : '1'}).hide();
  763. }
  764. sthis = null;
  765. });
  766. };
  767. //需依赖原型的对外方法
  768. Class.pt.openLayer = function(){
  769. var that = this;
  770. //置顶当前窗口
  771. layer.zIndex = that.config.zIndex;
  772. layer.setTop = function(layero){
  773. var setZindex = function(){
  774. layer.zIndex++;
  775. layero.css('z-index', layer.zIndex + 1);
  776. };
  777. layer.zIndex = parseInt(layero[0].style.zIndex);
  778. layero.on('mousedown', setZindex);
  779. return layer.zIndex;
  780. };
  781. };
  782. ready.record = function(layero){
  783. var area = [
  784. layero.width(),
  785. layero.height(),
  786. layero.position().top,
  787. layero.position().left + parseFloat(layero.css('margin-left'))
  788. ];
  789. layero.find('.layui-layer-max').addClass('layui-layer-maxmin');
  790. layero.attr({area: area});
  791. };
  792. ready.rescollbar = function(index){
  793. if(doms.html.attr('layer-full') == index){
  794. if(doms.html[0].style.removeProperty){
  795. doms.html[0].style.removeProperty('overflow');
  796. } else {
  797. doms.html[0].style.removeAttribute('overflow');
  798. }
  799. doms.html.removeAttr('layer-full');
  800. }
  801. };
  802. /** 内置成员 */
  803. window.layer = layer;
  804. //获取子iframe的DOM
  805. layer.getChildFrame = function(selector, index){
  806. index = index || $('.'+doms[4]).attr('times');
  807. return $('#'+ doms[0] + index).find('iframe').contents().find(selector);
  808. };
  809. //得到当前iframe层的索引,子iframe时使用
  810. layer.getFrameIndex = function(name){
  811. return $('#'+ name).parents('.'+doms[4]).attr('times');
  812. };
  813. //iframe层自适应宽高
  814. layer.iframeAuto = function(index){
  815. if(!index) return;
  816. var heg = layer.getChildFrame('html', index).outerHeight();
  817. var layero = $('#'+ doms[0] + index);
  818. var titHeight = layero.find(doms[1]).outerHeight() || 0;
  819. var btnHeight = layero.find('.'+doms[6]).outerHeight() || 0;
  820. layero.css({height: heg + titHeight + btnHeight});
  821. layero.find('iframe').css({height: heg});
  822. };
  823. //重置iframe url
  824. layer.iframeSrc = function(index, url){
  825. $('#'+ doms[0] + index).find('iframe').attr('src', url);
  826. };
  827. //设定层的样式
  828. layer.style = function(index, options, limit){
  829. var layero = $('#'+ doms[0] + index)
  830. ,contElem = layero.find('.layui-layer-content')
  831. ,type = layero.attr('type')
  832. ,titHeight = layero.find(doms[1]).outerHeight() || 0
  833. ,btnHeight = layero.find('.'+doms[6]).outerHeight() || 0
  834. ,minLeft = layero.attr('minLeft');
  835. if(type === ready.type[3] || type === ready.type[4]){
  836. return;
  837. }
  838. if(!limit){
  839. if(parseFloat(options.width) <= 260){
  840. options.width = 260;
  841. };
  842. if(parseFloat(options.height) - titHeight - btnHeight <= 64){
  843. options.height = 64 + titHeight + btnHeight;
  844. };
  845. }
  846. layero.css(options);
  847. btnHeight = layero.find('.'+doms[6]).outerHeight();
  848. if(type === ready.type[2]){
  849. layero.find('iframe').css({
  850. height: parseFloat(options.height) - titHeight - btnHeight
  851. });
  852. } else {
  853. contElem.css({
  854. height: parseFloat(options.height) - titHeight - btnHeight
  855. - parseFloat(contElem.css('padding-top'))
  856. - parseFloat(contElem.css('padding-bottom'))
  857. })
  858. }
  859. };
  860. //最小化
  861. layer.min = function(index, options){
  862. var layero = $('#'+ doms[0] + index)
  863. ,titHeight = layero.find(doms[1]).outerHeight() || 0
  864. ,left = layero.attr('minLeft') || (181*ready.minIndex)+'px'
  865. ,position = layero.css('position');
  866. ready.record(layero);
  867. if(ready.minLeft[0]){
  868. left = ready.minLeft[0];
  869. ready.minLeft.shift();
  870. }
  871. layero.attr('position', position);
  872. layer.style(index, {
  873. width: 180
  874. ,height: titHeight
  875. ,left: left
  876. ,top: win.height() - titHeight
  877. ,position: 'fixed'
  878. ,overflow: 'hidden'
  879. }, true);
  880. layero.find('.layui-layer-min').hide();
  881. layero.attr('type') === 'page' && layero.find(doms[4]).hide();
  882. ready.rescollbar(index);
  883. if(!layero.attr('minLeft')){
  884. ready.minIndex++;
  885. }
  886. layero.attr('minLeft', left);
  887. };
  888. //还原
  889. layer.restore = function(index){
  890. var layero = $('#'+ doms[0] + index), area = layero.attr('area').split(',');
  891. var type = layero.attr('type');
  892. layer.style(index, {
  893. width: parseFloat(area[0]),
  894. height: parseFloat(area[1]),
  895. top: parseFloat(area[2]),
  896. left: parseFloat(area[3]),
  897. position: layero.attr('position'),
  898. overflow: 'visible'
  899. }, true);
  900. layero.find('.layui-layer-max').removeClass('layui-layer-maxmin');
  901. layero.find('.layui-layer-min').show();
  902. layero.attr('type') === 'page' && layero.find(doms[4]).show();
  903. ready.rescollbar(index);
  904. };
  905. //全屏
  906. layer.full = function(index){
  907. var layero = $('#'+ doms[0] + index), timer;
  908. ready.record(layero);
  909. if(!doms.html.attr('layer-full')){
  910. doms.html.css('overflow','hidden').attr('layer-full', index);
  911. }
  912. clearTimeout(timer);
  913. timer = setTimeout(function(){
  914. var isfix = layero.css('position') === 'fixed';
  915. layer.style(index, {
  916. top: isfix ? 0 : win.scrollTop(),
  917. left: isfix ? 0 : win.scrollLeft(),
  918. width: win.width(),
  919. height: win.height()
  920. }, true);
  921. layero.find('.layui-layer-min').hide();
  922. }, 100);
  923. };
  924. //改变title
  925. layer.title = function(name, index){
  926. var title = $('#'+ doms[0] + (index||layer.index)).find(doms[1]);
  927. title.html(name);
  928. };
  929. //关闭layer总方法
  930. layer.close = function(index){
  931. var layero = $('#'+ doms[0] + index), type = layero.attr('type'), closeAnim = 'layer-anim-close';
  932. if(!layero[0]) return;
  933. var WRAP = 'layui-layer-wrap', remove = function(){
  934. if(type === ready.type[1] && layero.attr('conType') === 'object'){
  935. layero.children(':not(.'+ doms[5] +')').remove();
  936. var wrap = layero.find('.'+WRAP);
  937. for(var i = 0; i < 2; i++){
  938. wrap.unwrap();
  939. }
  940. wrap.css('display', wrap.data('display')).removeClass(WRAP);
  941. } else {
  942. //低版本IE 回收 iframe
  943. if(type === ready.type[2]){
  944. try {
  945. var iframe = $('#'+doms[4]+index)[0];
  946. iframe.contentWindow.document.write('');
  947. iframe.contentWindow.close();
  948. layero.find('.'+doms[5])[0].removeChild(iframe);
  949. } catch(e){}
  950. }
  951. layero[0].innerHTML = '';
  952. layero.remove();
  953. }
  954. typeof ready.end[index] === 'function' && ready.end[index]();
  955. delete ready.end[index];
  956. };
  957. if(layero.data('isOutAnim')){
  958. layero.addClass(closeAnim);
  959. }
  960. $('#layui-layer-moves, #layui-layer-shade' + index).remove();
  961. layer.ie == 6 && ready.reselect();
  962. ready.rescollbar(index);
  963. if(layero.attr('minLeft')){
  964. ready.minIndex--;
  965. ready.minLeft.push(layero.attr('minLeft'));
  966. }
  967. if((layer.ie && layer.ie < 10) || !layero.data('isOutAnim')){
  968. remove()
  969. } else {
  970. setTimeout(function(){
  971. remove();
  972. }, 200);
  973. }
  974. };
  975. //关闭所有层
  976. layer.closeAll = function(type){
  977. $.each($('.'+doms[0]), function(){
  978. var othis = $(this);
  979. var is = type ? (othis.attr('type') === type) : 1;
  980. is && layer.close(othis.attr('times'));
  981. is = null;
  982. });
  983. };
  984. /**
  985. 拓展模块,layui开始合并在一起
  986. */
  987. var cache = layer.cache||{}, skin = function(type){
  988. return (cache.skin ? (' ' + cache.skin + ' ' + cache.skin + '-'+type) : '');
  989. };
  990. //仿系统prompt
  991. layer.prompt = function(options, yes){
  992. var style = '';
  993. options = options || {};
  994. if(typeof options === 'function') yes = options;
  995. if(options.area){
  996. var area = options.area;
  997. style = 'style="width: '+ area[0] +'; height: '+ area[1] + ';"';
  998. delete options.area;
  999. }
  1000. var prompt, content = options.formType == 2 ? '<textarea class="layui-layer-input"' + style +'>' + (options.value||'') +'</textarea>' : function(){
  1001. return '<input type="'+ (options.formType == 1 ? 'password' : 'text') +'" class="layui-layer-input" value="'+ (options.value||'') +'">';
  1002. }();
  1003. var success = options.success;
  1004. delete options.success;
  1005. return layer.open($.extend({
  1006. type: 1
  1007. ,btn: ['&#x786E;&#x5B9A;','&#x53D6;&#x6D88;']
  1008. ,content: content
  1009. ,skin: 'layui-layer-prompt' + skin('prompt')
  1010. ,maxWidth: win.width()
  1011. ,success: function(layero){
  1012. prompt = layero.find('.layui-layer-input');
  1013. prompt.focus();
  1014. typeof success === 'function' && success(layero);
  1015. }
  1016. ,resize: false
  1017. ,yes: function(index){
  1018. var value = prompt.val();
  1019. if(value === ''){
  1020. prompt.focus();
  1021. } else if(value.length > (options.maxlength||500)) {
  1022. layer.tips('&#x6700;&#x591A;&#x8F93;&#x5165;'+ (options.maxlength || 500) +'&#x4E2A;&#x5B57;&#x6570;', prompt, {tips: 1});
  1023. } else {
  1024. yes && yes(value, index, prompt);
  1025. }
  1026. }
  1027. }, options));
  1028. };
  1029. //tab层
  1030. layer.tab = function(options){
  1031. options = options || {};
  1032. var tab = options.tab || {}
  1033. ,success = options.success;
  1034. delete options.success;
  1035. return layer.open($.extend({
  1036. type: 1,
  1037. skin: 'layui-layer-tab' + skin('tab'),
  1038. resize: false,
  1039. title: function(){
  1040. var len = tab.length, ii = 1, str = '';
  1041. if(len > 0){
  1042. str = '<span class="layui-layer-tabnow">'+ tab[0].title +'</span>';
  1043. for(; ii < len; ii++){
  1044. str += '<span>'+ tab[ii].title +'</span>';
  1045. }
  1046. }
  1047. return str;
  1048. }(),
  1049. content: '<ul class="layui-layer-tabmain">'+ function(){
  1050. var len = tab.length, ii = 1, str = '';
  1051. if(len > 0){
  1052. str = '<li class="layui-layer-tabli xubox_tab_layer">'+ (tab[0].content || 'no content') +'</li>';
  1053. for(; ii < len; ii++){
  1054. str += '<li class="layui-layer-tabli">'+ (tab[ii].content || 'no content') +'</li>';
  1055. }
  1056. }
  1057. return str;
  1058. }() +'</ul>',
  1059. success: function(layero){
  1060. var btn = layero.find('.layui-layer-title').children();
  1061. var main = layero.find('.layui-layer-tabmain').children();
  1062. btn.on('mousedown', function(e){
  1063. e.stopPropagation ? e.stopPropagation() : e.cancelBubble = true;
  1064. var othis = $(this), index = othis.index();
  1065. othis.addClass('layui-layer-tabnow').siblings().removeClass('layui-layer-tabnow');
  1066. main.eq(index).show().siblings().hide();
  1067. typeof options.change === 'function' && options.change(index);
  1068. });
  1069. typeof success === 'function' && success(layero);
  1070. }
  1071. }, options));
  1072. };
  1073. //相册层
  1074. layer.photos = function(options, loop, key){
  1075. var dict = {};
  1076. options = options || {};
  1077. if(!options.photos) return;
  1078. var type = options.photos.constructor === Object;
  1079. var photos = type ? options.photos : {}, data = photos.data || [];
  1080. var start = photos.start || 0;
  1081. dict.imgIndex = (start|0) + 1;
  1082. options.img = options.img || 'img';
  1083. var success = options.success;
  1084. delete options.success;
  1085. if(!type){ //页面直接获取
  1086. var parent = $(options.photos), pushData = function(){
  1087. data = [];
  1088. parent.find(options.img).each(function(index){
  1089. var othis = $(this);
  1090. othis.attr('layer-index', index);
  1091. data.push({
  1092. alt: othis.attr('alt'),
  1093. pid: othis.attr('layer-pid'),
  1094. src: othis.attr('layer-src') || othis.attr('src'),
  1095. thumb: othis.attr('src')
  1096. });
  1097. })
  1098. };
  1099. pushData();
  1100. if (data.length === 0) return;
  1101. loop || parent.on('click', options.img, function(){
  1102. var othis = $(this), index = othis.attr('layer-index');
  1103. layer.photos($.extend(options, {
  1104. photos: {
  1105. start: index,
  1106. data: data,
  1107. tab: options.tab
  1108. },
  1109. full: options.full
  1110. }), true);
  1111. pushData();
  1112. })
  1113. //不直接弹出
  1114. if(!loop) return;
  1115. } else if (data.length === 0){
  1116. return layer.msg('&#x6CA1;&#x6709;&#x56FE;&#x7247;');
  1117. }
  1118. //上一张
  1119. dict.imgprev = function(key){
  1120. dict.imgIndex--;
  1121. if(dict.imgIndex < 1){
  1122. dict.imgIndex = data.length;
  1123. }
  1124. dict.tabimg(key);
  1125. };
  1126. //下一张
  1127. dict.imgnext = function(key,errorMsg){
  1128. dict.imgIndex++;
  1129. if(dict.imgIndex > data.length){
  1130. dict.imgIndex = 1;
  1131. if (errorMsg) {return};
  1132. }
  1133. dict.tabimg(key)
  1134. };
  1135. //方向键
  1136. dict.keyup = function(event){
  1137. if(!dict.end){
  1138. var code = event.keyCode;
  1139. event.preventDefault();
  1140. if(code === 37){
  1141. dict.imgprev(true);
  1142. } else if(code === 39) {
  1143. dict.imgnext(true);
  1144. } else if(code === 27) {
  1145. layer.close(dict.index);
  1146. }
  1147. }
  1148. }
  1149. //切换
  1150. dict.tabimg = function(key){
  1151. if(data.length <= 1) return;
  1152. photos.start = dict.imgIndex - 1;
  1153. layer.close(dict.index);
  1154. return layer.photos(options, true, key);
  1155. setTimeout(function(){
  1156. layer.photos(options, true, key);
  1157. }, 200);
  1158. }
  1159. //一些动作
  1160. dict.event = function(){
  1161. dict.bigimg.hover(function(){
  1162. dict.imgsee.show();
  1163. }, function(){
  1164. dict.imgsee.hide();
  1165. });
  1166. dict.bigimg.find('.layui-layer-imgprev').on('click', function(event){
  1167. event.preventDefault();
  1168. dict.imgprev();
  1169. });
  1170. dict.bigimg.find('.layui-layer-imgnext').on('click', function(event){
  1171. event.preventDefault();
  1172. dict.imgnext();
  1173. });
  1174. $(document).on('keyup', dict.keyup);
  1175. };
  1176. //图片预加载
  1177. function loadImage(url, callback, error) {
  1178. var img = new Image();
  1179. img.src = url;
  1180. if(img.complete){
  1181. return callback(img);
  1182. }
  1183. img.onload = function(){
  1184. img.onload = null;
  1185. callback(img);
  1186. };
  1187. img.onerror = function(e){
  1188. img.onerror = null;
  1189. error(e);
  1190. };
  1191. };
  1192. dict.loadi = layer.load(1, {
  1193. shade: 'shade' in options ? false : 0.9,
  1194. scrollbar: false
  1195. });
  1196. loadImage(data[start].src, function(img){
  1197. layer.close(dict.loadi);
  1198. dict.index = layer.open($.extend({
  1199. type: 1,
  1200. id: 'layui-layer-photos',
  1201. area: function(){
  1202. var imgarea = [img.width, img.height];
  1203. var winarea = [$(window).width() - 100, $(window).height() - 100];
  1204. //如果 实际图片的宽或者高比 屏幕大(那么进行缩放)
  1205. if(!options.full && (imgarea[0]>winarea[0]||imgarea[1]>winarea[1])){
  1206. var wh = [imgarea[0]/winarea[0],imgarea[1]/winarea[1]];//取宽度缩放比例、高度缩放比例
  1207. if(wh[0] > wh[1]){//取缩放比例最大的进行缩放
  1208. imgarea[0] = imgarea[0]/wh[0];
  1209. imgarea[1] = imgarea[1]/wh[0];
  1210. } else if(wh[0] < wh[1]){
  1211. imgarea[0] = imgarea[0]/wh[1];
  1212. imgarea[1] = imgarea[1]/wh[1];
  1213. }
  1214. }
  1215. return [imgarea[0]+'px', imgarea[1]+'px'];
  1216. }(),
  1217. title: false,
  1218. shade: 0.9,
  1219. shadeClose: true,
  1220. closeBtn: false,
  1221. move: '.layui-layer-phimg img',
  1222. moveType: 1,
  1223. scrollbar: false,
  1224. moveOut: true,
  1225. //anim: Math.random()*5|0,
  1226. isOutAnim: false,
  1227. skin: 'layui-layer-photos' + skin('photos'),
  1228. content: '<div class="layui-layer-phimg">'
  1229. +'<img src="'+ data[start].src +'" alt="'+ (data[start].alt||'') +'" layer-pid="'+ data[start].pid +'">'
  1230. +'<div class="layui-layer-imgsee">'
  1231. +(data.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>' : '')
  1232. +'<div class="layui-layer-imgbar" style="display:'+ (key ? 'block' : '') +'"><span class="layui-layer-imgtit"><a href="javascript:;">'+ (data[start].alt||'') +'</a><em>'+ dict.imgIndex +'/'+ data.length +'</em></span></div>'
  1233. +'</div>'
  1234. +'</div>',
  1235. success: function(layero, index){
  1236. dict.bigimg = layero.find('.layui-layer-phimg');
  1237. dict.imgsee = layero.find('.layui-layer-imguide,.layui-layer-imgbar');
  1238. dict.event(layero);
  1239. options.tab && options.tab(data[start], layero);
  1240. typeof success === 'function' && success(layero);
  1241. }, end: function(){
  1242. dict.end = true;
  1243. $(document).off('keyup', dict.keyup);
  1244. }
  1245. }, options));
  1246. }, function(){
  1247. layer.close(dict.loadi);
  1248. layer.msg('&#x5F53;&#x524D;&#x56FE;&#x7247;&#x5730;&#x5740;&#x5F02;&#x5E38;<br>&#x662F;&#x5426;&#x7EE7;&#x7EED;&#x67E5;&#x770B;&#x4E0B;&#x4E00;&#x5F20;&#xFF1F;', {
  1249. time: 30000,
  1250. btn: ['&#x4E0B;&#x4E00;&#x5F20;', '&#x4E0D;&#x770B;&#x4E86;'],
  1251. yes: function(){
  1252. data.length > 1 && dict.imgnext(true,true);
  1253. }
  1254. });
  1255. });
  1256. };
  1257. //主入口
  1258. ready.run = function(_$){
  1259. $ = _$;
  1260. win = $(window);
  1261. doms.html = $('html');
  1262. layer.open = function(deliver){
  1263. var o = new Class(deliver);
  1264. return o.index;
  1265. };
  1266. };
  1267. //加载方式
  1268. window.layui && layui.define ? (
  1269. layer.ready()
  1270. ,layui.define('jquery', function(exports){ //layui加载
  1271. layer.path = layui.cache.dir;
  1272. ready.run(layui.jquery);
  1273. //暴露模块
  1274. window.layer = layer;
  1275. exports('layer', layer);
  1276. })
  1277. ) : (
  1278. (typeof define === 'function' && define.amd) ? define('layer',['jquery'], function(){ //requirejs加载
  1279. ready.run(window.jQuery);
  1280. return layer;
  1281. }) : function(){ //普通script标签加载
  1282. ready.run(window.jQuery);
  1283. layer.ready();
  1284. }()
  1285. );
  1286. }(window);
  1287. /*
  1288. * Toastr
  1289. * Copyright 2012-2015
  1290. * Authors: John Papa, Hans Fjällemark, and Tim Ferrell.
  1291. * All Rights Reserved.
  1292. * Use, reproduction, distribution, and modification of this code is subject to the terms and
  1293. * conditions of the MIT license, available at http://www.opensource.org/licenses/mit-license.php
  1294. *
  1295. * ARIA Support: Greta Krafsig
  1296. *
  1297. * Project: https://github.com/CodeSeven/toastr
  1298. */
  1299. /* global define */
  1300. (function (define) {
  1301. define('toastr',['jquery'], function ($) {
  1302. return (function () {
  1303. var $container;
  1304. var listener;
  1305. var toastId = 0;
  1306. var toastType = {
  1307. error: 'error',
  1308. info: 'info',
  1309. success: 'success',
  1310. warning: 'warning'
  1311. };
  1312. var toastr = {
  1313. clear: clear,
  1314. remove: remove,
  1315. error: error,
  1316. getContainer: getContainer,
  1317. info: info,
  1318. options: {},
  1319. subscribe: subscribe,
  1320. success: success,
  1321. version: '2.1.3',
  1322. warning: warning
  1323. };
  1324. var previousToast;
  1325. return toastr;
  1326. ////////////////
  1327. function error(message, title, optionsOverride) {
  1328. return notify({
  1329. type: toastType.error,
  1330. iconClass: getOptions().iconClasses.error,
  1331. message: message,
  1332. optionsOverride: optionsOverride,
  1333. title: title
  1334. });
  1335. }
  1336. function getContainer(options, create) {
  1337. if (!options) { options = getOptions(); }
  1338. $container = $('#' + options.containerId);
  1339. if ($container.length) {
  1340. return $container;
  1341. }
  1342. if (create) {
  1343. $container = createContainer(options);
  1344. }
  1345. return $container;
  1346. }
  1347. function info(message, title, optionsOverride) {
  1348. return notify({
  1349. type: toastType.info,
  1350. iconClass: getOptions().iconClasses.info,
  1351. message: message,
  1352. optionsOverride: optionsOverride,
  1353. title: title
  1354. });
  1355. }
  1356. function subscribe(callback) {
  1357. listener = callback;
  1358. }
  1359. function success(message, title, optionsOverride) {
  1360. return notify({
  1361. type: toastType.success,
  1362. iconClass: getOptions().iconClasses.success,
  1363. message: message,
  1364. optionsOverride: optionsOverride,
  1365. title: title
  1366. });
  1367. }
  1368. function warning(message, title, optionsOverride) {
  1369. return notify({
  1370. type: toastType.warning,
  1371. iconClass: getOptions().iconClasses.warning,
  1372. message: message,
  1373. optionsOverride: optionsOverride,
  1374. title: title
  1375. });
  1376. }
  1377. function clear($toastElement, clearOptions) {
  1378. var options = getOptions();
  1379. if (!$container) { getContainer(options); }
  1380. if (!clearToast($toastElement, options, clearOptions)) {
  1381. clearContainer(options);
  1382. }
  1383. }
  1384. function remove($toastElement) {
  1385. var options = getOptions();
  1386. if (!$container) { getContainer(options); }
  1387. if ($toastElement && $(':focus', $toastElement).length === 0) {
  1388. removeToast($toastElement);
  1389. return;
  1390. }
  1391. if ($container.children().length) {
  1392. $container.remove();
  1393. }
  1394. }
  1395. // internal functions
  1396. function clearContainer (options) {
  1397. var toastsToClear = $container.children();
  1398. for (var i = toastsToClear.length - 1; i >= 0; i--) {
  1399. clearToast($(toastsToClear[i]), options);
  1400. }
  1401. }
  1402. function clearToast ($toastElement, options, clearOptions) {
  1403. var force = clearOptions && clearOptions.force ? clearOptions.force : false;
  1404. if ($toastElement && (force || $(':focus', $toastElement).length === 0)) {
  1405. $toastElement[options.hideMethod]({
  1406. duration: options.hideDuration,
  1407. easing: options.hideEasing,
  1408. complete: function () { removeToast($toastElement); }
  1409. });
  1410. return true;
  1411. }
  1412. return false;
  1413. }
  1414. function createContainer(options) {
  1415. $container = $('<div/>')
  1416. .attr('id', options.containerId)
  1417. .addClass(options.positionClass);
  1418. $container.appendTo($(options.target));
  1419. return $container;
  1420. }
  1421. function getDefaults() {
  1422. return {
  1423. tapToDismiss: true,
  1424. toastClass: 'toast',
  1425. containerId: 'toast-container',
  1426. debug: false,
  1427. showMethod: 'fadeIn', //fadeIn, slideDown, and show are built into jQuery
  1428. showDuration: 300,
  1429. showEasing: 'swing', //swing and linear are built into jQuery
  1430. onShown: undefined,
  1431. hideMethod: 'fadeOut',
  1432. hideDuration: 1000,
  1433. hideEasing: 'swing',
  1434. onHidden: undefined,
  1435. closeMethod: false,
  1436. closeDuration: false,
  1437. closeEasing: false,
  1438. closeOnHover: true,
  1439. extendedTimeOut: 1000,
  1440. iconClasses: {
  1441. error: 'toast-error',
  1442. info: 'toast-info',
  1443. success: 'toast-success',
  1444. warning: 'toast-warning'
  1445. },
  1446. iconClass: 'toast-info',
  1447. positionClass: 'toast-top-right',
  1448. timeOut: 5000, // Set timeOut and extendedTimeOut to 0 to make it sticky
  1449. titleClass: 'toast-title',
  1450. messageClass: 'toast-message',
  1451. escapeHtml: false,
  1452. target: 'body',
  1453. closeHtml: '<button type="button">&times;</button>',
  1454. closeClass: 'toast-close-button',
  1455. newestOnTop: true,
  1456. preventDuplicates: false,
  1457. progressBar: false,
  1458. progressClass: 'toast-progress',
  1459. rtl: false
  1460. };
  1461. }
  1462. function publish(args) {
  1463. if (!listener) { return; }
  1464. listener(args);
  1465. }
  1466. function notify(map) {
  1467. var options = getOptions();
  1468. var iconClass = map.iconClass || options.iconClass;
  1469. if (typeof (map.optionsOverride) !== 'undefined') {
  1470. options = $.extend(options, map.optionsOverride);
  1471. iconClass = map.optionsOverride.iconClass || iconClass;
  1472. }
  1473. if (shouldExit(options, map)) { return; }
  1474. toastId++;
  1475. $container = getContainer(options, true);
  1476. var intervalId = null;
  1477. var $toastElement = $('<div/>');
  1478. var $titleElement = $('<div/>');
  1479. var $messageElement = $('<div/>');
  1480. var $progressElement = $('<div/>');
  1481. var $closeElement = $(options.closeHtml);
  1482. var progressBar = {
  1483. intervalId: null,
  1484. hideEta: null,
  1485. maxHideTime: null
  1486. };
  1487. var response = {
  1488. toastId: toastId,
  1489. state: 'visible',
  1490. startTime: new Date(),
  1491. options: options,
  1492. map: map
  1493. };
  1494. personalizeToast();
  1495. displayToast();
  1496. handleEvents();
  1497. publish(response);
  1498. if (options.debug && console) {
  1499. console.log(response);
  1500. }
  1501. return $toastElement;
  1502. function escapeHtml(source) {
  1503. if (source == null) {
  1504. source = '';
  1505. }
  1506. return source
  1507. .replace(/&/g, '&amp;')
  1508. .replace(/"/g, '&quot;')
  1509. .replace(/'/g, '&#39;')
  1510. .replace(/</g, '&lt;')
  1511. .replace(/>/g, '&gt;');
  1512. }
  1513. function personalizeToast() {
  1514. setIcon();
  1515. setTitle();
  1516. setMessage();
  1517. setCloseButton();
  1518. setProgressBar();
  1519. setRTL();
  1520. setSequence();
  1521. setAria();
  1522. }
  1523. function setAria() {
  1524. var ariaValue = '';
  1525. switch (map.iconClass) {
  1526. case 'toast-success':
  1527. case 'toast-info':
  1528. ariaValue = 'polite';
  1529. break;
  1530. default:
  1531. ariaValue = 'assertive';
  1532. }
  1533. $toastElement.attr('aria-live', ariaValue);
  1534. }
  1535. function handleEvents() {
  1536. if (options.closeOnHover) {
  1537. $toastElement.hover(stickAround, delayedHideToast);
  1538. }
  1539. if (!options.onclick && options.tapToDismiss) {
  1540. $toastElement.click(hideToast);
  1541. }
  1542. if (options.closeButton && $closeElement) {
  1543. $closeElement.click(function (event) {
  1544. if (event.stopPropagation) {
  1545. event.stopPropagation();
  1546. } else if (event.cancelBubble !== undefined && event.cancelBubble !== true) {
  1547. event.cancelBubble = true;
  1548. }
  1549. if (options.onCloseClick) {
  1550. options.onCloseClick(event);
  1551. }
  1552. hideToast(true);
  1553. });
  1554. }
  1555. if (options.onclick) {
  1556. $toastElement.click(function (event) {
  1557. options.onclick(event);
  1558. hideToast();
  1559. });
  1560. }
  1561. }
  1562. function displayToast() {
  1563. $toastElement.hide();
  1564. $toastElement[options.showMethod](
  1565. {duration: options.showDuration, easing: options.showEasing, complete: options.onShown}
  1566. );
  1567. if (options.timeOut > 0) {
  1568. intervalId = setTimeout(hideToast, options.timeOut);
  1569. progressBar.maxHideTime = parseFloat(options.timeOut);
  1570. progressBar.hideEta = new Date().getTime() + progressBar.maxHideTime;
  1571. if (options.progressBar) {
  1572. progressBar.intervalId = setInterval(updateProgress, 10);
  1573. }
  1574. }
  1575. }
  1576. function setIcon() {
  1577. if (map.iconClass) {
  1578. $toastElement.addClass(options.toastClass).addClass(iconClass);
  1579. }
  1580. }
  1581. function setSequence() {
  1582. if (options.newestOnTop) {
  1583. $container.prepend($toastElement);
  1584. } else {
  1585. $container.append($toastElement);
  1586. }
  1587. }
  1588. function setTitle() {
  1589. if (map.title) {
  1590. var suffix = map.title;
  1591. if (options.escapeHtml) {
  1592. suffix = escapeHtml(map.title);
  1593. }
  1594. $titleElement.append(suffix).addClass(options.titleClass);
  1595. $toastElement.append($titleElement);
  1596. }
  1597. }
  1598. function setMessage() {
  1599. if (map.message) {
  1600. var suffix = map.message;
  1601. if (options.escapeHtml) {
  1602. suffix = escapeHtml(map.message);
  1603. }
  1604. $messageElement.append(suffix).addClass(options.messageClass);
  1605. $toastElement.append($messageElement);
  1606. }
  1607. }
  1608. function setCloseButton() {
  1609. if (options.closeButton) {
  1610. $closeElement.addClass(options.closeClass).attr('role', 'button');
  1611. $toastElement.prepend($closeElement);
  1612. }
  1613. }
  1614. function setProgressBar() {
  1615. if (options.progressBar) {
  1616. $progressElement.addClass(options.progressClass);
  1617. $toastElement.prepend($progressElement);
  1618. }
  1619. }
  1620. function setRTL() {
  1621. if (options.rtl) {
  1622. $toastElement.addClass('rtl');
  1623. }
  1624. }
  1625. function shouldExit(options, map) {
  1626. if (options.preventDuplicates) {
  1627. if (map.message === previousToast) {
  1628. return true;
  1629. } else {
  1630. previousToast = map.message;
  1631. }
  1632. }
  1633. return false;
  1634. }
  1635. function hideToast(override) {
  1636. var method = override && options.closeMethod !== false ? options.closeMethod : options.hideMethod;
  1637. var duration = override && options.closeDuration !== false ?
  1638. options.closeDuration : options.hideDuration;
  1639. var easing = override && options.closeEasing !== false ? options.closeEasing : options.hideEasing;
  1640. if ($(':focus', $toastElement).length && !override) {
  1641. return;
  1642. }
  1643. clearTimeout(progressBar.intervalId);
  1644. return $toastElement[method]({
  1645. duration: duration,
  1646. easing: easing,
  1647. complete: function () {
  1648. removeToast($toastElement);
  1649. clearTimeout(intervalId);
  1650. if (options.onHidden && response.state !== 'hidden') {
  1651. options.onHidden();
  1652. }
  1653. response.state = 'hidden';
  1654. response.endTime = new Date();
  1655. publish(response);
  1656. }
  1657. });
  1658. }
  1659. function delayedHideToast() {
  1660. if (options.timeOut > 0 || options.extendedTimeOut > 0) {
  1661. intervalId = setTimeout(hideToast, options.extendedTimeOut);
  1662. progressBar.maxHideTime = parseFloat(options.extendedTimeOut);
  1663. progressBar.hideEta = new Date().getTime() + progressBar.maxHideTime;
  1664. }
  1665. }
  1666. function stickAround() {
  1667. clearTimeout(intervalId);
  1668. progressBar.hideEta = 0;
  1669. $toastElement.stop(true, true)[options.showMethod](
  1670. {duration: options.showDuration, easing: options.showEasing}
  1671. );
  1672. }
  1673. function updateProgress() {
  1674. var percentage = ((progressBar.hideEta - (new Date().getTime())) / progressBar.maxHideTime) * 100;
  1675. $progressElement.width(percentage + '%');
  1676. }
  1677. }
  1678. function getOptions() {
  1679. return $.extend({}, getDefaults(), toastr.options);
  1680. }
  1681. function removeToast($toastElement) {
  1682. if (!$container) { $container = getContainer(); }
  1683. if ($toastElement.is(':visible')) {
  1684. return;
  1685. }
  1686. $toastElement.remove();
  1687. $toastElement = null;
  1688. if ($container.children().length === 0) {
  1689. $container.remove();
  1690. previousToast = undefined;
  1691. }
  1692. }
  1693. })();
  1694. });
  1695. }(typeof define === 'function' && define.amd ? define : function (deps, factory) {
  1696. if (typeof module !== 'undefined' && module.exports) { //Node
  1697. module.exports = factory(require('jquery'));
  1698. } else {
  1699. window.toastr = factory(window.jQuery);
  1700. }
  1701. }));
  1702. define('fast',['jquery', 'bootstrap', 'toastr', 'layer', 'lang'], function ($, undefined, Toastr, Layer, Lang) {
  1703. var Fast = {
  1704. config: {
  1705. //toastr默认配置
  1706. toastr: {
  1707. "closeButton": true,
  1708. "debug": false,
  1709. "newestOnTop": false,
  1710. "progressBar": false,
  1711. "positionClass": "toast-top-center",
  1712. "preventDuplicates": false,
  1713. "onclick": null,
  1714. "showDuration": "300",
  1715. "hideDuration": "1000",
  1716. "timeOut": "5000",
  1717. "extendedTimeOut": "1000",
  1718. "showEasing": "swing",
  1719. "hideEasing": "linear",
  1720. "showMethod": "fadeIn",
  1721. "hideMethod": "fadeOut"
  1722. }
  1723. },
  1724. api: {
  1725. //发送Ajax请求
  1726. ajax: function (options, success, failure) {
  1727. options = typeof options == 'string' ? {url: options} : options;
  1728. var index = Layer.load();
  1729. options = $.extend({
  1730. type: "POST",
  1731. dataType: 'json',
  1732. success: function (ret) {
  1733. Layer.close(index);
  1734. if (ret.hasOwnProperty("code")) {
  1735. var data = ret.hasOwnProperty("data") && ret.data != "" ? ret.data : null;
  1736. var msg = ret.hasOwnProperty("msg") && ret.msg != "" ? ret.msg : "";
  1737. if (ret.code === 1) {
  1738. if (typeof success == 'function') {
  1739. var onAfterResult = success.call(undefined, data);
  1740. if (!onAfterResult) {
  1741. return false;
  1742. }
  1743. }
  1744. Toastr.success(msg ? msg : __('Operation completed'));
  1745. } else {
  1746. Toastr.error(msg ? msg : __('Operation failed'));
  1747. }
  1748. } else {
  1749. Toastr.error(__('Unknown data format'));
  1750. }
  1751. }, error: function () {
  1752. Layer.close(index);
  1753. if (typeof failure == 'function') {
  1754. var onAfterResult = failure.call(undefined, data);
  1755. if (!onAfterResult) {
  1756. return false;
  1757. }
  1758. }
  1759. Toastr.error(__('Network error'));
  1760. }
  1761. }, options);
  1762. $.ajax(options);
  1763. },
  1764. //修复URL
  1765. fixurl: function (url) {
  1766. if (url.substr(0, 1) !== "/") {
  1767. var r = new RegExp('^(?:[a-z]+:)?//', 'i');
  1768. if (!r.test(url)) {
  1769. url = Config.moduleurl + "/" + url;
  1770. }
  1771. }
  1772. return url;
  1773. },
  1774. //获取修复后可访问的cdn链接
  1775. cdnurl: function (url) {
  1776. return /^(?:[a-z]+:)?\/\//i.test(url) ? url : Config.upload.cdnurl + url;
  1777. },
  1778. //查询Url参数
  1779. query: function (name, url) {
  1780. if (!url) {
  1781. url = window.location.href;
  1782. }
  1783. name = name.replace(/[\[\]]/g, "\\$&");
  1784. var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"),
  1785. results = regex.exec(url);
  1786. if (!results)
  1787. return null;
  1788. if (!results[2])
  1789. return '';
  1790. return decodeURIComponent(results[2].replace(/\+/g, " "));
  1791. },
  1792. //上传文件
  1793. upload: function (file, callback) {
  1794. var data = new FormData();
  1795. data.append("file", file);
  1796. $.ajax({
  1797. url: "ajax/upload",
  1798. data: data,
  1799. cache: false,
  1800. contentType: false,
  1801. processData: false,
  1802. type: 'POST',
  1803. dataType: 'json',
  1804. success: function (ret) {
  1805. if (ret.hasOwnProperty("code")) {
  1806. var data = ret.hasOwnProperty("data") && ret.data != "" ? ret.data : null;
  1807. var msg = ret.hasOwnProperty("msg") && ret.msg != "" ? ret.msg : "";
  1808. if (ret.code === 1) {
  1809. if (typeof callback == 'function') {
  1810. var onAfterResult = success.call(undefined, data);
  1811. if (!onAfterResult) {
  1812. return false;
  1813. }
  1814. }
  1815. if ($('.summernote').size() > 0 && data && typeof data.url !== 'undefined') {
  1816. $('.summernote').summernote("insertImage", data.url, 'filename');
  1817. }
  1818. Toastr.success(__('Operation completed'));
  1819. } else {
  1820. Toastr.error(msg ? msg : __('Operation failed'));
  1821. }
  1822. } else {
  1823. Toastr.error(__('Unknown data format'));
  1824. }
  1825. }, error: function () {
  1826. Toastr.error(__('Network error'));
  1827. }
  1828. });
  1829. },
  1830. open: function (url, title, options) {
  1831. title = title ? title : "";
  1832. url = Fast.api.fixurl(url);
  1833. url = url + (url.indexOf("?") > -1 ? "&" : "?") + "dialog=1";
  1834. var area = [$(window).width() > 800 ? '800px' : '95%', $(window).height() > 600 ? '600px' : '95%'];
  1835. Layer.open($.extend({
  1836. type: 2,
  1837. title: title,
  1838. shadeClose: true,
  1839. shade: false,
  1840. maxmin: true,
  1841. moveOut: true,
  1842. area: area,
  1843. content: url,
  1844. zIndex: Layer.zIndex,
  1845. skin: 'layui-layer-noborder',
  1846. success: function (layero, index) {
  1847. var that = this;
  1848. //$(layero).removeClass("layui-layer-border");
  1849. Layer.setTop(layero);
  1850. var frame = Layer.getChildFrame('html', index);
  1851. var layerfooter = frame.find(".layer-footer");
  1852. Fast.api.layerfooter(layero, index, that);
  1853. //绑定事件
  1854. if (layerfooter.size() > 0) {
  1855. // 监听窗口内的元素及属性变化
  1856. // Firefox和Chrome早期版本中带有前缀
  1857. var MutationObserver = window.MutationObserver || window.WebKitMutationObserver || window.MozMutationObserver
  1858. // 选择目标节点
  1859. var target = layerfooter[0];
  1860. // 创建观察者对象
  1861. var observer = new MutationObserver(function (mutations) {
  1862. Fast.api.layerfooter(layero, index, that);
  1863. mutations.forEach(function (mutation) {
  1864. });
  1865. });
  1866. // 配置观察选项:
  1867. var config = {attributes: true, childList: true, characterData: true, subtree: true}
  1868. // 传入目标节点和观察选项
  1869. observer.observe(target, config);
  1870. // 随后,你还可以停止观察
  1871. // observer.disconnect();
  1872. }
  1873. }
  1874. }, options ? options : {}));
  1875. return false;
  1876. },
  1877. layerfooter: function (layero, index, that) {
  1878. var frame = Layer.getChildFrame('html', index);
  1879. var layerfooter = frame.find(".layer-footer");
  1880. if (layerfooter.size() > 0) {
  1881. $(".layui-layer-footer", layero).remove();
  1882. var footer = $("<div />").addClass('layui-layer-btn layui-layer-footer');
  1883. footer.html(layerfooter.html());
  1884. if ($(".row", footer).size() === 0) {
  1885. $(">", footer).wrapAll("<div class='row'></div>");
  1886. }
  1887. footer.insertAfter(layero.find('.layui-layer-content'));
  1888. }
  1889. var heg = frame.outerHeight();
  1890. var titHeight = layero.find('.layui-layer-title').outerHeight() || 0;
  1891. var btnHeight = layero.find('.layui-layer-btn').outerHeight() || 0;
  1892. var oldheg = heg + titHeight + btnHeight;
  1893. var maxheg = $(window).height() < 600 ? $(window).height() : 600;
  1894. if (frame.outerWidth() < 768 || that.area[0].indexOf("%") > -1) {
  1895. maxheg = $(window).height();
  1896. }
  1897. // 如果有.layer-footer或窗口小于600则重新排
  1898. if (layerfooter.size() > 0 || oldheg < maxheg || that.area[0].indexOf("%") > -1) {
  1899. var footerHeight = layero.find('.layui-layer-footer').outerHeight() || 0;
  1900. footerHeight = 0;
  1901. if (oldheg >= maxheg) {
  1902. heg = Math.min(maxheg, oldheg) - titHeight - btnHeight - footerHeight;
  1903. }
  1904. layero.css({height: heg + titHeight + btnHeight + footerHeight});
  1905. layero.find("iframe").css({height: heg});
  1906. }
  1907. if (layerfooter.size() > 0) {
  1908. footer.on("click", ".btn", function () {
  1909. if ($(this).hasClass("disabled") || $(this).parent().hasClass("disabled")) {
  1910. return;
  1911. }
  1912. $(".btn:eq(" + $(this).index() + ")", layerfooter).trigger("click");
  1913. });
  1914. }
  1915. },
  1916. success: function (options, callback) {
  1917. var type = typeof options === 'function';
  1918. if (type) {
  1919. callback = options;
  1920. }
  1921. return Layer.msg(__('Operation completed'), $.extend({
  1922. offset: 0, icon: 1
  1923. }, type ? {} : options), callback);
  1924. },
  1925. error: function (options, callback) {
  1926. var type = typeof options === 'function';
  1927. if (type) {
  1928. callback = options;
  1929. }
  1930. return Layer.msg(__('Operation failed'), $.extend({
  1931. offset: 0, icon: 2
  1932. }, type ? {} : options), callback);
  1933. },
  1934. toastr: Toastr,
  1935. layer: Layer
  1936. },
  1937. lang: function () {
  1938. var args = arguments,
  1939. string = args[0],
  1940. i = 1;
  1941. string = string.toLowerCase();
  1942. //string = typeof Lang[string] != 'undefined' ? Lang[string] : string;
  1943. if (typeof Lang[string] != 'undefined') {
  1944. if (typeof Lang[string] == 'object')
  1945. return Lang[string];
  1946. string = Lang[string];
  1947. } else if (string.indexOf('.') !== -1 && false) {
  1948. var arr = string.split('.');
  1949. var current = Lang[arr[0]];
  1950. for (var i = 1; i < arr.length; i++) {
  1951. current = typeof current[arr[i]] != 'undefined' ? current[arr[i]] : '';
  1952. if (typeof current != 'object')
  1953. break;
  1954. }
  1955. if (typeof current == 'object')
  1956. return current;
  1957. string = current;
  1958. } else {
  1959. string = args[0];
  1960. }
  1961. return string.replace(/%((%)|s|d)/g, function (m) {
  1962. // m is the matched format, e.g. %s, %d
  1963. var val = null;
  1964. if (m[2]) {
  1965. val = m[2];
  1966. } else {
  1967. val = args[i];
  1968. // A switch statement so that the formatter can be extended. Default is %s
  1969. switch (m) {
  1970. case '%d':
  1971. val = parseFloat(val);
  1972. if (isNaN(val)) {
  1973. val = 0;
  1974. }
  1975. break;
  1976. }
  1977. i++;
  1978. }
  1979. return val;
  1980. });
  1981. },
  1982. init: function () {
  1983. // 对相对地址进行处理
  1984. $.ajaxSetup({
  1985. beforeSend: function (xhr, setting) {
  1986. setting.url = Fast.api.fixurl(setting.url);
  1987. }
  1988. });
  1989. // 绑定ESC关闭窗口事件
  1990. $(window).keyup(function (e) {
  1991. if (e.keyCode == 27) {
  1992. if ($(".layui-layer").size() > 0) {
  1993. var index = 0;
  1994. $(".layui-layer").each(function () {
  1995. index = Math.max(index, parseInt($(this).attr("times")));
  1996. });
  1997. if (index) {
  1998. Layer.close(index);
  1999. }
  2000. }
  2001. }
  2002. });
  2003. //公共代码
  2004. //配置Toastr的参数
  2005. Toastr.options = Fast.config.toastr;
  2006. }
  2007. };
  2008. //将Layer暴露到全局中去
  2009. window.Layer = Layer;
  2010. //将Toastr暴露到全局中去
  2011. window.Toastr = Toastr;
  2012. //将语言方法暴露到全局中去
  2013. window.__ = Fast.lang;
  2014. //将Fast渲染至全局
  2015. window.Fast = Fast;
  2016. //默认初始化执行的代码
  2017. Fast.init();
  2018. return Fast;
  2019. });
  2020. //! moment.js
  2021. //! version : 2.18.1
  2022. //! authors : Tim Wood, Iskren Chernev, Moment.js contributors
  2023. //! license : MIT
  2024. //! momentjs.com
  2025. ;(function (global, factory) {
  2026. typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
  2027. typeof define === 'function' && define.amd ? define('moment/moment',factory) :
  2028. global.moment = factory()
  2029. }(this, (function () { 'use strict';
  2030. var hookCallback;
  2031. function hooks () {
  2032. return hookCallback.apply(null, arguments);
  2033. }
  2034. // This is done to register the method called with moment()
  2035. // without creating circular dependencies.
  2036. function setHookCallback (callback) {
  2037. hookCallback = callback;
  2038. }
  2039. function isArray(input) {
  2040. return input instanceof Array || Object.prototype.toString.call(input) === '[object Array]';
  2041. }
  2042. function isObject(input) {
  2043. // IE8 will treat undefined and null as object if it wasn't for
  2044. // input != null
  2045. return input != null && Object.prototype.toString.call(input) === '[object Object]';
  2046. }
  2047. function isObjectEmpty(obj) {
  2048. var k;
  2049. for (k in obj) {
  2050. // even if its not own property I'd still call it non-empty
  2051. return false;
  2052. }
  2053. return true;
  2054. }
  2055. function isUndefined(input) {
  2056. return input === void 0;
  2057. }
  2058. function isNumber(input) {
  2059. return typeof input === 'number' || Object.prototype.toString.call(input) === '[object Number]';
  2060. }
  2061. function isDate(input) {
  2062. return input instanceof Date || Object.prototype.toString.call(input) === '[object Date]';
  2063. }
  2064. function map(arr, fn) {
  2065. var res = [], i;
  2066. for (i = 0; i < arr.length; ++i) {
  2067. res.push(fn(arr[i], i));
  2068. }
  2069. return res;
  2070. }
  2071. function hasOwnProp(a, b) {
  2072. return Object.prototype.hasOwnProperty.call(a, b);
  2073. }
  2074. function extend(a, b) {
  2075. for (var i in b) {
  2076. if (hasOwnProp(b, i)) {
  2077. a[i] = b[i];
  2078. }
  2079. }
  2080. if (hasOwnProp(b, 'toString')) {
  2081. a.toString = b.toString;
  2082. }
  2083. if (hasOwnProp(b, 'valueOf')) {
  2084. a.valueOf = b.valueOf;
  2085. }
  2086. return a;
  2087. }
  2088. function createUTC (input, format, locale, strict) {
  2089. return createLocalOrUTC(input, format, locale, strict, true).utc();
  2090. }
  2091. function defaultParsingFlags() {
  2092. // We need to deep clone this object.
  2093. return {
  2094. empty : false,
  2095. unusedTokens : [],
  2096. unusedInput : [],
  2097. overflow : -2,
  2098. charsLeftOver : 0,
  2099. nullInput : false,
  2100. invalidMonth : null,
  2101. invalidFormat : false,
  2102. userInvalidated : false,
  2103. iso : false,
  2104. parsedDateParts : [],
  2105. meridiem : null,
  2106. rfc2822 : false,
  2107. weekdayMismatch : false
  2108. };
  2109. }
  2110. function getParsingFlags(m) {
  2111. if (m._pf == null) {
  2112. m._pf = defaultParsingFlags();
  2113. }
  2114. return m._pf;
  2115. }
  2116. var some;
  2117. if (Array.prototype.some) {
  2118. some = Array.prototype.some;
  2119. } else {
  2120. some = function (fun) {
  2121. var t = Object(this);
  2122. var len = t.length >>> 0;
  2123. for (var i = 0; i < len; i++) {
  2124. if (i in t && fun.call(this, t[i], i, t)) {
  2125. return true;
  2126. }
  2127. }
  2128. return false;
  2129. };
  2130. }
  2131. var some$1 = some;
  2132. function isValid(m) {
  2133. if (m._isValid == null) {
  2134. var flags = getParsingFlags(m);
  2135. var parsedParts = some$1.call(flags.parsedDateParts, function (i) {
  2136. return i != null;
  2137. });
  2138. var isNowValid = !isNaN(m._d.getTime()) &&
  2139. flags.overflow < 0 &&
  2140. !flags.empty &&
  2141. !flags.invalidMonth &&
  2142. !flags.invalidWeekday &&
  2143. !flags.nullInput &&
  2144. !flags.invalidFormat &&
  2145. !flags.userInvalidated &&
  2146. (!flags.meridiem || (flags.meridiem && parsedParts));
  2147. if (m._strict) {
  2148. isNowValid = isNowValid &&
  2149. flags.charsLeftOver === 0 &&
  2150. flags.unusedTokens.length === 0 &&
  2151. flags.bigHour === undefined;
  2152. }
  2153. if (Object.isFrozen == null || !Object.isFrozen(m)) {
  2154. m._isValid = isNowValid;
  2155. }
  2156. else {
  2157. return isNowValid;
  2158. }
  2159. }
  2160. return m._isValid;
  2161. }
  2162. function createInvalid (flags) {
  2163. var m = createUTC(NaN);
  2164. if (flags != null) {
  2165. extend(getParsingFlags(m), flags);
  2166. }
  2167. else {
  2168. getParsingFlags(m).userInvalidated = true;
  2169. }
  2170. return m;
  2171. }
  2172. // Plugins that add properties should also add the key here (null value),
  2173. // so we can properly clone ourselves.
  2174. var momentProperties = hooks.momentProperties = [];
  2175. function copyConfig(to, from) {
  2176. var i, prop, val;
  2177. if (!isUndefined(from._isAMomentObject)) {
  2178. to._isAMomentObject = from._isAMomentObject;
  2179. }
  2180. if (!isUndefined(from._i)) {
  2181. to._i = from._i;
  2182. }
  2183. if (!isUndefined(from._f)) {
  2184. to._f = from._f;
  2185. }
  2186. if (!isUndefined(from._l)) {
  2187. to._l = from._l;
  2188. }
  2189. if (!isUndefined(from._strict)) {
  2190. to._strict = from._strict;
  2191. }
  2192. if (!isUndefined(from._tzm)) {
  2193. to._tzm = from._tzm;
  2194. }
  2195. if (!isUndefined(from._isUTC)) {
  2196. to._isUTC = from._isUTC;
  2197. }
  2198. if (!isUndefined(from._offset)) {
  2199. to._offset = from._offset;
  2200. }
  2201. if (!isUndefined(from._pf)) {
  2202. to._pf = getParsingFlags(from);
  2203. }
  2204. if (!isUndefined(from._locale)) {
  2205. to._locale = from._locale;
  2206. }
  2207. if (momentProperties.length > 0) {
  2208. for (i = 0; i < momentProperties.length; i++) {
  2209. prop = momentProperties[i];
  2210. val = from[prop];
  2211. if (!isUndefined(val)) {
  2212. to[prop] = val;
  2213. }
  2214. }
  2215. }
  2216. return to;
  2217. }
  2218. var updateInProgress = false;
  2219. // Moment prototype object
  2220. function Moment(config) {
  2221. copyConfig(this, config);
  2222. this._d = new Date(config._d != null ? config._d.getTime() : NaN);
  2223. if (!this.isValid()) {
  2224. this._d = new Date(NaN);
  2225. }
  2226. // Prevent infinite loop in case updateOffset creates new moment
  2227. // objects.
  2228. if (updateInProgress === false) {
  2229. updateInProgress = true;
  2230. hooks.updateOffset(this);
  2231. updateInProgress = false;
  2232. }
  2233. }
  2234. function isMoment (obj) {
  2235. return obj instanceof Moment || (obj != null && obj._isAMomentObject != null);
  2236. }
  2237. function absFloor (number) {
  2238. if (number < 0) {
  2239. // -0 -> 0
  2240. return Math.ceil(number) || 0;
  2241. } else {
  2242. return Math.floor(number);
  2243. }
  2244. }
  2245. function toInt(argumentForCoercion) {
  2246. var coercedNumber = +argumentForCoercion,
  2247. value = 0;
  2248. if (coercedNumber !== 0 && isFinite(coercedNumber)) {
  2249. value = absFloor(coercedNumber);
  2250. }
  2251. return value;
  2252. }
  2253. // compare two arrays, return the number of differences
  2254. function compareArrays(array1, array2, dontConvert) {
  2255. var len = Math.min(array1.length, array2.length),
  2256. lengthDiff = Math.abs(array1.length - array2.length),
  2257. diffs = 0,
  2258. i;
  2259. for (i = 0; i < len; i++) {
  2260. if ((dontConvert && array1[i] !== array2[i]) ||
  2261. (!dontConvert && toInt(array1[i]) !== toInt(array2[i]))) {
  2262. diffs++;
  2263. }
  2264. }
  2265. return diffs + lengthDiff;
  2266. }
  2267. function warn(msg) {
  2268. if (hooks.suppressDeprecationWarnings === false &&
  2269. (typeof console !== 'undefined') && console.warn) {
  2270. console.warn('Deprecation warning: ' + msg);
  2271. }
  2272. }
  2273. function deprecate(msg, fn) {
  2274. var firstTime = true;
  2275. return extend(function () {
  2276. if (hooks.deprecationHandler != null) {
  2277. hooks.deprecationHandler(null, msg);
  2278. }
  2279. if (firstTime) {
  2280. var args = [];
  2281. var arg;
  2282. for (var i = 0; i < arguments.length; i++) {
  2283. arg = '';
  2284. if (typeof arguments[i] === 'object') {
  2285. arg += '\n[' + i + '] ';
  2286. for (var key in arguments[0]) {
  2287. arg += key + ': ' + arguments[0][key] + ', ';
  2288. }
  2289. arg = arg.slice(0, -2); // Remove trailing comma and space
  2290. } else {
  2291. arg = arguments[i];
  2292. }
  2293. args.push(arg);
  2294. }
  2295. warn(msg + '\nArguments: ' + Array.prototype.slice.call(args).join('') + '\n' + (new Error()).stack);
  2296. firstTime = false;
  2297. }
  2298. return fn.apply(this, arguments);
  2299. }, fn);
  2300. }
  2301. var deprecations = {};
  2302. function deprecateSimple(name, msg) {
  2303. if (hooks.deprecationHandler != null) {
  2304. hooks.deprecationHandler(name, msg);
  2305. }
  2306. if (!deprecations[name]) {
  2307. warn(msg);
  2308. deprecations[name] = true;
  2309. }
  2310. }
  2311. hooks.suppressDeprecationWarnings = false;
  2312. hooks.deprecationHandler = null;
  2313. function isFunction(input) {
  2314. return input instanceof Function || Object.prototype.toString.call(input) === '[object Function]';
  2315. }
  2316. function set (config) {
  2317. var prop, i;
  2318. for (i in config) {
  2319. prop = config[i];
  2320. if (isFunction(prop)) {
  2321. this[i] = prop;
  2322. } else {
  2323. this['_' + i] = prop;
  2324. }
  2325. }
  2326. this._config = config;
  2327. // Lenient ordinal parsing accepts just a number in addition to
  2328. // number + (possibly) stuff coming from _dayOfMonthOrdinalParse.
  2329. // TODO: Remove "ordinalParse" fallback in next major release.
  2330. this._dayOfMonthOrdinalParseLenient = new RegExp(
  2331. (this._dayOfMonthOrdinalParse.source || this._ordinalParse.source) +
  2332. '|' + (/\d{1,2}/).source);
  2333. }
  2334. function mergeConfigs(parentConfig, childConfig) {
  2335. var res = extend({}, parentConfig), prop;
  2336. for (prop in childConfig) {
  2337. if (hasOwnProp(childConfig, prop)) {
  2338. if (isObject(parentConfig[prop]) && isObject(childConfig[prop])) {
  2339. res[prop] = {};
  2340. extend(res[prop], parentConfig[prop]);
  2341. extend(res[prop], childConfig[prop]);
  2342. } else if (childConfig[prop] != null) {
  2343. res[prop] = childConfig[prop];
  2344. } else {
  2345. delete res[prop];
  2346. }
  2347. }
  2348. }
  2349. for (prop in parentConfig) {
  2350. if (hasOwnProp(parentConfig, prop) &&
  2351. !hasOwnProp(childConfig, prop) &&
  2352. isObject(parentConfig[prop])) {
  2353. // make sure changes to properties don't modify parent config
  2354. res[prop] = extend({}, res[prop]);
  2355. }
  2356. }
  2357. return res;
  2358. }
  2359. function Locale(config) {
  2360. if (config != null) {
  2361. this.set(config);
  2362. }
  2363. }
  2364. var keys;
  2365. if (Object.keys) {
  2366. keys = Object.keys;
  2367. } else {
  2368. keys = function (obj) {
  2369. var i, res = [];
  2370. for (i in obj) {
  2371. if (hasOwnProp(obj, i)) {
  2372. res.push(i);
  2373. }
  2374. }
  2375. return res;
  2376. };
  2377. }
  2378. var keys$1 = keys;
  2379. var defaultCalendar = {
  2380. sameDay : '[Today at] LT',
  2381. nextDay : '[Tomorrow at] LT',
  2382. nextWeek : 'dddd [at] LT',
  2383. lastDay : '[Yesterday at] LT',
  2384. lastWeek : '[Last] dddd [at] LT',
  2385. sameElse : 'L'
  2386. };
  2387. function calendar (key, mom, now) {
  2388. var output = this._calendar[key] || this._calendar['sameElse'];
  2389. return isFunction(output) ? output.call(mom, now) : output;
  2390. }
  2391. var defaultLongDateFormat = {
  2392. LTS : 'h:mm:ss A',
  2393. LT : 'h:mm A',
  2394. L : 'MM/DD/YYYY',
  2395. LL : 'MMMM D, YYYY',
  2396. LLL : 'MMMM D, YYYY h:mm A',
  2397. LLLL : 'dddd, MMMM D, YYYY h:mm A'
  2398. };
  2399. function longDateFormat (key) {
  2400. var format = this._longDateFormat[key],
  2401. formatUpper = this._longDateFormat[key.toUpperCase()];
  2402. if (format || !formatUpper) {
  2403. return format;
  2404. }
  2405. this._longDateFormat[key] = formatUpper.replace(/MMMM|MM|DD|dddd/g, function (val) {
  2406. return val.slice(1);
  2407. });
  2408. return this._longDateFormat[key];
  2409. }
  2410. var defaultInvalidDate = 'Invalid date';
  2411. function invalidDate () {
  2412. return this._invalidDate;
  2413. }
  2414. var defaultOrdinal = '%d';
  2415. var defaultDayOfMonthOrdinalParse = /\d{1,2}/;
  2416. function ordinal (number) {
  2417. return this._ordinal.replace('%d', number);
  2418. }
  2419. var defaultRelativeTime = {
  2420. future : 'in %s',
  2421. past : '%s ago',
  2422. s : 'a few seconds',
  2423. ss : '%d seconds',
  2424. m : 'a minute',
  2425. mm : '%d minutes',
  2426. h : 'an hour',
  2427. hh : '%d hours',
  2428. d : 'a day',
  2429. dd : '%d days',
  2430. M : 'a month',
  2431. MM : '%d months',
  2432. y : 'a year',
  2433. yy : '%d years'
  2434. };
  2435. function relativeTime (number, withoutSuffix, string, isFuture) {
  2436. var output = this._relativeTime[string];
  2437. return (isFunction(output)) ?
  2438. output(number, withoutSuffix, string, isFuture) :
  2439. output.replace(/%d/i, number);
  2440. }
  2441. function pastFuture (diff, output) {
  2442. var format = this._relativeTime[diff > 0 ? 'future' : 'past'];
  2443. return isFunction(format) ? format(output) : format.replace(/%s/i, output);
  2444. }
  2445. var aliases = {};
  2446. function addUnitAlias (unit, shorthand) {
  2447. var lowerCase = unit.toLowerCase();
  2448. aliases[lowerCase] = aliases[lowerCase + 's'] = aliases[shorthand] = unit;
  2449. }
  2450. function normalizeUnits(units) {
  2451. return typeof units === 'string' ? aliases[units] || aliases[units.toLowerCase()] : undefined;
  2452. }
  2453. function normalizeObjectUnits(inputObject) {
  2454. var normalizedInput = {},
  2455. normalizedProp,
  2456. prop;
  2457. for (prop in inputObject) {
  2458. if (hasOwnProp(inputObject, prop)) {
  2459. normalizedProp = normalizeUnits(prop);
  2460. if (normalizedProp) {
  2461. normalizedInput[normalizedProp] = inputObject[prop];
  2462. }
  2463. }
  2464. }
  2465. return normalizedInput;
  2466. }
  2467. var priorities = {};
  2468. function addUnitPriority(unit, priority) {
  2469. priorities[unit] = priority;
  2470. }
  2471. function getPrioritizedUnits(unitsObj) {
  2472. var units = [];
  2473. for (var u in unitsObj) {
  2474. units.push({unit: u, priority: priorities[u]});
  2475. }
  2476. units.sort(function (a, b) {
  2477. return a.priority - b.priority;
  2478. });
  2479. return units;
  2480. }
  2481. function makeGetSet (unit, keepTime) {
  2482. return function (value) {
  2483. if (value != null) {
  2484. set$1(this, unit, value);
  2485. hooks.updateOffset(this, keepTime);
  2486. return this;
  2487. } else {
  2488. return get(this, unit);
  2489. }
  2490. };
  2491. }
  2492. function get (mom, unit) {
  2493. return mom.isValid() ?
  2494. mom._d['get' + (mom._isUTC ? 'UTC' : '') + unit]() : NaN;
  2495. }
  2496. function set$1 (mom, unit, value) {
  2497. if (mom.isValid()) {
  2498. mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value);
  2499. }
  2500. }
  2501. // MOMENTS
  2502. function stringGet (units) {
  2503. units = normalizeUnits(units);
  2504. if (isFunction(this[units])) {
  2505. return this[units]();
  2506. }
  2507. return this;
  2508. }
  2509. function stringSet (units, value) {
  2510. if (typeof units === 'object') {
  2511. units = normalizeObjectUnits(units);
  2512. var prioritized = getPrioritizedUnits(units);
  2513. for (var i = 0; i < prioritized.length; i++) {
  2514. this[prioritized[i].unit](units[prioritized[i].unit]);
  2515. }
  2516. } else {
  2517. units = normalizeUnits(units);
  2518. if (isFunction(this[units])) {
  2519. return this[units](value);
  2520. }
  2521. }
  2522. return this;
  2523. }
  2524. function zeroFill(number, targetLength, forceSign) {
  2525. var absNumber = '' + Math.abs(number),
  2526. zerosToFill = targetLength - absNumber.length,
  2527. sign = number >= 0;
  2528. return (sign ? (forceSign ? '+' : '') : '-') +
  2529. Math.pow(10, Math.max(0, zerosToFill)).toString().substr(1) + absNumber;
  2530. }
  2531. 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;
  2532. var localFormattingTokens = /(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g;
  2533. var formatFunctions = {};
  2534. var formatTokenFunctions = {};
  2535. // token: 'M'
  2536. // padded: ['MM', 2]
  2537. // ordinal: 'Mo'
  2538. // callback: function () { this.month() + 1 }
  2539. function addFormatToken (token, padded, ordinal, callback) {
  2540. var func = callback;
  2541. if (typeof callback === 'string') {
  2542. func = function () {
  2543. return this[callback]();
  2544. };
  2545. }
  2546. if (token) {
  2547. formatTokenFunctions[token] = func;
  2548. }
  2549. if (padded) {
  2550. formatTokenFunctions[padded[0]] = function () {
  2551. return zeroFill(func.apply(this, arguments), padded[1], padded[2]);
  2552. };
  2553. }
  2554. if (ordinal) {
  2555. formatTokenFunctions[ordinal] = function () {
  2556. return this.localeData().ordinal(func.apply(this, arguments), token);
  2557. };
  2558. }
  2559. }
  2560. function removeFormattingTokens(input) {
  2561. if (input.match(/\[[\s\S]/)) {
  2562. return input.replace(/^\[|\]$/g, '');
  2563. }
  2564. return input.replace(/\\/g, '');
  2565. }
  2566. function makeFormatFunction(format) {
  2567. var array = format.match(formattingTokens), i, length;
  2568. for (i = 0, length = array.length; i < length; i++) {
  2569. if (formatTokenFunctions[array[i]]) {
  2570. array[i] = formatTokenFunctions[array[i]];
  2571. } else {
  2572. array[i] = removeFormattingTokens(array[i]);
  2573. }
  2574. }
  2575. return function (mom) {
  2576. var output = '', i;
  2577. for (i = 0; i < length; i++) {
  2578. output += isFunction(array[i]) ? array[i].call(mom, format) : array[i];
  2579. }
  2580. return output;
  2581. };
  2582. }
  2583. // format date using native date object
  2584. function formatMoment(m, format) {
  2585. if (!m.isValid()) {
  2586. return m.localeData().invalidDate();
  2587. }
  2588. format = expandFormat(format, m.localeData());
  2589. formatFunctions[format] = formatFunctions[format] || makeFormatFunction(format);
  2590. return formatFunctions[format](m);
  2591. }
  2592. function expandFormat(format, locale) {
  2593. var i = 5;
  2594. function replaceLongDateFormatTokens(input) {
  2595. return locale.longDateFormat(input) || input;
  2596. }
  2597. localFormattingTokens.lastIndex = 0;
  2598. while (i >= 0 && localFormattingTokens.test(format)) {
  2599. format = format.replace(localFormattingTokens, replaceLongDateFormatTokens);
  2600. localFormattingTokens.lastIndex = 0;
  2601. i -= 1;
  2602. }
  2603. return format;
  2604. }
  2605. var match1 = /\d/; // 0 - 9
  2606. var match2 = /\d\d/; // 00 - 99
  2607. var match3 = /\d{3}/; // 000 - 999
  2608. var match4 = /\d{4}/; // 0000 - 9999
  2609. var match6 = /[+-]?\d{6}/; // -999999 - 999999
  2610. var match1to2 = /\d\d?/; // 0 - 99
  2611. var match3to4 = /\d\d\d\d?/; // 999 - 9999
  2612. var match5to6 = /\d\d\d\d\d\d?/; // 99999 - 999999
  2613. var match1to3 = /\d{1,3}/; // 0 - 999
  2614. var match1to4 = /\d{1,4}/; // 0 - 9999
  2615. var match1to6 = /[+-]?\d{1,6}/; // -999999 - 999999
  2616. var matchUnsigned = /\d+/; // 0 - inf
  2617. var matchSigned = /[+-]?\d+/; // -inf - inf
  2618. var matchOffset = /Z|[+-]\d\d:?\d\d/gi; // +00:00 -00:00 +0000 -0000 or Z
  2619. var matchShortOffset = /Z|[+-]\d\d(?::?\d\d)?/gi; // +00 -00 +00:00 -00:00 +0000 -0000 or Z
  2620. var matchTimestamp = /[+-]?\d+(\.\d{1,3})?/; // 123456789 123456789.123
  2621. // any word (or two) characters or numbers including two/three word month in arabic.
  2622. // includes scottish gaelic two word and hyphenated months
  2623. var matchWord = /[0-9]*['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+|[\u0600-\u06FF\/]+(\s*?[\u0600-\u06FF]+){1,2}/i;
  2624. var regexes = {};
  2625. function addRegexToken (token, regex, strictRegex) {
  2626. regexes[token] = isFunction(regex) ? regex : function (isStrict, localeData) {
  2627. return (isStrict && strictRegex) ? strictRegex : regex;
  2628. };
  2629. }
  2630. function getParseRegexForToken (token, config) {
  2631. if (!hasOwnProp(regexes, token)) {
  2632. return new RegExp(unescapeFormat(token));
  2633. }
  2634. return regexes[token](config._strict, config._locale);
  2635. }
  2636. // Code from http://stackoverflow.com/questions/3561493/is-there-a-regexp-escape-function-in-javascript
  2637. function unescapeFormat(s) {
  2638. return regexEscape(s.replace('\\', '').replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g, function (matched, p1, p2, p3, p4) {
  2639. return p1 || p2 || p3 || p4;
  2640. }));
  2641. }
  2642. function regexEscape(s) {
  2643. return s.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&');
  2644. }
  2645. var tokens = {};
  2646. function addParseToken (token, callback) {
  2647. var i, func = callback;
  2648. if (typeof token === 'string') {
  2649. token = [token];
  2650. }
  2651. if (isNumber(callback)) {
  2652. func = function (input, array) {
  2653. array[callback] = toInt(input);
  2654. };
  2655. }
  2656. for (i = 0; i < token.length; i++) {
  2657. tokens[token[i]] = func;
  2658. }
  2659. }
  2660. function addWeekParseToken (token, callback) {
  2661. addParseToken(token, function (input, array, config, token) {
  2662. config._w = config._w || {};
  2663. callback(input, config._w, config, token);
  2664. });
  2665. }
  2666. function addTimeToArrayFromToken(token, input, config) {
  2667. if (input != null && hasOwnProp(tokens, token)) {
  2668. tokens[token](input, config._a, config, token);
  2669. }
  2670. }
  2671. var YEAR = 0;
  2672. var MONTH = 1;
  2673. var DATE = 2;
  2674. var HOUR = 3;
  2675. var MINUTE = 4;
  2676. var SECOND = 5;
  2677. var MILLISECOND = 6;
  2678. var WEEK = 7;
  2679. var WEEKDAY = 8;
  2680. var indexOf;
  2681. if (Array.prototype.indexOf) {
  2682. indexOf = Array.prototype.indexOf;
  2683. } else {
  2684. indexOf = function (o) {
  2685. // I know
  2686. var i;
  2687. for (i = 0; i < this.length; ++i) {
  2688. if (this[i] === o) {
  2689. return i;
  2690. }
  2691. }
  2692. return -1;
  2693. };
  2694. }
  2695. var indexOf$1 = indexOf;
  2696. function daysInMonth(year, month) {
  2697. return new Date(Date.UTC(year, month + 1, 0)).getUTCDate();
  2698. }
  2699. // FORMATTING
  2700. addFormatToken('M', ['MM', 2], 'Mo', function () {
  2701. return this.month() + 1;
  2702. });
  2703. addFormatToken('MMM', 0, 0, function (format) {
  2704. return this.localeData().monthsShort(this, format);
  2705. });
  2706. addFormatToken('MMMM', 0, 0, function (format) {
  2707. return this.localeData().months(this, format);
  2708. });
  2709. // ALIASES
  2710. addUnitAlias('month', 'M');
  2711. // PRIORITY
  2712. addUnitPriority('month', 8);
  2713. // PARSING
  2714. addRegexToken('M', match1to2);
  2715. addRegexToken('MM', match1to2, match2);
  2716. addRegexToken('MMM', function (isStrict, locale) {
  2717. return locale.monthsShortRegex(isStrict);
  2718. });
  2719. addRegexToken('MMMM', function (isStrict, locale) {
  2720. return locale.monthsRegex(isStrict);
  2721. });
  2722. addParseToken(['M', 'MM'], function (input, array) {
  2723. array[MONTH] = toInt(input) - 1;
  2724. });
  2725. addParseToken(['MMM', 'MMMM'], function (input, array, config, token) {
  2726. var month = config._locale.monthsParse(input, token, config._strict);
  2727. // if we didn't find a month name, mark the date as invalid.
  2728. if (month != null) {
  2729. array[MONTH] = month;
  2730. } else {
  2731. getParsingFlags(config).invalidMonth = input;
  2732. }
  2733. });
  2734. // LOCALES
  2735. var MONTHS_IN_FORMAT = /D[oD]?(\[[^\[\]]*\]|\s)+MMMM?/;
  2736. var defaultLocaleMonths = 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_');
  2737. function localeMonths (m, format) {
  2738. if (!m) {
  2739. return isArray(this._months) ? this._months :
  2740. this._months['standalone'];
  2741. }
  2742. return isArray(this._months) ? this._months[m.month()] :
  2743. this._months[(this._months.isFormat || MONTHS_IN_FORMAT).test(format) ? 'format' : 'standalone'][m.month()];
  2744. }
  2745. var defaultLocaleMonthsShort = 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_');
  2746. function localeMonthsShort (m, format) {
  2747. if (!m) {
  2748. return isArray(this._monthsShort) ? this._monthsShort :
  2749. this._monthsShort['standalone'];
  2750. }
  2751. return isArray(this._monthsShort) ? this._monthsShort[m.month()] :
  2752. this._monthsShort[MONTHS_IN_FORMAT.test(format) ? 'format' : 'standalone'][m.month()];
  2753. }
  2754. function handleStrictParse(monthName, format, strict) {
  2755. var i, ii, mom, llc = monthName.toLocaleLowerCase();
  2756. if (!this._monthsParse) {
  2757. // this is not used
  2758. this._monthsParse = [];
  2759. this._longMonthsParse = [];
  2760. this._shortMonthsParse = [];
  2761. for (i = 0; i < 12; ++i) {
  2762. mom = createUTC([2000, i]);
  2763. this._shortMonthsParse[i] = this.monthsShort(mom, '').toLocaleLowerCase();
  2764. this._longMonthsParse[i] = this.months(mom, '').toLocaleLowerCase();
  2765. }
  2766. }
  2767. if (strict) {
  2768. if (format === 'MMM') {
  2769. ii = indexOf$1.call(this._shortMonthsParse, llc);
  2770. return ii !== -1 ? ii : null;
  2771. } else {
  2772. ii = indexOf$1.call(this._longMonthsParse, llc);
  2773. return ii !== -1 ? ii : null;
  2774. }
  2775. } else {
  2776. if (format === 'MMM') {
  2777. ii = indexOf$1.call(this._shortMonthsParse, llc);
  2778. if (ii !== -1) {
  2779. return ii;
  2780. }
  2781. ii = indexOf$1.call(this._longMonthsParse, llc);
  2782. return ii !== -1 ? ii : null;
  2783. } else {
  2784. ii = indexOf$1.call(this._longMonthsParse, llc);
  2785. if (ii !== -1) {
  2786. return ii;
  2787. }
  2788. ii = indexOf$1.call(this._shortMonthsParse, llc);
  2789. return ii !== -1 ? ii : null;
  2790. }
  2791. }
  2792. }
  2793. function localeMonthsParse (monthName, format, strict) {
  2794. var i, mom, regex;
  2795. if (this._monthsParseExact) {
  2796. return handleStrictParse.call(this, monthName, format, strict);
  2797. }
  2798. if (!this._monthsParse) {
  2799. this._monthsParse = [];
  2800. this._longMonthsParse = [];
  2801. this._shortMonthsParse = [];
  2802. }
  2803. // TODO: add sorting
  2804. // Sorting makes sure if one month (or abbr) is a prefix of another
  2805. // see sorting in computeMonthsParse
  2806. for (i = 0; i < 12; i++) {
  2807. // make the regex if we don't have it already
  2808. mom = createUTC([2000, i]);
  2809. if (strict && !this._longMonthsParse[i]) {
  2810. this._longMonthsParse[i] = new RegExp('^' + this.months(mom, '').replace('.', '') + '$', 'i');
  2811. this._shortMonthsParse[i] = new RegExp('^' + this.monthsShort(mom, '').replace('.', '') + '$', 'i');
  2812. }
  2813. if (!strict && !this._monthsParse[i]) {
  2814. regex = '^' + this.months(mom, '') + '|^' + this.monthsShort(mom, '');
  2815. this._monthsParse[i] = new RegExp(regex.replace('.', ''), 'i');
  2816. }
  2817. // test the regex
  2818. if (strict && format === 'MMMM' && this._longMonthsParse[i].test(monthName)) {
  2819. return i;
  2820. } else if (strict && format === 'MMM' && this._shortMonthsParse[i].test(monthName)) {
  2821. return i;
  2822. } else if (!strict && this._monthsParse[i].test(monthName)) {
  2823. return i;
  2824. }
  2825. }
  2826. }
  2827. // MOMENTS
  2828. function setMonth (mom, value) {
  2829. var dayOfMonth;
  2830. if (!mom.isValid()) {
  2831. // No op
  2832. return mom;
  2833. }
  2834. if (typeof value === 'string') {
  2835. if (/^\d+$/.test(value)) {
  2836. value = toInt(value);
  2837. } else {
  2838. value = mom.localeData().monthsParse(value);
  2839. // TODO: Another silent failure?
  2840. if (!isNumber(value)) {
  2841. return mom;
  2842. }
  2843. }
  2844. }
  2845. dayOfMonth = Math.min(mom.date(), daysInMonth(mom.year(), value));
  2846. mom._d['set' + (mom._isUTC ? 'UTC' : '') + 'Month'](value, dayOfMonth);
  2847. return mom;
  2848. }
  2849. function getSetMonth (value) {
  2850. if (value != null) {
  2851. setMonth(this, value);
  2852. hooks.updateOffset(this, true);
  2853. return this;
  2854. } else {
  2855. return get(this, 'Month');
  2856. }
  2857. }
  2858. function getDaysInMonth () {
  2859. return daysInMonth(this.year(), this.month());
  2860. }
  2861. var defaultMonthsShortRegex = matchWord;
  2862. function monthsShortRegex (isStrict) {
  2863. if (this._monthsParseExact) {
  2864. if (!hasOwnProp(this, '_monthsRegex')) {
  2865. computeMonthsParse.call(this);
  2866. }
  2867. if (isStrict) {
  2868. return this._monthsShortStrictRegex;
  2869. } else {
  2870. return this._monthsShortRegex;
  2871. }
  2872. } else {
  2873. if (!hasOwnProp(this, '_monthsShortRegex')) {
  2874. this._monthsShortRegex = defaultMonthsShortRegex;
  2875. }
  2876. return this._monthsShortStrictRegex && isStrict ?
  2877. this._monthsShortStrictRegex : this._monthsShortRegex;
  2878. }
  2879. }
  2880. var defaultMonthsRegex = matchWord;
  2881. function monthsRegex (isStrict) {
  2882. if (this._monthsParseExact) {
  2883. if (!hasOwnProp(this, '_monthsRegex')) {
  2884. computeMonthsParse.call(this);
  2885. }
  2886. if (isStrict) {
  2887. return this._monthsStrictRegex;
  2888. } else {
  2889. return this._monthsRegex;
  2890. }
  2891. } else {
  2892. if (!hasOwnProp(this, '_monthsRegex')) {
  2893. this._monthsRegex = defaultMonthsRegex;
  2894. }
  2895. return this._monthsStrictRegex && isStrict ?
  2896. this._monthsStrictRegex : this._monthsRegex;
  2897. }
  2898. }
  2899. function computeMonthsParse () {
  2900. function cmpLenRev(a, b) {
  2901. return b.length - a.length;
  2902. }
  2903. var shortPieces = [], longPieces = [], mixedPieces = [],
  2904. i, mom;
  2905. for (i = 0; i < 12; i++) {
  2906. // make the regex if we don't have it already
  2907. mom = createUTC([2000, i]);
  2908. shortPieces.push(this.monthsShort(mom, ''));
  2909. longPieces.push(this.months(mom, ''));
  2910. mixedPieces.push(this.months(mom, ''));
  2911. mixedPieces.push(this.monthsShort(mom, ''));
  2912. }
  2913. // Sorting makes sure if one month (or abbr) is a prefix of another it
  2914. // will match the longer piece.
  2915. shortPieces.sort(cmpLenRev);
  2916. longPieces.sort(cmpLenRev);
  2917. mixedPieces.sort(cmpLenRev);
  2918. for (i = 0; i < 12; i++) {
  2919. shortPieces[i] = regexEscape(shortPieces[i]);
  2920. longPieces[i] = regexEscape(longPieces[i]);
  2921. }
  2922. for (i = 0; i < 24; i++) {
  2923. mixedPieces[i] = regexEscape(mixedPieces[i]);
  2924. }
  2925. this._monthsRegex = new RegExp('^(' + mixedPieces.join('|') + ')', 'i');
  2926. this._monthsShortRegex = this._monthsRegex;
  2927. this._monthsStrictRegex = new RegExp('^(' + longPieces.join('|') + ')', 'i');
  2928. this._monthsShortStrictRegex = new RegExp('^(' + shortPieces.join('|') + ')', 'i');
  2929. }
  2930. // FORMATTING
  2931. addFormatToken('Y', 0, 0, function () {
  2932. var y = this.year();
  2933. return y <= 9999 ? '' + y : '+' + y;
  2934. });
  2935. addFormatToken(0, ['YY', 2], 0, function () {
  2936. return this.year() % 100;
  2937. });
  2938. addFormatToken(0, ['YYYY', 4], 0, 'year');
  2939. addFormatToken(0, ['YYYYY', 5], 0, 'year');
  2940. addFormatToken(0, ['YYYYYY', 6, true], 0, 'year');
  2941. // ALIASES
  2942. addUnitAlias('year', 'y');
  2943. // PRIORITIES
  2944. addUnitPriority('year', 1);
  2945. // PARSING
  2946. addRegexToken('Y', matchSigned);
  2947. addRegexToken('YY', match1to2, match2);
  2948. addRegexToken('YYYY', match1to4, match4);
  2949. addRegexToken('YYYYY', match1to6, match6);
  2950. addRegexToken('YYYYYY', match1to6, match6);
  2951. addParseToken(['YYYYY', 'YYYYYY'], YEAR);
  2952. addParseToken('YYYY', function (input, array) {
  2953. array[YEAR] = input.length === 2 ? hooks.parseTwoDigitYear(input) : toInt(input);
  2954. });
  2955. addParseToken('YY', function (input, array) {
  2956. array[YEAR] = hooks.parseTwoDigitYear(input);
  2957. });
  2958. addParseToken('Y', function (input, array) {
  2959. array[YEAR] = parseInt(input, 10);
  2960. });
  2961. // HELPERS
  2962. function daysInYear(year) {
  2963. return isLeapYear(year) ? 366 : 365;
  2964. }
  2965. function isLeapYear(year) {
  2966. return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0;
  2967. }
  2968. // HOOKS
  2969. hooks.parseTwoDigitYear = function (input) {
  2970. return toInt(input) + (toInt(input) > 68 ? 1900 : 2000);
  2971. };
  2972. // MOMENTS
  2973. var getSetYear = makeGetSet('FullYear', true);
  2974. function getIsLeapYear () {
  2975. return isLeapYear(this.year());
  2976. }
  2977. function createDate (y, m, d, h, M, s, ms) {
  2978. // can't just apply() to create a date:
  2979. // https://stackoverflow.com/q/181348
  2980. var date = new Date(y, m, d, h, M, s, ms);
  2981. // the date constructor remaps years 0-99 to 1900-1999
  2982. if (y < 100 && y >= 0 && isFinite(date.getFullYear())) {
  2983. date.setFullYear(y);
  2984. }
  2985. return date;
  2986. }
  2987. function createUTCDate (y) {
  2988. var date = new Date(Date.UTC.apply(null, arguments));
  2989. // the Date.UTC function remaps years 0-99 to 1900-1999
  2990. if (y < 100 && y >= 0 && isFinite(date.getUTCFullYear())) {
  2991. date.setUTCFullYear(y);
  2992. }
  2993. return date;
  2994. }
  2995. // start-of-first-week - start-of-year
  2996. function firstWeekOffset(year, dow, doy) {
  2997. var // first-week day -- which january is always in the first week (4 for iso, 1 for other)
  2998. fwd = 7 + dow - doy,
  2999. // first-week day local weekday -- which local weekday is fwd
  3000. fwdlw = (7 + createUTCDate(year, 0, fwd).getUTCDay() - dow) % 7;
  3001. return -fwdlw + fwd - 1;
  3002. }
  3003. // https://en.wikipedia.org/wiki/ISO_week_date#Calculating_a_date_given_the_year.2C_week_number_and_weekday
  3004. function dayOfYearFromWeeks(year, week, weekday, dow, doy) {
  3005. var localWeekday = (7 + weekday - dow) % 7,
  3006. weekOffset = firstWeekOffset(year, dow, doy),
  3007. dayOfYear = 1 + 7 * (week - 1) + localWeekday + weekOffset,
  3008. resYear, resDayOfYear;
  3009. if (dayOfYear <= 0) {
  3010. resYear = year - 1;
  3011. resDayOfYear = daysInYear(resYear) + dayOfYear;
  3012. } else if (dayOfYear > daysInYear(year)) {
  3013. resYear = year + 1;
  3014. resDayOfYear = dayOfYear - daysInYear(year);
  3015. } else {
  3016. resYear = year;
  3017. resDayOfYear = dayOfYear;
  3018. }
  3019. return {
  3020. year: resYear,
  3021. dayOfYear: resDayOfYear
  3022. };
  3023. }
  3024. function weekOfYear(mom, dow, doy) {
  3025. var weekOffset = firstWeekOffset(mom.year(), dow, doy),
  3026. week = Math.floor((mom.dayOfYear() - weekOffset - 1) / 7) + 1,
  3027. resWeek, resYear;
  3028. if (week < 1) {
  3029. resYear = mom.year() - 1;
  3030. resWeek = week + weeksInYear(resYear, dow, doy);
  3031. } else if (week > weeksInYear(mom.year(), dow, doy)) {
  3032. resWeek = week - weeksInYear(mom.year(), dow, doy);
  3033. resYear = mom.year() + 1;
  3034. } else {
  3035. resYear = mom.year();
  3036. resWeek = week;
  3037. }
  3038. return {
  3039. week: resWeek,
  3040. year: resYear
  3041. };
  3042. }
  3043. function weeksInYear(year, dow, doy) {
  3044. var weekOffset = firstWeekOffset(year, dow, doy),
  3045. weekOffsetNext = firstWeekOffset(year + 1, dow, doy);
  3046. return (daysInYear(year) - weekOffset + weekOffsetNext) / 7;
  3047. }
  3048. // FORMATTING
  3049. addFormatToken('w', ['ww', 2], 'wo', 'week');
  3050. addFormatToken('W', ['WW', 2], 'Wo', 'isoWeek');
  3051. // ALIASES
  3052. addUnitAlias('week', 'w');
  3053. addUnitAlias('isoWeek', 'W');
  3054. // PRIORITIES
  3055. addUnitPriority('week', 5);
  3056. addUnitPriority('isoWeek', 5);
  3057. // PARSING
  3058. addRegexToken('w', match1to2);
  3059. addRegexToken('ww', match1to2, match2);
  3060. addRegexToken('W', match1to2);
  3061. addRegexToken('WW', match1to2, match2);
  3062. addWeekParseToken(['w', 'ww', 'W', 'WW'], function (input, week, config, token) {
  3063. week[token.substr(0, 1)] = toInt(input);
  3064. });
  3065. // HELPERS
  3066. // LOCALES
  3067. function localeWeek (mom) {
  3068. return weekOfYear(mom, this._week.dow, this._week.doy).week;
  3069. }
  3070. var defaultLocaleWeek = {
  3071. dow : 0, // Sunday is the first day of the week.
  3072. doy : 6 // The week that contains Jan 1st is the first week of the year.
  3073. };
  3074. function localeFirstDayOfWeek () {
  3075. return this._week.dow;
  3076. }
  3077. function localeFirstDayOfYear () {
  3078. return this._week.doy;
  3079. }
  3080. // MOMENTS
  3081. function getSetWeek (input) {
  3082. var week = this.localeData().week(this);
  3083. return input == null ? week : this.add((input - week) * 7, 'd');
  3084. }
  3085. function getSetISOWeek (input) {
  3086. var week = weekOfYear(this, 1, 4).week;
  3087. return input == null ? week : this.add((input - week) * 7, 'd');
  3088. }
  3089. // FORMATTING
  3090. addFormatToken('d', 0, 'do', 'day');
  3091. addFormatToken('dd', 0, 0, function (format) {
  3092. return this.localeData().weekdaysMin(this, format);
  3093. });
  3094. addFormatToken('ddd', 0, 0, function (format) {
  3095. return this.localeData().weekdaysShort(this, format);
  3096. });
  3097. addFormatToken('dddd', 0, 0, function (format) {
  3098. return this.localeData().weekdays(this, format);
  3099. });
  3100. addFormatToken('e', 0, 0, 'weekday');
  3101. addFormatToken('E', 0, 0, 'isoWeekday');
  3102. // ALIASES
  3103. addUnitAlias('day', 'd');
  3104. addUnitAlias('weekday', 'e');
  3105. addUnitAlias('isoWeekday', 'E');
  3106. // PRIORITY
  3107. addUnitPriority('day', 11);
  3108. addUnitPriority('weekday', 11);
  3109. addUnitPriority('isoWeekday', 11);
  3110. // PARSING
  3111. addRegexToken('d', match1to2);
  3112. addRegexToken('e', match1to2);
  3113. addRegexToken('E', match1to2);
  3114. addRegexToken('dd', function (isStrict, locale) {
  3115. return locale.weekdaysMinRegex(isStrict);
  3116. });
  3117. addRegexToken('ddd', function (isStrict, locale) {
  3118. return locale.weekdaysShortRegex(isStrict);
  3119. });
  3120. addRegexToken('dddd', function (isStrict, locale) {
  3121. return locale.weekdaysRegex(isStrict);
  3122. });
  3123. addWeekParseToken(['dd', 'ddd', 'dddd'], function (input, week, config, token) {
  3124. var weekday = config._locale.weekdaysParse(input, token, config._strict);
  3125. // if we didn't get a weekday name, mark the date as invalid
  3126. if (weekday != null) {
  3127. week.d = weekday;
  3128. } else {
  3129. getParsingFlags(config).invalidWeekday = input;
  3130. }
  3131. });
  3132. addWeekParseToken(['d', 'e', 'E'], function (input, week, config, token) {
  3133. week[token] = toInt(input);
  3134. });
  3135. // HELPERS
  3136. function parseWeekday(input, locale) {
  3137. if (typeof input !== 'string') {
  3138. return input;
  3139. }
  3140. if (!isNaN(input)) {
  3141. return parseInt(input, 10);
  3142. }
  3143. input = locale.weekdaysParse(input);
  3144. if (typeof input === 'number') {
  3145. return input;
  3146. }
  3147. return null;
  3148. }
  3149. function parseIsoWeekday(input, locale) {
  3150. if (typeof input === 'string') {
  3151. return locale.weekdaysParse(input) % 7 || 7;
  3152. }
  3153. return isNaN(input) ? null : input;
  3154. }
  3155. // LOCALES
  3156. var defaultLocaleWeekdays = 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_');
  3157. function localeWeekdays (m, format) {
  3158. if (!m) {
  3159. return isArray(this._weekdays) ? this._weekdays :
  3160. this._weekdays['standalone'];
  3161. }
  3162. return isArray(this._weekdays) ? this._weekdays[m.day()] :
  3163. this._weekdays[this._weekdays.isFormat.test(format) ? 'format' : 'standalone'][m.day()];
  3164. }
  3165. var defaultLocaleWeekdaysShort = 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_');
  3166. function localeWeekdaysShort (m) {
  3167. return (m) ? this._weekdaysShort[m.day()] : this._weekdaysShort;
  3168. }
  3169. var defaultLocaleWeekdaysMin = 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_');
  3170. function localeWeekdaysMin (m) {
  3171. return (m) ? this._weekdaysMin[m.day()] : this._weekdaysMin;
  3172. }
  3173. function handleStrictParse$1(weekdayName, format, strict) {
  3174. var i, ii, mom, llc = weekdayName.toLocaleLowerCase();
  3175. if (!this._weekdaysParse) {
  3176. this._weekdaysParse = [];
  3177. this._shortWeekdaysParse = [];
  3178. this._minWeekdaysParse = [];
  3179. for (i = 0; i < 7; ++i) {
  3180. mom = createUTC([2000, 1]).day(i);
  3181. this._minWeekdaysParse[i] = this.weekdaysMin(mom, '').toLocaleLowerCase();
  3182. this._shortWeekdaysParse[i] = this.weekdaysShort(mom, '').toLocaleLowerCase();
  3183. this._weekdaysParse[i] = this.weekdays(mom, '').toLocaleLowerCase();
  3184. }
  3185. }
  3186. if (strict) {
  3187. if (format === 'dddd') {
  3188. ii = indexOf$1.call(this._weekdaysParse, llc);
  3189. return ii !== -1 ? ii : null;
  3190. } else if (format === 'ddd') {
  3191. ii = indexOf$1.call(this._shortWeekdaysParse, llc);
  3192. return ii !== -1 ? ii : null;
  3193. } else {
  3194. ii = indexOf$1.call(this._minWeekdaysParse, llc);
  3195. return ii !== -1 ? ii : null;
  3196. }
  3197. } else {
  3198. if (format === 'dddd') {
  3199. ii = indexOf$1.call(this._weekdaysParse, llc);
  3200. if (ii !== -1) {
  3201. return ii;
  3202. }
  3203. ii = indexOf$1.call(this._shortWeekdaysParse, llc);
  3204. if (ii !== -1) {
  3205. return ii;
  3206. }
  3207. ii = indexOf$1.call(this._minWeekdaysParse, llc);
  3208. return ii !== -1 ? ii : null;
  3209. } else if (format === 'ddd') {
  3210. ii = indexOf$1.call(this._shortWeekdaysParse, llc);
  3211. if (ii !== -1) {
  3212. return ii;
  3213. }
  3214. ii = indexOf$1.call(this._weekdaysParse, llc);
  3215. if (ii !== -1) {
  3216. return ii;
  3217. }
  3218. ii = indexOf$1.call(this._minWeekdaysParse, llc);
  3219. return ii !== -1 ? ii : null;
  3220. } else {
  3221. ii = indexOf$1.call(this._minWeekdaysParse, llc);
  3222. if (ii !== -1) {
  3223. return ii;
  3224. }
  3225. ii = indexOf$1.call(this._weekdaysParse, llc);
  3226. if (ii !== -1) {
  3227. return ii;
  3228. }
  3229. ii = indexOf$1.call(this._shortWeekdaysParse, llc);
  3230. return ii !== -1 ? ii : null;
  3231. }
  3232. }
  3233. }
  3234. function localeWeekdaysParse (weekdayName, format, strict) {
  3235. var i, mom, regex;
  3236. if (this._weekdaysParseExact) {
  3237. return handleStrictParse$1.call(this, weekdayName, format, strict);
  3238. }
  3239. if (!this._weekdaysParse) {
  3240. this._weekdaysParse = [];
  3241. this._minWeekdaysParse = [];
  3242. this._shortWeekdaysParse = [];
  3243. this._fullWeekdaysParse = [];
  3244. }
  3245. for (i = 0; i < 7; i++) {
  3246. // make the regex if we don't have it already
  3247. mom = createUTC([2000, 1]).day(i);
  3248. if (strict && !this._fullWeekdaysParse[i]) {
  3249. this._fullWeekdaysParse[i] = new RegExp('^' + this.weekdays(mom, '').replace('.', '\.?') + '$', 'i');
  3250. this._shortWeekdaysParse[i] = new RegExp('^' + this.weekdaysShort(mom, '').replace('.', '\.?') + '$', 'i');
  3251. this._minWeekdaysParse[i] = new RegExp('^' + this.weekdaysMin(mom, '').replace('.', '\.?') + '$', 'i');
  3252. }
  3253. if (!this._weekdaysParse[i]) {
  3254. regex = '^' + this.weekdays(mom, '') + '|^' + this.weekdaysShort(mom, '') + '|^' + this.weekdaysMin(mom, '');
  3255. this._weekdaysParse[i] = new RegExp(regex.replace('.', ''), 'i');
  3256. }
  3257. // test the regex
  3258. if (strict && format === 'dddd' && this._fullWeekdaysParse[i].test(weekdayName)) {
  3259. return i;
  3260. } else if (strict && format === 'ddd' && this._shortWeekdaysParse[i].test(weekdayName)) {
  3261. return i;
  3262. } else if (strict && format === 'dd' && this._minWeekdaysParse[i].test(weekdayName)) {
  3263. return i;
  3264. } else if (!strict && this._weekdaysParse[i].test(weekdayName)) {
  3265. return i;
  3266. }
  3267. }
  3268. }
  3269. // MOMENTS
  3270. function getSetDayOfWeek (input) {
  3271. if (!this.isValid()) {
  3272. return input != null ? this : NaN;
  3273. }
  3274. var day = this._isUTC ? this._d.getUTCDay() : this._d.getDay();
  3275. if (input != null) {
  3276. input = parseWeekday(input, this.localeData());
  3277. return this.add(input - day, 'd');
  3278. } else {
  3279. return day;
  3280. }
  3281. }
  3282. function getSetLocaleDayOfWeek (input) {
  3283. if (!this.isValid()) {
  3284. return input != null ? this : NaN;
  3285. }
  3286. var weekday = (this.day() + 7 - this.localeData()._week.dow) % 7;
  3287. return input == null ? weekday : this.add(input - weekday, 'd');
  3288. }
  3289. function getSetISODayOfWeek (input) {
  3290. if (!this.isValid()) {
  3291. return input != null ? this : NaN;
  3292. }
  3293. // behaves the same as moment#day except
  3294. // as a getter, returns 7 instead of 0 (1-7 range instead of 0-6)
  3295. // as a setter, sunday should belong to the previous week.
  3296. if (input != null) {
  3297. var weekday = parseIsoWeekday(input, this.localeData());
  3298. return this.day(this.day() % 7 ? weekday : weekday - 7);
  3299. } else {
  3300. return this.day() || 7;
  3301. }
  3302. }
  3303. var defaultWeekdaysRegex = matchWord;
  3304. function weekdaysRegex (isStrict) {
  3305. if (this._weekdaysParseExact) {
  3306. if (!hasOwnProp(this, '_weekdaysRegex')) {
  3307. computeWeekdaysParse.call(this);
  3308. }
  3309. if (isStrict) {
  3310. return this._weekdaysStrictRegex;
  3311. } else {
  3312. return this._weekdaysRegex;
  3313. }
  3314. } else {
  3315. if (!hasOwnProp(this, '_weekdaysRegex')) {
  3316. this._weekdaysRegex = defaultWeekdaysRegex;
  3317. }
  3318. return this._weekdaysStrictRegex && isStrict ?
  3319. this._weekdaysStrictRegex : this._weekdaysRegex;
  3320. }
  3321. }
  3322. var defaultWeekdaysShortRegex = matchWord;
  3323. function weekdaysShortRegex (isStrict) {
  3324. if (this._weekdaysParseExact) {
  3325. if (!hasOwnProp(this, '_weekdaysRegex')) {
  3326. computeWeekdaysParse.call(this);
  3327. }
  3328. if (isStrict) {
  3329. return this._weekdaysShortStrictRegex;
  3330. } else {
  3331. return this._weekdaysShortRegex;
  3332. }
  3333. } else {
  3334. if (!hasOwnProp(this, '_weekdaysShortRegex')) {
  3335. this._weekdaysShortRegex = defaultWeekdaysShortRegex;
  3336. }
  3337. return this._weekdaysShortStrictRegex && isStrict ?
  3338. this._weekdaysShortStrictRegex : this._weekdaysShortRegex;
  3339. }
  3340. }
  3341. var defaultWeekdaysMinRegex = matchWord;
  3342. function weekdaysMinRegex (isStrict) {
  3343. if (this._weekdaysParseExact) {
  3344. if (!hasOwnProp(this, '_weekdaysRegex')) {
  3345. computeWeekdaysParse.call(this);
  3346. }
  3347. if (isStrict) {
  3348. return this._weekdaysMinStrictRegex;
  3349. } else {
  3350. return this._weekdaysMinRegex;
  3351. }
  3352. } else {
  3353. if (!hasOwnProp(this, '_weekdaysMinRegex')) {
  3354. this._weekdaysMinRegex = defaultWeekdaysMinRegex;
  3355. }
  3356. return this._weekdaysMinStrictRegex && isStrict ?
  3357. this._weekdaysMinStrictRegex : this._weekdaysMinRegex;
  3358. }
  3359. }
  3360. function computeWeekdaysParse () {
  3361. function cmpLenRev(a, b) {
  3362. return b.length - a.length;
  3363. }
  3364. var minPieces = [], shortPieces = [], longPieces = [], mixedPieces = [],
  3365. i, mom, minp, shortp, longp;
  3366. for (i = 0; i < 7; i++) {
  3367. // make the regex if we don't have it already
  3368. mom = createUTC([2000, 1]).day(i);
  3369. minp = this.weekdaysMin(mom, '');
  3370. shortp = this.weekdaysShort(mom, '');
  3371. longp = this.weekdays(mom, '');
  3372. minPieces.push(minp);
  3373. shortPieces.push(shortp);
  3374. longPieces.push(longp);
  3375. mixedPieces.push(minp);
  3376. mixedPieces.push(shortp);
  3377. mixedPieces.push(longp);
  3378. }
  3379. // Sorting makes sure if one weekday (or abbr) is a prefix of another it
  3380. // will match the longer piece.
  3381. minPieces.sort(cmpLenRev);
  3382. shortPieces.sort(cmpLenRev);
  3383. longPieces.sort(cmpLenRev);
  3384. mixedPieces.sort(cmpLenRev);
  3385. for (i = 0; i < 7; i++) {
  3386. shortPieces[i] = regexEscape(shortPieces[i]);
  3387. longPieces[i] = regexEscape(longPieces[i]);
  3388. mixedPieces[i] = regexEscape(mixedPieces[i]);
  3389. }
  3390. this._weekdaysRegex = new RegExp('^(' + mixedPieces.join('|') + ')', 'i');
  3391. this._weekdaysShortRegex = this._weekdaysRegex;
  3392. this._weekdaysMinRegex = this._weekdaysRegex;
  3393. this._weekdaysStrictRegex = new RegExp('^(' + longPieces.join('|') + ')', 'i');
  3394. this._weekdaysShortStrictRegex = new RegExp('^(' + shortPieces.join('|') + ')', 'i');
  3395. this._weekdaysMinStrictRegex = new RegExp('^(' + minPieces.join('|') + ')', 'i');
  3396. }
  3397. // FORMATTING
  3398. function hFormat() {
  3399. return this.hours() % 12 || 12;
  3400. }
  3401. function kFormat() {
  3402. return this.hours() || 24;
  3403. }
  3404. addFormatToken('H', ['HH', 2], 0, 'hour');
  3405. addFormatToken('h', ['hh', 2], 0, hFormat);
  3406. addFormatToken('k', ['kk', 2], 0, kFormat);
  3407. addFormatToken('hmm', 0, 0, function () {
  3408. return '' + hFormat.apply(this) + zeroFill(this.minutes(), 2);
  3409. });
  3410. addFormatToken('hmmss', 0, 0, function () {
  3411. return '' + hFormat.apply(this) + zeroFill(this.minutes(), 2) +
  3412. zeroFill(this.seconds(), 2);
  3413. });
  3414. addFormatToken('Hmm', 0, 0, function () {
  3415. return '' + this.hours() + zeroFill(this.minutes(), 2);
  3416. });
  3417. addFormatToken('Hmmss', 0, 0, function () {
  3418. return '' + this.hours() + zeroFill(this.minutes(), 2) +
  3419. zeroFill(this.seconds(), 2);
  3420. });
  3421. function meridiem (token, lowercase) {
  3422. addFormatToken(token, 0, 0, function () {
  3423. return this.localeData().meridiem(this.hours(), this.minutes(), lowercase);
  3424. });
  3425. }
  3426. meridiem('a', true);
  3427. meridiem('A', false);
  3428. // ALIASES
  3429. addUnitAlias('hour', 'h');
  3430. // PRIORITY
  3431. addUnitPriority('hour', 13);
  3432. // PARSING
  3433. function matchMeridiem (isStrict, locale) {
  3434. return locale._meridiemParse;
  3435. }
  3436. addRegexToken('a', matchMeridiem);
  3437. addRegexToken('A', matchMeridiem);
  3438. addRegexToken('H', match1to2);
  3439. addRegexToken('h', match1to2);
  3440. addRegexToken('k', match1to2);
  3441. addRegexToken('HH', match1to2, match2);
  3442. addRegexToken('hh', match1to2, match2);
  3443. addRegexToken('kk', match1to2, match2);
  3444. addRegexToken('hmm', match3to4);
  3445. addRegexToken('hmmss', match5to6);
  3446. addRegexToken('Hmm', match3to4);
  3447. addRegexToken('Hmmss', match5to6);
  3448. addParseToken(['H', 'HH'], HOUR);
  3449. addParseToken(['k', 'kk'], function (input, array, config) {
  3450. var kInput = toInt(input);
  3451. array[HOUR] = kInput === 24 ? 0 : kInput;
  3452. });
  3453. addParseToken(['a', 'A'], function (input, array, config) {
  3454. config._isPm = config._locale.isPM(input);
  3455. config._meridiem = input;
  3456. });
  3457. addParseToken(['h', 'hh'], function (input, array, config) {
  3458. array[HOUR] = toInt(input);
  3459. getParsingFlags(config).bigHour = true;
  3460. });
  3461. addParseToken('hmm', function (input, array, config) {
  3462. var pos = input.length - 2;
  3463. array[HOUR] = toInt(input.substr(0, pos));
  3464. array[MINUTE] = toInt(input.substr(pos));
  3465. getParsingFlags(config).bigHour = true;
  3466. });
  3467. addParseToken('hmmss', function (input, array, config) {
  3468. var pos1 = input.length - 4;
  3469. var pos2 = input.length - 2;
  3470. array[HOUR] = toInt(input.substr(0, pos1));
  3471. array[MINUTE] = toInt(input.substr(pos1, 2));
  3472. array[SECOND] = toInt(input.substr(pos2));
  3473. getParsingFlags(config).bigHour = true;
  3474. });
  3475. addParseToken('Hmm', function (input, array, config) {
  3476. var pos = input.length - 2;
  3477. array[HOUR] = toInt(input.substr(0, pos));
  3478. array[MINUTE] = toInt(input.substr(pos));
  3479. });
  3480. addParseToken('Hmmss', function (input, array, config) {
  3481. var pos1 = input.length - 4;
  3482. var pos2 = input.length - 2;
  3483. array[HOUR] = toInt(input.substr(0, pos1));
  3484. array[MINUTE] = toInt(input.substr(pos1, 2));
  3485. array[SECOND] = toInt(input.substr(pos2));
  3486. });
  3487. // LOCALES
  3488. function localeIsPM (input) {
  3489. // IE8 Quirks Mode & IE7 Standards Mode do not allow accessing strings like arrays
  3490. // Using charAt should be more compatible.
  3491. return ((input + '').toLowerCase().charAt(0) === 'p');
  3492. }
  3493. var defaultLocaleMeridiemParse = /[ap]\.?m?\.?/i;
  3494. function localeMeridiem (hours, minutes, isLower) {
  3495. if (hours > 11) {
  3496. return isLower ? 'pm' : 'PM';
  3497. } else {
  3498. return isLower ? 'am' : 'AM';
  3499. }
  3500. }
  3501. // MOMENTS
  3502. // Setting the hour should keep the time, because the user explicitly
  3503. // specified which hour he wants. So trying to maintain the same hour (in
  3504. // a new timezone) makes sense. Adding/subtracting hours does not follow
  3505. // this rule.
  3506. var getSetHour = makeGetSet('Hours', true);
  3507. // months
  3508. // week
  3509. // weekdays
  3510. // meridiem
  3511. var baseConfig = {
  3512. calendar: defaultCalendar,
  3513. longDateFormat: defaultLongDateFormat,
  3514. invalidDate: defaultInvalidDate,
  3515. ordinal: defaultOrdinal,
  3516. dayOfMonthOrdinalParse: defaultDayOfMonthOrdinalParse,
  3517. relativeTime: defaultRelativeTime,
  3518. months: defaultLocaleMonths,
  3519. monthsShort: defaultLocaleMonthsShort,
  3520. week: defaultLocaleWeek,
  3521. weekdays: defaultLocaleWeekdays,
  3522. weekdaysMin: defaultLocaleWeekdaysMin,
  3523. weekdaysShort: defaultLocaleWeekdaysShort,
  3524. meridiemParse: defaultLocaleMeridiemParse
  3525. };
  3526. // internal storage for locale config files
  3527. var locales = {};
  3528. var localeFamilies = {};
  3529. var globalLocale;
  3530. function normalizeLocale(key) {
  3531. return key ? key.toLowerCase().replace('_', '-') : key;
  3532. }
  3533. // pick the locale from the array
  3534. // try ['en-au', 'en-gb'] as 'en-au', 'en-gb', 'en', as in move through the list trying each
  3535. // substring from most specific to least, but move to the next array item if it's a more specific variant than the current root
  3536. function chooseLocale(names) {
  3537. var i = 0, j, next, locale, split;
  3538. while (i < names.length) {
  3539. split = normalizeLocale(names[i]).split('-');
  3540. j = split.length;
  3541. next = normalizeLocale(names[i + 1]);
  3542. next = next ? next.split('-') : null;
  3543. while (j > 0) {
  3544. locale = loadLocale(split.slice(0, j).join('-'));
  3545. if (locale) {
  3546. return locale;
  3547. }
  3548. if (next && next.length >= j && compareArrays(split, next, true) >= j - 1) {
  3549. //the next array item is better than a shallower substring of this one
  3550. break;
  3551. }
  3552. j--;
  3553. }
  3554. i++;
  3555. }
  3556. return null;
  3557. }
  3558. function loadLocale(name) {
  3559. var oldLocale = null;
  3560. // TODO: Find a better way to register and load all the locales in Node
  3561. if (!locales[name] && (typeof module !== 'undefined') &&
  3562. module && module.exports) {
  3563. try {
  3564. oldLocale = globalLocale._abbr;
  3565. require('./locale/' + name);
  3566. // because defineLocale currently also sets the global locale, we
  3567. // want to undo that for lazy loaded locales
  3568. getSetGlobalLocale(oldLocale);
  3569. } catch (e) { }
  3570. }
  3571. return locales[name];
  3572. }
  3573. // This function will load locale and then set the global locale. If
  3574. // no arguments are passed in, it will simply return the current global
  3575. // locale key.
  3576. function getSetGlobalLocale (key, values) {
  3577. var data;
  3578. if (key) {
  3579. if (isUndefined(values)) {
  3580. data = getLocale(key);
  3581. }
  3582. else {
  3583. data = defineLocale(key, values);
  3584. }
  3585. if (data) {
  3586. // moment.duration._locale = moment._locale = data;
  3587. globalLocale = data;
  3588. }
  3589. }
  3590. return globalLocale._abbr;
  3591. }
  3592. function defineLocale (name, config) {
  3593. if (config !== null) {
  3594. var parentConfig = baseConfig;
  3595. config.abbr = name;
  3596. if (locales[name] != null) {
  3597. deprecateSimple('defineLocaleOverride',
  3598. 'use moment.updateLocale(localeName, config) to change ' +
  3599. 'an existing locale. moment.defineLocale(localeName, ' +
  3600. 'config) should only be used for creating a new locale ' +
  3601. 'See http://momentjs.com/guides/#/warnings/define-locale/ for more info.');
  3602. parentConfig = locales[name]._config;
  3603. } else if (config.parentLocale != null) {
  3604. if (locales[config.parentLocale] != null) {
  3605. parentConfig = locales[config.parentLocale]._config;
  3606. } else {
  3607. if (!localeFamilies[config.parentLocale]) {
  3608. localeFamilies[config.parentLocale] = [];
  3609. }
  3610. localeFamilies[config.parentLocale].push({
  3611. name: name,
  3612. config: config
  3613. });
  3614. return null;
  3615. }
  3616. }
  3617. locales[name] = new Locale(mergeConfigs(parentConfig, config));
  3618. if (localeFamilies[name]) {
  3619. localeFamilies[name].forEach(function (x) {
  3620. defineLocale(x.name, x.config);
  3621. });
  3622. }
  3623. // backwards compat for now: also set the locale
  3624. // make sure we set the locale AFTER all child locales have been
  3625. // created, so we won't end up with the child locale set.
  3626. getSetGlobalLocale(name);
  3627. return locales[name];
  3628. } else {
  3629. // useful for testing
  3630. delete locales[name];
  3631. return null;
  3632. }
  3633. }
  3634. function updateLocale(name, config) {
  3635. if (config != null) {
  3636. var locale, parentConfig = baseConfig;
  3637. // MERGE
  3638. if (locales[name] != null) {
  3639. parentConfig = locales[name]._config;
  3640. }
  3641. config = mergeConfigs(parentConfig, config);
  3642. locale = new Locale(config);
  3643. locale.parentLocale = locales[name];
  3644. locales[name] = locale;
  3645. // backwards compat for now: also set the locale
  3646. getSetGlobalLocale(name);
  3647. } else {
  3648. // pass null for config to unupdate, useful for tests
  3649. if (locales[name] != null) {
  3650. if (locales[name].parentLocale != null) {
  3651. locales[name] = locales[name].parentLocale;
  3652. } else if (locales[name] != null) {
  3653. delete locales[name];
  3654. }
  3655. }
  3656. }
  3657. return locales[name];
  3658. }
  3659. // returns locale data
  3660. function getLocale (key) {
  3661. var locale;
  3662. if (key && key._locale && key._locale._abbr) {
  3663. key = key._locale._abbr;
  3664. }
  3665. if (!key) {
  3666. return globalLocale;
  3667. }
  3668. if (!isArray(key)) {
  3669. //short-circuit everything else
  3670. locale = loadLocale(key);
  3671. if (locale) {
  3672. return locale;
  3673. }
  3674. key = [key];
  3675. }
  3676. return chooseLocale(key);
  3677. }
  3678. function listLocales() {
  3679. return keys$1(locales);
  3680. }
  3681. function checkOverflow (m) {
  3682. var overflow;
  3683. var a = m._a;
  3684. if (a && getParsingFlags(m).overflow === -2) {
  3685. overflow =
  3686. a[MONTH] < 0 || a[MONTH] > 11 ? MONTH :
  3687. a[DATE] < 1 || a[DATE] > daysInMonth(a[YEAR], a[MONTH]) ? DATE :
  3688. a[HOUR] < 0 || a[HOUR] > 24 || (a[HOUR] === 24 && (a[MINUTE] !== 0 || a[SECOND] !== 0 || a[MILLISECOND] !== 0)) ? HOUR :
  3689. a[MINUTE] < 0 || a[MINUTE] > 59 ? MINUTE :
  3690. a[SECOND] < 0 || a[SECOND] > 59 ? SECOND :
  3691. a[MILLISECOND] < 0 || a[MILLISECOND] > 999 ? MILLISECOND :
  3692. -1;
  3693. if (getParsingFlags(m)._overflowDayOfYear && (overflow < YEAR || overflow > DATE)) {
  3694. overflow = DATE;
  3695. }
  3696. if (getParsingFlags(m)._overflowWeeks && overflow === -1) {
  3697. overflow = WEEK;
  3698. }
  3699. if (getParsingFlags(m)._overflowWeekday && overflow === -1) {
  3700. overflow = WEEKDAY;
  3701. }
  3702. getParsingFlags(m).overflow = overflow;
  3703. }
  3704. return m;
  3705. }
  3706. // iso 8601 regex
  3707. // 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)
  3708. 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)?)?$/;
  3709. 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)?)?$/;
  3710. var tzRegex = /Z|[+-]\d\d(?::?\d\d)?/;
  3711. var isoDates = [
  3712. ['YYYYYY-MM-DD', /[+-]\d{6}-\d\d-\d\d/],
  3713. ['YYYY-MM-DD', /\d{4}-\d\d-\d\d/],
  3714. ['GGGG-[W]WW-E', /\d{4}-W\d\d-\d/],
  3715. ['GGGG-[W]WW', /\d{4}-W\d\d/, false],
  3716. ['YYYY-DDD', /\d{4}-\d{3}/],
  3717. ['YYYY-MM', /\d{4}-\d\d/, false],
  3718. ['YYYYYYMMDD', /[+-]\d{10}/],
  3719. ['YYYYMMDD', /\d{8}/],
  3720. // YYYYMM is NOT allowed by the standard
  3721. ['GGGG[W]WWE', /\d{4}W\d{3}/],
  3722. ['GGGG[W]WW', /\d{4}W\d{2}/, false],
  3723. ['YYYYDDD', /\d{7}/]
  3724. ];
  3725. // iso time formats and regexes
  3726. var isoTimes = [
  3727. ['HH:mm:ss.SSSS', /\d\d:\d\d:\d\d\.\d+/],
  3728. ['HH:mm:ss,SSSS', /\d\d:\d\d:\d\d,\d+/],
  3729. ['HH:mm:ss', /\d\d:\d\d:\d\d/],
  3730. ['HH:mm', /\d\d:\d\d/],
  3731. ['HHmmss.SSSS', /\d\d\d\d\d\d\.\d+/],
  3732. ['HHmmss,SSSS', /\d\d\d\d\d\d,\d+/],
  3733. ['HHmmss', /\d\d\d\d\d\d/],
  3734. ['HHmm', /\d\d\d\d/],
  3735. ['HH', /\d\d/]
  3736. ];
  3737. var aspNetJsonRegex = /^\/?Date\((\-?\d+)/i;
  3738. // date from iso format
  3739. function configFromISO(config) {
  3740. var i, l,
  3741. string = config._i,
  3742. match = extendedIsoRegex.exec(string) || basicIsoRegex.exec(string),
  3743. allowTime, dateFormat, timeFormat, tzFormat;
  3744. if (match) {
  3745. getParsingFlags(config).iso = true;
  3746. for (i = 0, l = isoDates.length; i < l; i++) {
  3747. if (isoDates[i][1].exec(match[1])) {
  3748. dateFormat = isoDates[i][0];
  3749. allowTime = isoDates[i][2] !== false;
  3750. break;
  3751. }
  3752. }
  3753. if (dateFormat == null) {
  3754. config._isValid = false;
  3755. return;
  3756. }
  3757. if (match[3]) {
  3758. for (i = 0, l = isoTimes.length; i < l; i++) {
  3759. if (isoTimes[i][1].exec(match[3])) {
  3760. // match[2] should be 'T' or space
  3761. timeFormat = (match[2] || ' ') + isoTimes[i][0];
  3762. break;
  3763. }
  3764. }
  3765. if (timeFormat == null) {
  3766. config._isValid = false;
  3767. return;
  3768. }
  3769. }
  3770. if (!allowTime && timeFormat != null) {
  3771. config._isValid = false;
  3772. return;
  3773. }
  3774. if (match[4]) {
  3775. if (tzRegex.exec(match[4])) {
  3776. tzFormat = 'Z';
  3777. } else {
  3778. config._isValid = false;
  3779. return;
  3780. }
  3781. }
  3782. config._f = dateFormat + (timeFormat || '') + (tzFormat || '');
  3783. configFromStringAndFormat(config);
  3784. } else {
  3785. config._isValid = false;
  3786. }
  3787. }
  3788. // RFC 2822 regex: For details see https://tools.ietf.org/html/rfc2822#section-3.3
  3789. var basicRfcRegex = /^((?:Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d?\d\s(?:Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(?:\d\d)?\d\d\s)(\d\d:\d\d)(\:\d\d)?(\s(?:UT|GMT|[ECMP][SD]T|[A-IK-Za-ik-z]|[+-]\d{4}))$/;
  3790. // date and time from ref 2822 format
  3791. function configFromRFC2822(config) {
  3792. var string, match, dayFormat,
  3793. dateFormat, timeFormat, tzFormat;
  3794. var timezones = {
  3795. ' GMT': ' +0000',
  3796. ' EDT': ' -0400',
  3797. ' EST': ' -0500',
  3798. ' CDT': ' -0500',
  3799. ' CST': ' -0600',
  3800. ' MDT': ' -0600',
  3801. ' MST': ' -0700',
  3802. ' PDT': ' -0700',
  3803. ' PST': ' -0800'
  3804. };
  3805. var military = 'YXWVUTSRQPONZABCDEFGHIKLM';
  3806. var timezone, timezoneIndex;
  3807. string = config._i
  3808. .replace(/\([^\)]*\)|[\n\t]/g, ' ') // Remove comments and folding whitespace
  3809. .replace(/(\s\s+)/g, ' ') // Replace multiple-spaces with a single space
  3810. .replace(/^\s|\s$/g, ''); // Remove leading and trailing spaces
  3811. match = basicRfcRegex.exec(string);
  3812. if (match) {
  3813. dayFormat = match[1] ? 'ddd' + ((match[1].length === 5) ? ', ' : ' ') : '';
  3814. dateFormat = 'D MMM ' + ((match[2].length > 10) ? 'YYYY ' : 'YY ');
  3815. timeFormat = 'HH:mm' + (match[4] ? ':ss' : '');
  3816. // TODO: Replace the vanilla JS Date object with an indepentent day-of-week check.
  3817. if (match[1]) { // day of week given
  3818. var momentDate = new Date(match[2]);
  3819. var momentDay = ['Sun','Mon','Tue','Wed','Thu','Fri','Sat'][momentDate.getDay()];
  3820. if (match[1].substr(0,3) !== momentDay) {
  3821. getParsingFlags(config).weekdayMismatch = true;
  3822. config._isValid = false;
  3823. return;
  3824. }
  3825. }
  3826. switch (match[5].length) {
  3827. case 2: // military
  3828. if (timezoneIndex === 0) {
  3829. timezone = ' +0000';
  3830. } else {
  3831. timezoneIndex = military.indexOf(match[5][1].toUpperCase()) - 12;
  3832. timezone = ((timezoneIndex < 0) ? ' -' : ' +') +
  3833. (('' + timezoneIndex).replace(/^-?/, '0')).match(/..$/)[0] + '00';
  3834. }
  3835. break;
  3836. case 4: // Zone
  3837. timezone = timezones[match[5]];
  3838. break;
  3839. default: // UT or +/-9999
  3840. timezone = timezones[' GMT'];
  3841. }
  3842. match[5] = timezone;
  3843. config._i = match.splice(1).join('');
  3844. tzFormat = ' ZZ';
  3845. config._f = dayFormat + dateFormat + timeFormat + tzFormat;
  3846. configFromStringAndFormat(config);
  3847. getParsingFlags(config).rfc2822 = true;
  3848. } else {
  3849. config._isValid = false;
  3850. }
  3851. }
  3852. // date from iso format or fallback
  3853. function configFromString(config) {
  3854. var matched = aspNetJsonRegex.exec(config._i);
  3855. if (matched !== null) {
  3856. config._d = new Date(+matched[1]);
  3857. return;
  3858. }
  3859. configFromISO(config);
  3860. if (config._isValid === false) {
  3861. delete config._isValid;
  3862. } else {
  3863. return;
  3864. }
  3865. configFromRFC2822(config);
  3866. if (config._isValid === false) {
  3867. delete config._isValid;
  3868. } else {
  3869. return;
  3870. }
  3871. // Final attempt, use Input Fallback
  3872. hooks.createFromInputFallback(config);
  3873. }
  3874. hooks.createFromInputFallback = deprecate(
  3875. 'value provided is not in a recognized RFC2822 or ISO format. moment construction falls back to js Date(), ' +
  3876. 'which is not reliable across all browsers and versions. Non RFC2822/ISO date formats are ' +
  3877. 'discouraged and will be removed in an upcoming major release. Please refer to ' +
  3878. 'http://momentjs.com/guides/#/warnings/js-date/ for more info.',
  3879. function (config) {
  3880. config._d = new Date(config._i + (config._useUTC ? ' UTC' : ''));
  3881. }
  3882. );
  3883. // Pick the first defined of two or three arguments.
  3884. function defaults(a, b, c) {
  3885. if (a != null) {
  3886. return a;
  3887. }
  3888. if (b != null) {
  3889. return b;
  3890. }
  3891. return c;
  3892. }
  3893. function currentDateArray(config) {
  3894. // hooks is actually the exported moment object
  3895. var nowValue = new Date(hooks.now());
  3896. if (config._useUTC) {
  3897. return [nowValue.getUTCFullYear(), nowValue.getUTCMonth(), nowValue.getUTCDate()];
  3898. }
  3899. return [nowValue.getFullYear(), nowValue.getMonth(), nowValue.getDate()];
  3900. }
  3901. // convert an array to a date.
  3902. // the array should mirror the parameters below
  3903. // note: all values past the year are optional and will default to the lowest possible value.
  3904. // [year, month, day , hour, minute, second, millisecond]
  3905. function configFromArray (config) {
  3906. var i, date, input = [], currentDate, yearToUse;
  3907. if (config._d) {
  3908. return;
  3909. }
  3910. currentDate = currentDateArray(config);
  3911. //compute day of the year from weeks and weekdays
  3912. if (config._w && config._a[DATE] == null && config._a[MONTH] == null) {
  3913. dayOfYearFromWeekInfo(config);
  3914. }
  3915. //if the day of the year is set, figure out what it is
  3916. if (config._dayOfYear != null) {
  3917. yearToUse = defaults(config._a[YEAR], currentDate[YEAR]);
  3918. if (config._dayOfYear > daysInYear(yearToUse) || config._dayOfYear === 0) {
  3919. getParsingFlags(config)._overflowDayOfYear = true;
  3920. }
  3921. date = createUTCDate(yearToUse, 0, config._dayOfYear);
  3922. config._a[MONTH] = date.getUTCMonth();
  3923. config._a[DATE] = date.getUTCDate();
  3924. }
  3925. // Default to current date.
  3926. // * if no year, month, day of month are given, default to today
  3927. // * if day of month is given, default month and year
  3928. // * if month is given, default only year
  3929. // * if year is given, don't default anything
  3930. for (i = 0; i < 3 && config._a[i] == null; ++i) {
  3931. config._a[i] = input[i] = currentDate[i];
  3932. }
  3933. // Zero out whatever was not defaulted, including time
  3934. for (; i < 7; i++) {
  3935. config._a[i] = input[i] = (config._a[i] == null) ? (i === 2 ? 1 : 0) : config._a[i];
  3936. }
  3937. // Check for 24:00:00.000
  3938. if (config._a[HOUR] === 24 &&
  3939. config._a[MINUTE] === 0 &&
  3940. config._a[SECOND] === 0 &&
  3941. config._a[MILLISECOND] === 0) {
  3942. config._nextDay = true;
  3943. config._a[HOUR] = 0;
  3944. }
  3945. config._d = (config._useUTC ? createUTCDate : createDate).apply(null, input);
  3946. // Apply timezone offset from input. The actual utcOffset can be changed
  3947. // with parseZone.
  3948. if (config._tzm != null) {
  3949. config._d.setUTCMinutes(config._d.getUTCMinutes() - config._tzm);
  3950. }
  3951. if (config._nextDay) {
  3952. config._a[HOUR] = 24;
  3953. }
  3954. }
  3955. function dayOfYearFromWeekInfo(config) {
  3956. var w, weekYear, week, weekday, dow, doy, temp, weekdayOverflow;
  3957. w = config._w;
  3958. if (w.GG != null || w.W != null || w.E != null) {
  3959. dow = 1;
  3960. doy = 4;
  3961. // TODO: We need to take the current isoWeekYear, but that depends on
  3962. // how we interpret now (local, utc, fixed offset). So create
  3963. // a now version of current config (take local/utc/offset flags, and
  3964. // create now).
  3965. weekYear = defaults(w.GG, config._a[YEAR], weekOfYear(createLocal(), 1, 4).year);
  3966. week = defaults(w.W, 1);
  3967. weekday = defaults(w.E, 1);
  3968. if (weekday < 1 || weekday > 7) {
  3969. weekdayOverflow = true;
  3970. }
  3971. } else {
  3972. dow = config._locale._week.dow;
  3973. doy = config._locale._week.doy;
  3974. var curWeek = weekOfYear(createLocal(), dow, doy);
  3975. weekYear = defaults(w.gg, config._a[YEAR], curWeek.year);
  3976. // Default to current week.
  3977. week = defaults(w.w, curWeek.week);
  3978. if (w.d != null) {
  3979. // weekday -- low day numbers are considered next week
  3980. weekday = w.d;
  3981. if (weekday < 0 || weekday > 6) {
  3982. weekdayOverflow = true;
  3983. }
  3984. } else if (w.e != null) {
  3985. // local weekday -- counting starts from begining of week
  3986. weekday = w.e + dow;
  3987. if (w.e < 0 || w.e > 6) {
  3988. weekdayOverflow = true;
  3989. }
  3990. } else {
  3991. // default to begining of week
  3992. weekday = dow;
  3993. }
  3994. }
  3995. if (week < 1 || week > weeksInYear(weekYear, dow, doy)) {
  3996. getParsingFlags(config)._overflowWeeks = true;
  3997. } else if (weekdayOverflow != null) {
  3998. getParsingFlags(config)._overflowWeekday = true;
  3999. } else {
  4000. temp = dayOfYearFromWeeks(weekYear, week, weekday, dow, doy);
  4001. config._a[YEAR] = temp.year;
  4002. config._dayOfYear = temp.dayOfYear;
  4003. }
  4004. }
  4005. // constant that refers to the ISO standard
  4006. hooks.ISO_8601 = function () {};
  4007. // constant that refers to the RFC 2822 form
  4008. hooks.RFC_2822 = function () {};
  4009. // date from string and format string
  4010. function configFromStringAndFormat(config) {
  4011. // TODO: Move this to another part of the creation flow to prevent circular deps
  4012. if (config._f === hooks.ISO_8601) {
  4013. configFromISO(config);
  4014. return;
  4015. }
  4016. if (config._f === hooks.RFC_2822) {
  4017. configFromRFC2822(config);
  4018. return;
  4019. }
  4020. config._a = [];
  4021. getParsingFlags(config).empty = true;
  4022. // This array is used to make a Date, either with `new Date` or `Date.UTC`
  4023. var string = '' + config._i,
  4024. i, parsedInput, tokens, token, skipped,
  4025. stringLength = string.length,
  4026. totalParsedInputLength = 0;
  4027. tokens = expandFormat(config._f, config._locale).match(formattingTokens) || [];
  4028. for (i = 0; i < tokens.length; i++) {
  4029. token = tokens[i];
  4030. parsedInput = (string.match(getParseRegexForToken(token, config)) || [])[0];
  4031. // console.log('token', token, 'parsedInput', parsedInput,
  4032. // 'regex', getParseRegexForToken(token, config));
  4033. if (parsedInput) {
  4034. skipped = string.substr(0, string.indexOf(parsedInput));
  4035. if (skipped.length > 0) {
  4036. getParsingFlags(config).unusedInput.push(skipped);
  4037. }
  4038. string = string.slice(string.indexOf(parsedInput) + parsedInput.length);
  4039. totalParsedInputLength += parsedInput.length;
  4040. }
  4041. // don't parse if it's not a known token
  4042. if (formatTokenFunctions[token]) {
  4043. if (parsedInput) {
  4044. getParsingFlags(config).empty = false;
  4045. }
  4046. else {
  4047. getParsingFlags(config).unusedTokens.push(token);
  4048. }
  4049. addTimeToArrayFromToken(token, parsedInput, config);
  4050. }
  4051. else if (config._strict && !parsedInput) {
  4052. getParsingFlags(config).unusedTokens.push(token);
  4053. }
  4054. }
  4055. // add remaining unparsed input length to the string
  4056. getParsingFlags(config).charsLeftOver = stringLength - totalParsedInputLength;
  4057. if (string.length > 0) {
  4058. getParsingFlags(config).unusedInput.push(string);
  4059. }
  4060. // clear _12h flag if hour is <= 12
  4061. if (config._a[HOUR] <= 12 &&
  4062. getParsingFlags(config).bigHour === true &&
  4063. config._a[HOUR] > 0) {
  4064. getParsingFlags(config).bigHour = undefined;
  4065. }
  4066. getParsingFlags(config).parsedDateParts = config._a.slice(0);
  4067. getParsingFlags(config).meridiem = config._meridiem;
  4068. // handle meridiem
  4069. config._a[HOUR] = meridiemFixWrap(config._locale, config._a[HOUR], config._meridiem);
  4070. configFromArray(config);
  4071. checkOverflow(config);
  4072. }
  4073. function meridiemFixWrap (locale, hour, meridiem) {
  4074. var isPm;
  4075. if (meridiem == null) {
  4076. // nothing to do
  4077. return hour;
  4078. }
  4079. if (locale.meridiemHour != null) {
  4080. return locale.meridiemHour(hour, meridiem);
  4081. } else if (locale.isPM != null) {
  4082. // Fallback
  4083. isPm = locale.isPM(meridiem);
  4084. if (isPm && hour < 12) {
  4085. hour += 12;
  4086. }
  4087. if (!isPm && hour === 12) {
  4088. hour = 0;
  4089. }
  4090. return hour;
  4091. } else {
  4092. // this is not supposed to happen
  4093. return hour;
  4094. }
  4095. }
  4096. // date from string and array of format strings
  4097. function configFromStringAndArray(config) {
  4098. var tempConfig,
  4099. bestMoment,
  4100. scoreToBeat,
  4101. i,
  4102. currentScore;
  4103. if (config._f.length === 0) {
  4104. getParsingFlags(config).invalidFormat = true;
  4105. config._d = new Date(NaN);
  4106. return;
  4107. }
  4108. for (i = 0; i < config._f.length; i++) {
  4109. currentScore = 0;
  4110. tempConfig = copyConfig({}, config);
  4111. if (config._useUTC != null) {
  4112. tempConfig._useUTC = config._useUTC;
  4113. }
  4114. tempConfig._f = config._f[i];
  4115. configFromStringAndFormat(tempConfig);
  4116. if (!isValid(tempConfig)) {
  4117. continue;
  4118. }
  4119. // if there is any input that was not parsed add a penalty for that format
  4120. currentScore += getParsingFlags(tempConfig).charsLeftOver;
  4121. //or tokens
  4122. currentScore += getParsingFlags(tempConfig).unusedTokens.length * 10;
  4123. getParsingFlags(tempConfig).score = currentScore;
  4124. if (scoreToBeat == null || currentScore < scoreToBeat) {
  4125. scoreToBeat = currentScore;
  4126. bestMoment = tempConfig;
  4127. }
  4128. }
  4129. extend(config, bestMoment || tempConfig);
  4130. }
  4131. function configFromObject(config) {
  4132. if (config._d) {
  4133. return;
  4134. }
  4135. var i = normalizeObjectUnits(config._i);
  4136. config._a = map([i.year, i.month, i.day || i.date, i.hour, i.minute, i.second, i.millisecond], function (obj) {
  4137. return obj && parseInt(obj, 10);
  4138. });
  4139. configFromArray(config);
  4140. }
  4141. function createFromConfig (config) {
  4142. var res = new Moment(checkOverflow(prepareConfig(config)));
  4143. if (res._nextDay) {
  4144. // Adding is smart enough around DST
  4145. res.add(1, 'd');
  4146. res._nextDay = undefined;
  4147. }
  4148. return res;
  4149. }
  4150. function prepareConfig (config) {
  4151. var input = config._i,
  4152. format = config._f;
  4153. config._locale = config._locale || getLocale(config._l);
  4154. if (input === null || (format === undefined && input === '')) {
  4155. return createInvalid({nullInput: true});
  4156. }
  4157. if (typeof input === 'string') {
  4158. config._i = input = config._locale.preparse(input);
  4159. }
  4160. if (isMoment(input)) {
  4161. return new Moment(checkOverflow(input));
  4162. } else if (isDate(input)) {
  4163. config._d = input;
  4164. } else if (isArray(format)) {
  4165. configFromStringAndArray(config);
  4166. } else if (format) {
  4167. configFromStringAndFormat(config);
  4168. } else {
  4169. configFromInput(config);
  4170. }
  4171. if (!isValid(config)) {
  4172. config._d = null;
  4173. }
  4174. return config;
  4175. }
  4176. function configFromInput(config) {
  4177. var input = config._i;
  4178. if (isUndefined(input)) {
  4179. config._d = new Date(hooks.now());
  4180. } else if (isDate(input)) {
  4181. config._d = new Date(input.valueOf());
  4182. } else if (typeof input === 'string') {
  4183. configFromString(config);
  4184. } else if (isArray(input)) {
  4185. config._a = map(input.slice(0), function (obj) {
  4186. return parseInt(obj, 10);
  4187. });
  4188. configFromArray(config);
  4189. } else if (isObject(input)) {
  4190. configFromObject(config);
  4191. } else if (isNumber(input)) {
  4192. // from milliseconds
  4193. config._d = new Date(input);
  4194. } else {
  4195. hooks.createFromInputFallback(config);
  4196. }
  4197. }
  4198. function createLocalOrUTC (input, format, locale, strict, isUTC) {
  4199. var c = {};
  4200. if (locale === true || locale === false) {
  4201. strict = locale;
  4202. locale = undefined;
  4203. }
  4204. if ((isObject(input) && isObjectEmpty(input)) ||
  4205. (isArray(input) && input.length === 0)) {
  4206. input = undefined;
  4207. }
  4208. // object construction must be done this way.
  4209. // https://github.com/moment/moment/issues/1423
  4210. c._isAMomentObject = true;
  4211. c._useUTC = c._isUTC = isUTC;
  4212. c._l = locale;
  4213. c._i = input;
  4214. c._f = format;
  4215. c._strict = strict;
  4216. return createFromConfig(c);
  4217. }
  4218. function createLocal (input, format, locale, strict) {
  4219. return createLocalOrUTC(input, format, locale, strict, false);
  4220. }
  4221. var prototypeMin = deprecate(
  4222. 'moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/',
  4223. function () {
  4224. var other = createLocal.apply(null, arguments);
  4225. if (this.isValid() && other.isValid()) {
  4226. return other < this ? this : other;
  4227. } else {
  4228. return createInvalid();
  4229. }
  4230. }
  4231. );
  4232. var prototypeMax = deprecate(
  4233. 'moment().max is deprecated, use moment.min instead. http://momentjs.com/guides/#/warnings/min-max/',
  4234. function () {
  4235. var other = createLocal.apply(null, arguments);
  4236. if (this.isValid() && other.isValid()) {
  4237. return other > this ? this : other;
  4238. } else {
  4239. return createInvalid();
  4240. }
  4241. }
  4242. );
  4243. // Pick a moment m from moments so that m[fn](other) is true for all
  4244. // other. This relies on the function fn to be transitive.
  4245. //
  4246. // moments should either be an array of moment objects or an array, whose
  4247. // first element is an array of moment objects.
  4248. function pickBy(fn, moments) {
  4249. var res, i;
  4250. if (moments.length === 1 && isArray(moments[0])) {
  4251. moments = moments[0];
  4252. }
  4253. if (!moments.length) {
  4254. return createLocal();
  4255. }
  4256. res = moments[0];
  4257. for (i = 1; i < moments.length; ++i) {
  4258. if (!moments[i].isValid() || moments[i][fn](res)) {
  4259. res = moments[i];
  4260. }
  4261. }
  4262. return res;
  4263. }
  4264. // TODO: Use [].sort instead?
  4265. function min () {
  4266. var args = [].slice.call(arguments, 0);
  4267. return pickBy('isBefore', args);
  4268. }
  4269. function max () {
  4270. var args = [].slice.call(arguments, 0);
  4271. return pickBy('isAfter', args);
  4272. }
  4273. var now = function () {
  4274. return Date.now ? Date.now() : +(new Date());
  4275. };
  4276. var ordering = ['year', 'quarter', 'month', 'week', 'day', 'hour', 'minute', 'second', 'millisecond'];
  4277. function isDurationValid(m) {
  4278. for (var key in m) {
  4279. if (!(ordering.indexOf(key) !== -1 && (m[key] == null || !isNaN(m[key])))) {
  4280. return false;
  4281. }
  4282. }
  4283. var unitHasDecimal = false;
  4284. for (var i = 0; i < ordering.length; ++i) {
  4285. if (m[ordering[i]]) {
  4286. if (unitHasDecimal) {
  4287. return false; // only allow non-integers for smallest unit
  4288. }
  4289. if (parseFloat(m[ordering[i]]) !== toInt(m[ordering[i]])) {
  4290. unitHasDecimal = true;
  4291. }
  4292. }
  4293. }
  4294. return true;
  4295. }
  4296. function isValid$1() {
  4297. return this._isValid;
  4298. }
  4299. function createInvalid$1() {
  4300. return createDuration(NaN);
  4301. }
  4302. function Duration (duration) {
  4303. var normalizedInput = normalizeObjectUnits(duration),
  4304. years = normalizedInput.year || 0,
  4305. quarters = normalizedInput.quarter || 0,
  4306. months = normalizedInput.month || 0,
  4307. weeks = normalizedInput.week || 0,
  4308. days = normalizedInput.day || 0,
  4309. hours = normalizedInput.hour || 0,
  4310. minutes = normalizedInput.minute || 0,
  4311. seconds = normalizedInput.second || 0,
  4312. milliseconds = normalizedInput.millisecond || 0;
  4313. this._isValid = isDurationValid(normalizedInput);
  4314. // representation for dateAddRemove
  4315. this._milliseconds = +milliseconds +
  4316. seconds * 1e3 + // 1000
  4317. minutes * 6e4 + // 1000 * 60
  4318. hours * 1000 * 60 * 60; //using 1000 * 60 * 60 instead of 36e5 to avoid floating point rounding errors https://github.com/moment/moment/issues/2978
  4319. // Because of dateAddRemove treats 24 hours as different from a
  4320. // day when working around DST, we need to store them separately
  4321. this._days = +days +
  4322. weeks * 7;
  4323. // It is impossible translate months into days without knowing
  4324. // which months you are are talking about, so we have to store
  4325. // it separately.
  4326. this._months = +months +
  4327. quarters * 3 +
  4328. years * 12;
  4329. this._data = {};
  4330. this._locale = getLocale();
  4331. this._bubble();
  4332. }
  4333. function isDuration (obj) {
  4334. return obj instanceof Duration;
  4335. }
  4336. function absRound (number) {
  4337. if (number < 0) {
  4338. return Math.round(-1 * number) * -1;
  4339. } else {
  4340. return Math.round(number);
  4341. }
  4342. }
  4343. // FORMATTING
  4344. function offset (token, separator) {
  4345. addFormatToken(token, 0, 0, function () {
  4346. var offset = this.utcOffset();
  4347. var sign = '+';
  4348. if (offset < 0) {
  4349. offset = -offset;
  4350. sign = '-';
  4351. }
  4352. return sign + zeroFill(~~(offset / 60), 2) + separator + zeroFill(~~(offset) % 60, 2);
  4353. });
  4354. }
  4355. offset('Z', ':');
  4356. offset('ZZ', '');
  4357. // PARSING
  4358. addRegexToken('Z', matchShortOffset);
  4359. addRegexToken('ZZ', matchShortOffset);
  4360. addParseToken(['Z', 'ZZ'], function (input, array, config) {
  4361. config._useUTC = true;
  4362. config._tzm = offsetFromString(matchShortOffset, input);
  4363. });
  4364. // HELPERS
  4365. // timezone chunker
  4366. // '+10:00' > ['10', '00']
  4367. // '-1530' > ['-15', '30']
  4368. var chunkOffset = /([\+\-]|\d\d)/gi;
  4369. function offsetFromString(matcher, string) {
  4370. var matches = (string || '').match(matcher);
  4371. if (matches === null) {
  4372. return null;
  4373. }
  4374. var chunk = matches[matches.length - 1] || [];
  4375. var parts = (chunk + '').match(chunkOffset) || ['-', 0, 0];
  4376. var minutes = +(parts[1] * 60) + toInt(parts[2]);
  4377. return minutes === 0 ?
  4378. 0 :
  4379. parts[0] === '+' ? minutes : -minutes;
  4380. }
  4381. // Return a moment from input, that is local/utc/zone equivalent to model.
  4382. function cloneWithOffset(input, model) {
  4383. var res, diff;
  4384. if (model._isUTC) {
  4385. res = model.clone();
  4386. diff = (isMoment(input) || isDate(input) ? input.valueOf() : createLocal(input).valueOf()) - res.valueOf();
  4387. // Use low-level api, because this fn is low-level api.
  4388. res._d.setTime(res._d.valueOf() + diff);
  4389. hooks.updateOffset(res, false);
  4390. return res;
  4391. } else {
  4392. return createLocal(input).local();
  4393. }
  4394. }
  4395. function getDateOffset (m) {
  4396. // On Firefox.24 Date#getTimezoneOffset returns a floating point.
  4397. // https://github.com/moment/moment/pull/1871
  4398. return -Math.round(m._d.getTimezoneOffset() / 15) * 15;
  4399. }
  4400. // HOOKS
  4401. // This function will be called whenever a moment is mutated.
  4402. // It is intended to keep the offset in sync with the timezone.
  4403. hooks.updateOffset = function () {};
  4404. // MOMENTS
  4405. // keepLocalTime = true means only change the timezone, without
  4406. // affecting the local hour. So 5:31:26 +0300 --[utcOffset(2, true)]-->
  4407. // 5:31:26 +0200 It is possible that 5:31:26 doesn't exist with offset
  4408. // +0200, so we adjust the time as needed, to be valid.
  4409. //
  4410. // Keeping the time actually adds/subtracts (one hour)
  4411. // from the actual represented time. That is why we call updateOffset
  4412. // a second time. In case it wants us to change the offset again
  4413. // _changeInProgress == true case, then we have to adjust, because
  4414. // there is no such time in the given timezone.
  4415. function getSetOffset (input, keepLocalTime, keepMinutes) {
  4416. var offset = this._offset || 0,
  4417. localAdjust;
  4418. if (!this.isValid()) {
  4419. return input != null ? this : NaN;
  4420. }
  4421. if (input != null) {
  4422. if (typeof input === 'string') {
  4423. input = offsetFromString(matchShortOffset, input);
  4424. if (input === null) {
  4425. return this;
  4426. }
  4427. } else if (Math.abs(input) < 16 && !keepMinutes) {
  4428. input = input * 60;
  4429. }
  4430. if (!this._isUTC && keepLocalTime) {
  4431. localAdjust = getDateOffset(this);
  4432. }
  4433. this._offset = input;
  4434. this._isUTC = true;
  4435. if (localAdjust != null) {
  4436. this.add(localAdjust, 'm');
  4437. }
  4438. if (offset !== input) {
  4439. if (!keepLocalTime || this._changeInProgress) {
  4440. addSubtract(this, createDuration(input - offset, 'm'), 1, false);
  4441. } else if (!this._changeInProgress) {
  4442. this._changeInProgress = true;
  4443. hooks.updateOffset(this, true);
  4444. this._changeInProgress = null;
  4445. }
  4446. }
  4447. return this;
  4448. } else {
  4449. return this._isUTC ? offset : getDateOffset(this);
  4450. }
  4451. }
  4452. function getSetZone (input, keepLocalTime) {
  4453. if (input != null) {
  4454. if (typeof input !== 'string') {
  4455. input = -input;
  4456. }
  4457. this.utcOffset(input, keepLocalTime);
  4458. return this;
  4459. } else {
  4460. return -this.utcOffset();
  4461. }
  4462. }
  4463. function setOffsetToUTC (keepLocalTime) {
  4464. return this.utcOffset(0, keepLocalTime);
  4465. }
  4466. function setOffsetToLocal (keepLocalTime) {
  4467. if (this._isUTC) {
  4468. this.utcOffset(0, keepLocalTime);
  4469. this._isUTC = false;
  4470. if (keepLocalTime) {
  4471. this.subtract(getDateOffset(this), 'm');
  4472. }
  4473. }
  4474. return this;
  4475. }
  4476. function setOffsetToParsedOffset () {
  4477. if (this._tzm != null) {
  4478. this.utcOffset(this._tzm, false, true);
  4479. } else if (typeof this._i === 'string') {
  4480. var tZone = offsetFromString(matchOffset, this._i);
  4481. if (tZone != null) {
  4482. this.utcOffset(tZone);
  4483. }
  4484. else {
  4485. this.utcOffset(0, true);
  4486. }
  4487. }
  4488. return this;
  4489. }
  4490. function hasAlignedHourOffset (input) {
  4491. if (!this.isValid()) {
  4492. return false;
  4493. }
  4494. input = input ? createLocal(input).utcOffset() : 0;
  4495. return (this.utcOffset() - input) % 60 === 0;
  4496. }
  4497. function isDaylightSavingTime () {
  4498. return (
  4499. this.utcOffset() > this.clone().month(0).utcOffset() ||
  4500. this.utcOffset() > this.clone().month(5).utcOffset()
  4501. );
  4502. }
  4503. function isDaylightSavingTimeShifted () {
  4504. if (!isUndefined(this._isDSTShifted)) {
  4505. return this._isDSTShifted;
  4506. }
  4507. var c = {};
  4508. copyConfig(c, this);
  4509. c = prepareConfig(c);
  4510. if (c._a) {
  4511. var other = c._isUTC ? createUTC(c._a) : createLocal(c._a);
  4512. this._isDSTShifted = this.isValid() &&
  4513. compareArrays(c._a, other.toArray()) > 0;
  4514. } else {
  4515. this._isDSTShifted = false;
  4516. }
  4517. return this._isDSTShifted;
  4518. }
  4519. function isLocal () {
  4520. return this.isValid() ? !this._isUTC : false;
  4521. }
  4522. function isUtcOffset () {
  4523. return this.isValid() ? this._isUTC : false;
  4524. }
  4525. function isUtc () {
  4526. return this.isValid() ? this._isUTC && this._offset === 0 : false;
  4527. }
  4528. // ASP.NET json date format regex
  4529. var aspNetRegex = /^(\-)?(?:(\d*)[. ])?(\d+)\:(\d+)(?:\:(\d+)(\.\d*)?)?$/;
  4530. // from http://docs.closure-library.googlecode.com/git/closure_goog_date_date.js.source.html
  4531. // somewhat more in line with 4.4.3.2 2004 spec, but allows decimal anywhere
  4532. // and further modified to allow for strings containing both week and day
  4533. 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)?)?$/;
  4534. function createDuration (input, key) {
  4535. var duration = input,
  4536. // matching against regexp is expensive, do it on demand
  4537. match = null,
  4538. sign,
  4539. ret,
  4540. diffRes;
  4541. if (isDuration(input)) {
  4542. duration = {
  4543. ms : input._milliseconds,
  4544. d : input._days,
  4545. M : input._months
  4546. };
  4547. } else if (isNumber(input)) {
  4548. duration = {};
  4549. if (key) {
  4550. duration[key] = input;
  4551. } else {
  4552. duration.milliseconds = input;
  4553. }
  4554. } else if (!!(match = aspNetRegex.exec(input))) {
  4555. sign = (match[1] === '-') ? -1 : 1;
  4556. duration = {
  4557. y : 0,
  4558. d : toInt(match[DATE]) * sign,
  4559. h : toInt(match[HOUR]) * sign,
  4560. m : toInt(match[MINUTE]) * sign,
  4561. s : toInt(match[SECOND]) * sign,
  4562. ms : toInt(absRound(match[MILLISECOND] * 1000)) * sign // the millisecond decimal point is included in the match
  4563. };
  4564. } else if (!!(match = isoRegex.exec(input))) {
  4565. sign = (match[1] === '-') ? -1 : 1;
  4566. duration = {
  4567. y : parseIso(match[2], sign),
  4568. M : parseIso(match[3], sign),
  4569. w : parseIso(match[4], sign),
  4570. d : parseIso(match[5], sign),
  4571. h : parseIso(match[6], sign),
  4572. m : parseIso(match[7], sign),
  4573. s : parseIso(match[8], sign)
  4574. };
  4575. } else if (duration == null) {// checks for null or undefined
  4576. duration = {};
  4577. } else if (typeof duration === 'object' && ('from' in duration || 'to' in duration)) {
  4578. diffRes = momentsDifference(createLocal(duration.from), createLocal(duration.to));
  4579. duration = {};
  4580. duration.ms = diffRes.milliseconds;
  4581. duration.M = diffRes.months;
  4582. }
  4583. ret = new Duration(duration);
  4584. if (isDuration(input) && hasOwnProp(input, '_locale')) {
  4585. ret._locale = input._locale;
  4586. }
  4587. return ret;
  4588. }
  4589. createDuration.fn = Duration.prototype;
  4590. createDuration.invalid = createInvalid$1;
  4591. function parseIso (inp, sign) {
  4592. // We'd normally use ~~inp for this, but unfortunately it also
  4593. // converts floats to ints.
  4594. // inp may be undefined, so careful calling replace on it.
  4595. var res = inp && parseFloat(inp.replace(',', '.'));
  4596. // apply sign while we're at it
  4597. return (isNaN(res) ? 0 : res) * sign;
  4598. }
  4599. function positiveMomentsDifference(base, other) {
  4600. var res = {milliseconds: 0, months: 0};
  4601. res.months = other.month() - base.month() +
  4602. (other.year() - base.year()) * 12;
  4603. if (base.clone().add(res.months, 'M').isAfter(other)) {
  4604. --res.months;
  4605. }
  4606. res.milliseconds = +other - +(base.clone().add(res.months, 'M'));
  4607. return res;
  4608. }
  4609. function momentsDifference(base, other) {
  4610. var res;
  4611. if (!(base.isValid() && other.isValid())) {
  4612. return {milliseconds: 0, months: 0};
  4613. }
  4614. other = cloneWithOffset(other, base);
  4615. if (base.isBefore(other)) {
  4616. res = positiveMomentsDifference(base, other);
  4617. } else {
  4618. res = positiveMomentsDifference(other, base);
  4619. res.milliseconds = -res.milliseconds;
  4620. res.months = -res.months;
  4621. }
  4622. return res;
  4623. }
  4624. // TODO: remove 'name' arg after deprecation is removed
  4625. function createAdder(direction, name) {
  4626. return function (val, period) {
  4627. var dur, tmp;
  4628. //invert the arguments, but complain about it
  4629. if (period !== null && !isNaN(+period)) {
  4630. deprecateSimple(name, 'moment().' + name + '(period, number) is deprecated. Please use moment().' + name + '(number, period). ' +
  4631. 'See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info.');
  4632. tmp = val; val = period; period = tmp;
  4633. }
  4634. val = typeof val === 'string' ? +val : val;
  4635. dur = createDuration(val, period);
  4636. addSubtract(this, dur, direction);
  4637. return this;
  4638. };
  4639. }
  4640. function addSubtract (mom, duration, isAdding, updateOffset) {
  4641. var milliseconds = duration._milliseconds,
  4642. days = absRound(duration._days),
  4643. months = absRound(duration._months);
  4644. if (!mom.isValid()) {
  4645. // No op
  4646. return;
  4647. }
  4648. updateOffset = updateOffset == null ? true : updateOffset;
  4649. if (milliseconds) {
  4650. mom._d.setTime(mom._d.valueOf() + milliseconds * isAdding);
  4651. }
  4652. if (days) {
  4653. set$1(mom, 'Date', get(mom, 'Date') + days * isAdding);
  4654. }
  4655. if (months) {
  4656. setMonth(mom, get(mom, 'Month') + months * isAdding);
  4657. }
  4658. if (updateOffset) {
  4659. hooks.updateOffset(mom, days || months);
  4660. }
  4661. }
  4662. var add = createAdder(1, 'add');
  4663. var subtract = createAdder(-1, 'subtract');
  4664. function getCalendarFormat(myMoment, now) {
  4665. var diff = myMoment.diff(now, 'days', true);
  4666. return diff < -6 ? 'sameElse' :
  4667. diff < -1 ? 'lastWeek' :
  4668. diff < 0 ? 'lastDay' :
  4669. diff < 1 ? 'sameDay' :
  4670. diff < 2 ? 'nextDay' :
  4671. diff < 7 ? 'nextWeek' : 'sameElse';
  4672. }
  4673. function calendar$1 (time, formats) {
  4674. // We want to compare the start of today, vs this.
  4675. // Getting start-of-today depends on whether we're local/utc/offset or not.
  4676. var now = time || createLocal(),
  4677. sod = cloneWithOffset(now, this).startOf('day'),
  4678. format = hooks.calendarFormat(this, sod) || 'sameElse';
  4679. var output = formats && (isFunction(formats[format]) ? formats[format].call(this, now) : formats[format]);
  4680. return this.format(output || this.localeData().calendar(format, this, createLocal(now)));
  4681. }
  4682. function clone () {
  4683. return new Moment(this);
  4684. }
  4685. function isAfter (input, units) {
  4686. var localInput = isMoment(input) ? input : createLocal(input);
  4687. if (!(this.isValid() && localInput.isValid())) {
  4688. return false;
  4689. }
  4690. units = normalizeUnits(!isUndefined(units) ? units : 'millisecond');
  4691. if (units === 'millisecond') {
  4692. return this.valueOf() > localInput.valueOf();
  4693. } else {
  4694. return localInput.valueOf() < this.clone().startOf(units).valueOf();
  4695. }
  4696. }
  4697. function isBefore (input, units) {
  4698. var localInput = isMoment(input) ? input : createLocal(input);
  4699. if (!(this.isValid() && localInput.isValid())) {
  4700. return false;
  4701. }
  4702. units = normalizeUnits(!isUndefined(units) ? units : 'millisecond');
  4703. if (units === 'millisecond') {
  4704. return this.valueOf() < localInput.valueOf();
  4705. } else {
  4706. return this.clone().endOf(units).valueOf() < localInput.valueOf();
  4707. }
  4708. }
  4709. function isBetween (from, to, units, inclusivity) {
  4710. inclusivity = inclusivity || '()';
  4711. return (inclusivity[0] === '(' ? this.isAfter(from, units) : !this.isBefore(from, units)) &&
  4712. (inclusivity[1] === ')' ? this.isBefore(to, units) : !this.isAfter(to, units));
  4713. }
  4714. function isSame (input, units) {
  4715. var localInput = isMoment(input) ? input : createLocal(input),
  4716. inputMs;
  4717. if (!(this.isValid() && localInput.isValid())) {
  4718. return false;
  4719. }
  4720. units = normalizeUnits(units || 'millisecond');
  4721. if (units === 'millisecond') {
  4722. return this.valueOf() === localInput.valueOf();
  4723. } else {
  4724. inputMs = localInput.valueOf();
  4725. return this.clone().startOf(units).valueOf() <= inputMs && inputMs <= this.clone().endOf(units).valueOf();
  4726. }
  4727. }
  4728. function isSameOrAfter (input, units) {
  4729. return this.isSame(input, units) || this.isAfter(input,units);
  4730. }
  4731. function isSameOrBefore (input, units) {
  4732. return this.isSame(input, units) || this.isBefore(input,units);
  4733. }
  4734. function diff (input, units, asFloat) {
  4735. var that,
  4736. zoneDelta,
  4737. delta, output;
  4738. if (!this.isValid()) {
  4739. return NaN;
  4740. }
  4741. that = cloneWithOffset(input, this);
  4742. if (!that.isValid()) {
  4743. return NaN;
  4744. }
  4745. zoneDelta = (that.utcOffset() - this.utcOffset()) * 6e4;
  4746. units = normalizeUnits(units);
  4747. if (units === 'year' || units === 'month' || units === 'quarter') {
  4748. output = monthDiff(this, that);
  4749. if (units === 'quarter') {
  4750. output = output / 3;
  4751. } else if (units === 'year') {
  4752. output = output / 12;
  4753. }
  4754. } else {
  4755. delta = this - that;
  4756. output = units === 'second' ? delta / 1e3 : // 1000
  4757. units === 'minute' ? delta / 6e4 : // 1000 * 60
  4758. units === 'hour' ? delta / 36e5 : // 1000 * 60 * 60
  4759. units === 'day' ? (delta - zoneDelta) / 864e5 : // 1000 * 60 * 60 * 24, negate dst
  4760. units === 'week' ? (delta - zoneDelta) / 6048e5 : // 1000 * 60 * 60 * 24 * 7, negate dst
  4761. delta;
  4762. }
  4763. return asFloat ? output : absFloor(output);
  4764. }
  4765. function monthDiff (a, b) {
  4766. // difference in months
  4767. var wholeMonthDiff = ((b.year() - a.year()) * 12) + (b.month() - a.month()),
  4768. // b is in (anchor - 1 month, anchor + 1 month)
  4769. anchor = a.clone().add(wholeMonthDiff, 'months'),
  4770. anchor2, adjust;
  4771. if (b - anchor < 0) {
  4772. anchor2 = a.clone().add(wholeMonthDiff - 1, 'months');
  4773. // linear across the month
  4774. adjust = (b - anchor) / (anchor - anchor2);
  4775. } else {
  4776. anchor2 = a.clone().add(wholeMonthDiff + 1, 'months');
  4777. // linear across the month
  4778. adjust = (b - anchor) / (anchor2 - anchor);
  4779. }
  4780. //check for negative zero, return zero if negative zero
  4781. return -(wholeMonthDiff + adjust) || 0;
  4782. }
  4783. hooks.defaultFormat = 'YYYY-MM-DDTHH:mm:ssZ';
  4784. hooks.defaultFormatUtc = 'YYYY-MM-DDTHH:mm:ss[Z]';
  4785. function toString () {
  4786. return this.clone().locale('en').format('ddd MMM DD YYYY HH:mm:ss [GMT]ZZ');
  4787. }
  4788. function toISOString() {
  4789. if (!this.isValid()) {
  4790. return null;
  4791. }
  4792. var m = this.clone().utc();
  4793. if (m.year() < 0 || m.year() > 9999) {
  4794. return formatMoment(m, 'YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]');
  4795. }
  4796. if (isFunction(Date.prototype.toISOString)) {
  4797. // native implementation is ~50x faster, use it when we can
  4798. return this.toDate().toISOString();
  4799. }
  4800. return formatMoment(m, 'YYYY-MM-DD[T]HH:mm:ss.SSS[Z]');
  4801. }
  4802. /**
  4803. * Return a human readable representation of a moment that can
  4804. * also be evaluated to get a new moment which is the same
  4805. *
  4806. * @link https://nodejs.org/dist/latest/docs/api/util.html#util_custom_inspect_function_on_objects
  4807. */
  4808. function inspect () {
  4809. if (!this.isValid()) {
  4810. return 'moment.invalid(/* ' + this._i + ' */)';
  4811. }
  4812. var func = 'moment';
  4813. var zone = '';
  4814. if (!this.isLocal()) {
  4815. func = this.utcOffset() === 0 ? 'moment.utc' : 'moment.parseZone';
  4816. zone = 'Z';
  4817. }
  4818. var prefix = '[' + func + '("]';
  4819. var year = (0 <= this.year() && this.year() <= 9999) ? 'YYYY' : 'YYYYYY';
  4820. var datetime = '-MM-DD[T]HH:mm:ss.SSS';
  4821. var suffix = zone + '[")]';
  4822. return this.format(prefix + year + datetime + suffix);
  4823. }
  4824. function format (inputString) {
  4825. if (!inputString) {
  4826. inputString = this.isUtc() ? hooks.defaultFormatUtc : hooks.defaultFormat;
  4827. }
  4828. var output = formatMoment(this, inputString);
  4829. return this.localeData().postformat(output);
  4830. }
  4831. function from (time, withoutSuffix) {
  4832. if (this.isValid() &&
  4833. ((isMoment(time) && time.isValid()) ||
  4834. createLocal(time).isValid())) {
  4835. return createDuration({to: this, from: time}).locale(this.locale()).humanize(!withoutSuffix);
  4836. } else {
  4837. return this.localeData().invalidDate();
  4838. }
  4839. }
  4840. function fromNow (withoutSuffix) {
  4841. return this.from(createLocal(), withoutSuffix);
  4842. }
  4843. function to (time, withoutSuffix) {
  4844. if (this.isValid() &&
  4845. ((isMoment(time) && time.isValid()) ||
  4846. createLocal(time).isValid())) {
  4847. return createDuration({from: this, to: time}).locale(this.locale()).humanize(!withoutSuffix);
  4848. } else {
  4849. return this.localeData().invalidDate();
  4850. }
  4851. }
  4852. function toNow (withoutSuffix) {
  4853. return this.to(createLocal(), withoutSuffix);
  4854. }
  4855. // If passed a locale key, it will set the locale for this
  4856. // instance. Otherwise, it will return the locale configuration
  4857. // variables for this instance.
  4858. function locale (key) {
  4859. var newLocaleData;
  4860. if (key === undefined) {
  4861. return this._locale._abbr;
  4862. } else {
  4863. newLocaleData = getLocale(key);
  4864. if (newLocaleData != null) {
  4865. this._locale = newLocaleData;
  4866. }
  4867. return this;
  4868. }
  4869. }
  4870. var lang = deprecate(
  4871. 'moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.',
  4872. function (key) {
  4873. if (key === undefined) {
  4874. return this.localeData();
  4875. } else {
  4876. return this.locale(key);
  4877. }
  4878. }
  4879. );
  4880. function localeData () {
  4881. return this._locale;
  4882. }
  4883. function startOf (units) {
  4884. units = normalizeUnits(units);
  4885. // the following switch intentionally omits break keywords
  4886. // to utilize falling through the cases.
  4887. switch (units) {
  4888. case 'year':
  4889. this.month(0);
  4890. /* falls through */
  4891. case 'quarter':
  4892. case 'month':
  4893. this.date(1);
  4894. /* falls through */
  4895. case 'week':
  4896. case 'isoWeek':
  4897. case 'day':
  4898. case 'date':
  4899. this.hours(0);
  4900. /* falls through */
  4901. case 'hour':
  4902. this.minutes(0);
  4903. /* falls through */
  4904. case 'minute':
  4905. this.seconds(0);
  4906. /* falls through */
  4907. case 'second':
  4908. this.milliseconds(0);
  4909. }
  4910. // weeks are a special case
  4911. if (units === 'week') {
  4912. this.weekday(0);
  4913. }
  4914. if (units === 'isoWeek') {
  4915. this.isoWeekday(1);
  4916. }
  4917. // quarters are also special
  4918. if (units === 'quarter') {
  4919. this.month(Math.floor(this.month() / 3) * 3);
  4920. }
  4921. return this;
  4922. }
  4923. function endOf (units) {
  4924. units = normalizeUnits(units);
  4925. if (units === undefined || units === 'millisecond') {
  4926. return this;
  4927. }
  4928. // 'date' is an alias for 'day', so it should be considered as such.
  4929. if (units === 'date') {
  4930. units = 'day';
  4931. }
  4932. return this.startOf(units).add(1, (units === 'isoWeek' ? 'week' : units)).subtract(1, 'ms');
  4933. }
  4934. function valueOf () {
  4935. return this._d.valueOf() - ((this._offset || 0) * 60000);
  4936. }
  4937. function unix () {
  4938. return Math.floor(this.valueOf() / 1000);
  4939. }
  4940. function toDate () {
  4941. return new Date(this.valueOf());
  4942. }
  4943. function toArray () {
  4944. var m = this;
  4945. return [m.year(), m.month(), m.date(), m.hour(), m.minute(), m.second(), m.millisecond()];
  4946. }
  4947. function toObject () {
  4948. var m = this;
  4949. return {
  4950. years: m.year(),
  4951. months: m.month(),
  4952. date: m.date(),
  4953. hours: m.hours(),
  4954. minutes: m.minutes(),
  4955. seconds: m.seconds(),
  4956. milliseconds: m.milliseconds()
  4957. };
  4958. }
  4959. function toJSON () {
  4960. // new Date(NaN).toJSON() === null
  4961. return this.isValid() ? this.toISOString() : null;
  4962. }
  4963. function isValid$2 () {
  4964. return isValid(this);
  4965. }
  4966. function parsingFlags () {
  4967. return extend({}, getParsingFlags(this));
  4968. }
  4969. function invalidAt () {
  4970. return getParsingFlags(this).overflow;
  4971. }
  4972. function creationData() {
  4973. return {
  4974. input: this._i,
  4975. format: this._f,
  4976. locale: this._locale,
  4977. isUTC: this._isUTC,
  4978. strict: this._strict
  4979. };
  4980. }
  4981. // FORMATTING
  4982. addFormatToken(0, ['gg', 2], 0, function () {
  4983. return this.weekYear() % 100;
  4984. });
  4985. addFormatToken(0, ['GG', 2], 0, function () {
  4986. return this.isoWeekYear() % 100;
  4987. });
  4988. function addWeekYearFormatToken (token, getter) {
  4989. addFormatToken(0, [token, token.length], 0, getter);
  4990. }
  4991. addWeekYearFormatToken('gggg', 'weekYear');
  4992. addWeekYearFormatToken('ggggg', 'weekYear');
  4993. addWeekYearFormatToken('GGGG', 'isoWeekYear');
  4994. addWeekYearFormatToken('GGGGG', 'isoWeekYear');
  4995. // ALIASES
  4996. addUnitAlias('weekYear', 'gg');
  4997. addUnitAlias('isoWeekYear', 'GG');
  4998. // PRIORITY
  4999. addUnitPriority('weekYear', 1);
  5000. addUnitPriority('isoWeekYear', 1);
  5001. // PARSING
  5002. addRegexToken('G', matchSigned);
  5003. addRegexToken('g', matchSigned);
  5004. addRegexToken('GG', match1to2, match2);
  5005. addRegexToken('gg', match1to2, match2);
  5006. addRegexToken('GGGG', match1to4, match4);
  5007. addRegexToken('gggg', match1to4, match4);
  5008. addRegexToken('GGGGG', match1to6, match6);
  5009. addRegexToken('ggggg', match1to6, match6);
  5010. addWeekParseToken(['gggg', 'ggggg', 'GGGG', 'GGGGG'], function (input, week, config, token) {
  5011. week[token.substr(0, 2)] = toInt(input);
  5012. });
  5013. addWeekParseToken(['gg', 'GG'], function (input, week, config, token) {
  5014. week[token] = hooks.parseTwoDigitYear(input);
  5015. });
  5016. // MOMENTS
  5017. function getSetWeekYear (input) {
  5018. return getSetWeekYearHelper.call(this,
  5019. input,
  5020. this.week(),
  5021. this.weekday(),
  5022. this.localeData()._week.dow,
  5023. this.localeData()._week.doy);
  5024. }
  5025. function getSetISOWeekYear (input) {
  5026. return getSetWeekYearHelper.call(this,
  5027. input, this.isoWeek(), this.isoWeekday(), 1, 4);
  5028. }
  5029. function getISOWeeksInYear () {
  5030. return weeksInYear(this.year(), 1, 4);
  5031. }
  5032. function getWeeksInYear () {
  5033. var weekInfo = this.localeData()._week;
  5034. return weeksInYear(this.year(), weekInfo.dow, weekInfo.doy);
  5035. }
  5036. function getSetWeekYearHelper(input, week, weekday, dow, doy) {
  5037. var weeksTarget;
  5038. if (input == null) {
  5039. return weekOfYear(this, dow, doy).year;
  5040. } else {
  5041. weeksTarget = weeksInYear(input, dow, doy);
  5042. if (week > weeksTarget) {
  5043. week = weeksTarget;
  5044. }
  5045. return setWeekAll.call(this, input, week, weekday, dow, doy);
  5046. }
  5047. }
  5048. function setWeekAll(weekYear, week, weekday, dow, doy) {
  5049. var dayOfYearData = dayOfYearFromWeeks(weekYear, week, weekday, dow, doy),
  5050. date = createUTCDate(dayOfYearData.year, 0, dayOfYearData.dayOfYear);
  5051. this.year(date.getUTCFullYear());
  5052. this.month(date.getUTCMonth());
  5053. this.date(date.getUTCDate());
  5054. return this;
  5055. }
  5056. // FORMATTING
  5057. addFormatToken('Q', 0, 'Qo', 'quarter');
  5058. // ALIASES
  5059. addUnitAlias('quarter', 'Q');
  5060. // PRIORITY
  5061. addUnitPriority('quarter', 7);
  5062. // PARSING
  5063. addRegexToken('Q', match1);
  5064. addParseToken('Q', function (input, array) {
  5065. array[MONTH] = (toInt(input) - 1) * 3;
  5066. });
  5067. // MOMENTS
  5068. function getSetQuarter (input) {
  5069. return input == null ? Math.ceil((this.month() + 1) / 3) : this.month((input - 1) * 3 + this.month() % 3);
  5070. }
  5071. // FORMATTING
  5072. addFormatToken('D', ['DD', 2], 'Do', 'date');
  5073. // ALIASES
  5074. addUnitAlias('date', 'D');
  5075. // PRIOROITY
  5076. addUnitPriority('date', 9);
  5077. // PARSING
  5078. addRegexToken('D', match1to2);
  5079. addRegexToken('DD', match1to2, match2);
  5080. addRegexToken('Do', function (isStrict, locale) {
  5081. // TODO: Remove "ordinalParse" fallback in next major release.
  5082. return isStrict ?
  5083. (locale._dayOfMonthOrdinalParse || locale._ordinalParse) :
  5084. locale._dayOfMonthOrdinalParseLenient;
  5085. });
  5086. addParseToken(['D', 'DD'], DATE);
  5087. addParseToken('Do', function (input, array) {
  5088. array[DATE] = toInt(input.match(match1to2)[0], 10);
  5089. });
  5090. // MOMENTS
  5091. var getSetDayOfMonth = makeGetSet('Date', true);
  5092. // FORMATTING
  5093. addFormatToken('DDD', ['DDDD', 3], 'DDDo', 'dayOfYear');
  5094. // ALIASES
  5095. addUnitAlias('dayOfYear', 'DDD');
  5096. // PRIORITY
  5097. addUnitPriority('dayOfYear', 4);
  5098. // PARSING
  5099. addRegexToken('DDD', match1to3);
  5100. addRegexToken('DDDD', match3);
  5101. addParseToken(['DDD', 'DDDD'], function (input, array, config) {
  5102. config._dayOfYear = toInt(input);
  5103. });
  5104. // HELPERS
  5105. // MOMENTS
  5106. function getSetDayOfYear (input) {
  5107. var dayOfYear = Math.round((this.clone().startOf('day') - this.clone().startOf('year')) / 864e5) + 1;
  5108. return input == null ? dayOfYear : this.add((input - dayOfYear), 'd');
  5109. }
  5110. // FORMATTING
  5111. addFormatToken('m', ['mm', 2], 0, 'minute');
  5112. // ALIASES
  5113. addUnitAlias('minute', 'm');
  5114. // PRIORITY
  5115. addUnitPriority('minute', 14);
  5116. // PARSING
  5117. addRegexToken('m', match1to2);
  5118. addRegexToken('mm', match1to2, match2);
  5119. addParseToken(['m', 'mm'], MINUTE);
  5120. // MOMENTS
  5121. var getSetMinute = makeGetSet('Minutes', false);
  5122. // FORMATTING
  5123. addFormatToken('s', ['ss', 2], 0, 'second');
  5124. // ALIASES
  5125. addUnitAlias('second', 's');
  5126. // PRIORITY
  5127. addUnitPriority('second', 15);
  5128. // PARSING
  5129. addRegexToken('s', match1to2);
  5130. addRegexToken('ss', match1to2, match2);
  5131. addParseToken(['s', 'ss'], SECOND);
  5132. // MOMENTS
  5133. var getSetSecond = makeGetSet('Seconds', false);
  5134. // FORMATTING
  5135. addFormatToken('S', 0, 0, function () {
  5136. return ~~(this.millisecond() / 100);
  5137. });
  5138. addFormatToken(0, ['SS', 2], 0, function () {
  5139. return ~~(this.millisecond() / 10);
  5140. });
  5141. addFormatToken(0, ['SSS', 3], 0, 'millisecond');
  5142. addFormatToken(0, ['SSSS', 4], 0, function () {
  5143. return this.millisecond() * 10;
  5144. });
  5145. addFormatToken(0, ['SSSSS', 5], 0, function () {
  5146. return this.millisecond() * 100;
  5147. });
  5148. addFormatToken(0, ['SSSSSS', 6], 0, function () {
  5149. return this.millisecond() * 1000;
  5150. });
  5151. addFormatToken(0, ['SSSSSSS', 7], 0, function () {
  5152. return this.millisecond() * 10000;
  5153. });
  5154. addFormatToken(0, ['SSSSSSSS', 8], 0, function () {
  5155. return this.millisecond() * 100000;
  5156. });
  5157. addFormatToken(0, ['SSSSSSSSS', 9], 0, function () {
  5158. return this.millisecond() * 1000000;
  5159. });
  5160. // ALIASES
  5161. addUnitAlias('millisecond', 'ms');
  5162. // PRIORITY
  5163. addUnitPriority('millisecond', 16);
  5164. // PARSING
  5165. addRegexToken('S', match1to3, match1);
  5166. addRegexToken('SS', match1to3, match2);
  5167. addRegexToken('SSS', match1to3, match3);
  5168. var token;
  5169. for (token = 'SSSS'; token.length <= 9; token += 'S') {
  5170. addRegexToken(token, matchUnsigned);
  5171. }
  5172. function parseMs(input, array) {
  5173. array[MILLISECOND] = toInt(('0.' + input) * 1000);
  5174. }
  5175. for (token = 'S'; token.length <= 9; token += 'S') {
  5176. addParseToken(token, parseMs);
  5177. }
  5178. // MOMENTS
  5179. var getSetMillisecond = makeGetSet('Milliseconds', false);
  5180. // FORMATTING
  5181. addFormatToken('z', 0, 0, 'zoneAbbr');
  5182. addFormatToken('zz', 0, 0, 'zoneName');
  5183. // MOMENTS
  5184. function getZoneAbbr () {
  5185. return this._isUTC ? 'UTC' : '';
  5186. }
  5187. function getZoneName () {
  5188. return this._isUTC ? 'Coordinated Universal Time' : '';
  5189. }
  5190. var proto = Moment.prototype;
  5191. proto.add = add;
  5192. proto.calendar = calendar$1;
  5193. proto.clone = clone;
  5194. proto.diff = diff;
  5195. proto.endOf = endOf;
  5196. proto.format = format;
  5197. proto.from = from;
  5198. proto.fromNow = fromNow;
  5199. proto.to = to;
  5200. proto.toNow = toNow;
  5201. proto.get = stringGet;
  5202. proto.invalidAt = invalidAt;
  5203. proto.isAfter = isAfter;
  5204. proto.isBefore = isBefore;
  5205. proto.isBetween = isBetween;
  5206. proto.isSame = isSame;
  5207. proto.isSameOrAfter = isSameOrAfter;
  5208. proto.isSameOrBefore = isSameOrBefore;
  5209. proto.isValid = isValid$2;
  5210. proto.lang = lang;
  5211. proto.locale = locale;
  5212. proto.localeData = localeData;
  5213. proto.max = prototypeMax;
  5214. proto.min = prototypeMin;
  5215. proto.parsingFlags = parsingFlags;
  5216. proto.set = stringSet;
  5217. proto.startOf = startOf;
  5218. proto.subtract = subtract;
  5219. proto.toArray = toArray;
  5220. proto.toObject = toObject;
  5221. proto.toDate = toDate;
  5222. proto.toISOString = toISOString;
  5223. proto.inspect = inspect;
  5224. proto.toJSON = toJSON;
  5225. proto.toString = toString;
  5226. proto.unix = unix;
  5227. proto.valueOf = valueOf;
  5228. proto.creationData = creationData;
  5229. // Year
  5230. proto.year = getSetYear;
  5231. proto.isLeapYear = getIsLeapYear;
  5232. // Week Year
  5233. proto.weekYear = getSetWeekYear;
  5234. proto.isoWeekYear = getSetISOWeekYear;
  5235. // Quarter
  5236. proto.quarter = proto.quarters = getSetQuarter;
  5237. // Month
  5238. proto.month = getSetMonth;
  5239. proto.daysInMonth = getDaysInMonth;
  5240. // Week
  5241. proto.week = proto.weeks = getSetWeek;
  5242. proto.isoWeek = proto.isoWeeks = getSetISOWeek;
  5243. proto.weeksInYear = getWeeksInYear;
  5244. proto.isoWeeksInYear = getISOWeeksInYear;
  5245. // Day
  5246. proto.date = getSetDayOfMonth;
  5247. proto.day = proto.days = getSetDayOfWeek;
  5248. proto.weekday = getSetLocaleDayOfWeek;
  5249. proto.isoWeekday = getSetISODayOfWeek;
  5250. proto.dayOfYear = getSetDayOfYear;
  5251. // Hour
  5252. proto.hour = proto.hours = getSetHour;
  5253. // Minute
  5254. proto.minute = proto.minutes = getSetMinute;
  5255. // Second
  5256. proto.second = proto.seconds = getSetSecond;
  5257. // Millisecond
  5258. proto.millisecond = proto.milliseconds = getSetMillisecond;
  5259. // Offset
  5260. proto.utcOffset = getSetOffset;
  5261. proto.utc = setOffsetToUTC;
  5262. proto.local = setOffsetToLocal;
  5263. proto.parseZone = setOffsetToParsedOffset;
  5264. proto.hasAlignedHourOffset = hasAlignedHourOffset;
  5265. proto.isDST = isDaylightSavingTime;
  5266. proto.isLocal = isLocal;
  5267. proto.isUtcOffset = isUtcOffset;
  5268. proto.isUtc = isUtc;
  5269. proto.isUTC = isUtc;
  5270. // Timezone
  5271. proto.zoneAbbr = getZoneAbbr;
  5272. proto.zoneName = getZoneName;
  5273. // Deprecations
  5274. proto.dates = deprecate('dates accessor is deprecated. Use date instead.', getSetDayOfMonth);
  5275. proto.months = deprecate('months accessor is deprecated. Use month instead', getSetMonth);
  5276. proto.years = deprecate('years accessor is deprecated. Use year instead', getSetYear);
  5277. proto.zone = deprecate('moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/', getSetZone);
  5278. proto.isDSTShifted = deprecate('isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information', isDaylightSavingTimeShifted);
  5279. function createUnix (input) {
  5280. return createLocal(input * 1000);
  5281. }
  5282. function createInZone () {
  5283. return createLocal.apply(null, arguments).parseZone();
  5284. }
  5285. function preParsePostFormat (string) {
  5286. return string;
  5287. }
  5288. var proto$1 = Locale.prototype;
  5289. proto$1.calendar = calendar;
  5290. proto$1.longDateFormat = longDateFormat;
  5291. proto$1.invalidDate = invalidDate;
  5292. proto$1.ordinal = ordinal;
  5293. proto$1.preparse = preParsePostFormat;
  5294. proto$1.postformat = preParsePostFormat;
  5295. proto$1.relativeTime = relativeTime;
  5296. proto$1.pastFuture = pastFuture;
  5297. proto$1.set = set;
  5298. // Month
  5299. proto$1.months = localeMonths;
  5300. proto$1.monthsShort = localeMonthsShort;
  5301. proto$1.monthsParse = localeMonthsParse;
  5302. proto$1.monthsRegex = monthsRegex;
  5303. proto$1.monthsShortRegex = monthsShortRegex;
  5304. // Week
  5305. proto$1.week = localeWeek;
  5306. proto$1.firstDayOfYear = localeFirstDayOfYear;
  5307. proto$1.firstDayOfWeek = localeFirstDayOfWeek;
  5308. // Day of Week
  5309. proto$1.weekdays = localeWeekdays;
  5310. proto$1.weekdaysMin = localeWeekdaysMin;
  5311. proto$1.weekdaysShort = localeWeekdaysShort;
  5312. proto$1.weekdaysParse = localeWeekdaysParse;
  5313. proto$1.weekdaysRegex = weekdaysRegex;
  5314. proto$1.weekdaysShortRegex = weekdaysShortRegex;
  5315. proto$1.weekdaysMinRegex = weekdaysMinRegex;
  5316. // Hours
  5317. proto$1.isPM = localeIsPM;
  5318. proto$1.meridiem = localeMeridiem;
  5319. function get$1 (format, index, field, setter) {
  5320. var locale = getLocale();
  5321. var utc = createUTC().set(setter, index);
  5322. return locale[field](utc, format);
  5323. }
  5324. function listMonthsImpl (format, index, field) {
  5325. if (isNumber(format)) {
  5326. index = format;
  5327. format = undefined;
  5328. }
  5329. format = format || '';
  5330. if (index != null) {
  5331. return get$1(format, index, field, 'month');
  5332. }
  5333. var i;
  5334. var out = [];
  5335. for (i = 0; i < 12; i++) {
  5336. out[i] = get$1(format, i, field, 'month');
  5337. }
  5338. return out;
  5339. }
  5340. // ()
  5341. // (5)
  5342. // (fmt, 5)
  5343. // (fmt)
  5344. // (true)
  5345. // (true, 5)
  5346. // (true, fmt, 5)
  5347. // (true, fmt)
  5348. function listWeekdaysImpl (localeSorted, format, index, field) {
  5349. if (typeof localeSorted === 'boolean') {
  5350. if (isNumber(format)) {
  5351. index = format;
  5352. format = undefined;
  5353. }
  5354. format = format || '';
  5355. } else {
  5356. format = localeSorted;
  5357. index = format;
  5358. localeSorted = false;
  5359. if (isNumber(format)) {
  5360. index = format;
  5361. format = undefined;
  5362. }
  5363. format = format || '';
  5364. }
  5365. var locale = getLocale(),
  5366. shift = localeSorted ? locale._week.dow : 0;
  5367. if (index != null) {
  5368. return get$1(format, (index + shift) % 7, field, 'day');
  5369. }
  5370. var i;
  5371. var out = [];
  5372. for (i = 0; i < 7; i++) {
  5373. out[i] = get$1(format, (i + shift) % 7, field, 'day');
  5374. }
  5375. return out;
  5376. }
  5377. function listMonths (format, index) {
  5378. return listMonthsImpl(format, index, 'months');
  5379. }
  5380. function listMonthsShort (format, index) {
  5381. return listMonthsImpl(format, index, 'monthsShort');
  5382. }
  5383. function listWeekdays (localeSorted, format, index) {
  5384. return listWeekdaysImpl(localeSorted, format, index, 'weekdays');
  5385. }
  5386. function listWeekdaysShort (localeSorted, format, index) {
  5387. return listWeekdaysImpl(localeSorted, format, index, 'weekdaysShort');
  5388. }
  5389. function listWeekdaysMin (localeSorted, format, index) {
  5390. return listWeekdaysImpl(localeSorted, format, index, 'weekdaysMin');
  5391. }
  5392. getSetGlobalLocale('en', {
  5393. dayOfMonthOrdinalParse: /\d{1,2}(th|st|nd|rd)/,
  5394. ordinal : function (number) {
  5395. var b = number % 10,
  5396. output = (toInt(number % 100 / 10) === 1) ? 'th' :
  5397. (b === 1) ? 'st' :
  5398. (b === 2) ? 'nd' :
  5399. (b === 3) ? 'rd' : 'th';
  5400. return number + output;
  5401. }
  5402. });
  5403. // Side effect imports
  5404. hooks.lang = deprecate('moment.lang is deprecated. Use moment.locale instead.', getSetGlobalLocale);
  5405. hooks.langData = deprecate('moment.langData is deprecated. Use moment.localeData instead.', getLocale);
  5406. var mathAbs = Math.abs;
  5407. function abs () {
  5408. var data = this._data;
  5409. this._milliseconds = mathAbs(this._milliseconds);
  5410. this._days = mathAbs(this._days);
  5411. this._months = mathAbs(this._months);
  5412. data.milliseconds = mathAbs(data.milliseconds);
  5413. data.seconds = mathAbs(data.seconds);
  5414. data.minutes = mathAbs(data.minutes);
  5415. data.hours = mathAbs(data.hours);
  5416. data.months = mathAbs(data.months);
  5417. data.years = mathAbs(data.years);
  5418. return this;
  5419. }
  5420. function addSubtract$1 (duration, input, value, direction) {
  5421. var other = createDuration(input, value);
  5422. duration._milliseconds += direction * other._milliseconds;
  5423. duration._days += direction * other._days;
  5424. duration._months += direction * other._months;
  5425. return duration._bubble();
  5426. }
  5427. // supports only 2.0-style add(1, 's') or add(duration)
  5428. function add$1 (input, value) {
  5429. return addSubtract$1(this, input, value, 1);
  5430. }
  5431. // supports only 2.0-style subtract(1, 's') or subtract(duration)
  5432. function subtract$1 (input, value) {
  5433. return addSubtract$1(this, input, value, -1);
  5434. }
  5435. function absCeil (number) {
  5436. if (number < 0) {
  5437. return Math.floor(number);
  5438. } else {
  5439. return Math.ceil(number);
  5440. }
  5441. }
  5442. function bubble () {
  5443. var milliseconds = this._milliseconds;
  5444. var days = this._days;
  5445. var months = this._months;
  5446. var data = this._data;
  5447. var seconds, minutes, hours, years, monthsFromDays;
  5448. // if we have a mix of positive and negative values, bubble down first
  5449. // check: https://github.com/moment/moment/issues/2166
  5450. if (!((milliseconds >= 0 && days >= 0 && months >= 0) ||
  5451. (milliseconds <= 0 && days <= 0 && months <= 0))) {
  5452. milliseconds += absCeil(monthsToDays(months) + days) * 864e5;
  5453. days = 0;
  5454. months = 0;
  5455. }
  5456. // The following code bubbles up values, see the tests for
  5457. // examples of what that means.
  5458. data.milliseconds = milliseconds % 1000;
  5459. seconds = absFloor(milliseconds / 1000);
  5460. data.seconds = seconds % 60;
  5461. minutes = absFloor(seconds / 60);
  5462. data.minutes = minutes % 60;
  5463. hours = absFloor(minutes / 60);
  5464. data.hours = hours % 24;
  5465. days += absFloor(hours / 24);
  5466. // convert days to months
  5467. monthsFromDays = absFloor(daysToMonths(days));
  5468. months += monthsFromDays;
  5469. days -= absCeil(monthsToDays(monthsFromDays));
  5470. // 12 months -> 1 year
  5471. years = absFloor(months / 12);
  5472. months %= 12;
  5473. data.days = days;
  5474. data.months = months;
  5475. data.years = years;
  5476. return this;
  5477. }
  5478. function daysToMonths (days) {
  5479. // 400 years have 146097 days (taking into account leap year rules)
  5480. // 400 years have 12 months === 4800
  5481. return days * 4800 / 146097;
  5482. }
  5483. function monthsToDays (months) {
  5484. // the reverse of daysToMonths
  5485. return months * 146097 / 4800;
  5486. }
  5487. function as (units) {
  5488. if (!this.isValid()) {
  5489. return NaN;
  5490. }
  5491. var days;
  5492. var months;
  5493. var milliseconds = this._milliseconds;
  5494. units = normalizeUnits(units);
  5495. if (units === 'month' || units === 'year') {
  5496. days = this._days + milliseconds / 864e5;
  5497. months = this._months + daysToMonths(days);
  5498. return units === 'month' ? months : months / 12;
  5499. } else {
  5500. // handle milliseconds separately because of floating point math errors (issue #1867)
  5501. days = this._days + Math.round(monthsToDays(this._months));
  5502. switch (units) {
  5503. case 'week' : return days / 7 + milliseconds / 6048e5;
  5504. case 'day' : return days + milliseconds / 864e5;
  5505. case 'hour' : return days * 24 + milliseconds / 36e5;
  5506. case 'minute' : return days * 1440 + milliseconds / 6e4;
  5507. case 'second' : return days * 86400 + milliseconds / 1000;
  5508. // Math.floor prevents floating point math errors here
  5509. case 'millisecond': return Math.floor(days * 864e5) + milliseconds;
  5510. default: throw new Error('Unknown unit ' + units);
  5511. }
  5512. }
  5513. }
  5514. // TODO: Use this.as('ms')?
  5515. function valueOf$1 () {
  5516. if (!this.isValid()) {
  5517. return NaN;
  5518. }
  5519. return (
  5520. this._milliseconds +
  5521. this._days * 864e5 +
  5522. (this._months % 12) * 2592e6 +
  5523. toInt(this._months / 12) * 31536e6
  5524. );
  5525. }
  5526. function makeAs (alias) {
  5527. return function () {
  5528. return this.as(alias);
  5529. };
  5530. }
  5531. var asMilliseconds = makeAs('ms');
  5532. var asSeconds = makeAs('s');
  5533. var asMinutes = makeAs('m');
  5534. var asHours = makeAs('h');
  5535. var asDays = makeAs('d');
  5536. var asWeeks = makeAs('w');
  5537. var asMonths = makeAs('M');
  5538. var asYears = makeAs('y');
  5539. function get$2 (units) {
  5540. units = normalizeUnits(units);
  5541. return this.isValid() ? this[units + 's']() : NaN;
  5542. }
  5543. function makeGetter(name) {
  5544. return function () {
  5545. return this.isValid() ? this._data[name] : NaN;
  5546. };
  5547. }
  5548. var milliseconds = makeGetter('milliseconds');
  5549. var seconds = makeGetter('seconds');
  5550. var minutes = makeGetter('minutes');
  5551. var hours = makeGetter('hours');
  5552. var days = makeGetter('days');
  5553. var months = makeGetter('months');
  5554. var years = makeGetter('years');
  5555. function weeks () {
  5556. return absFloor(this.days() / 7);
  5557. }
  5558. var round = Math.round;
  5559. var thresholds = {
  5560. ss: 44, // a few seconds to seconds
  5561. s : 45, // seconds to minute
  5562. m : 45, // minutes to hour
  5563. h : 22, // hours to day
  5564. d : 26, // days to month
  5565. M : 11 // months to year
  5566. };
  5567. // helper function for moment.fn.from, moment.fn.fromNow, and moment.duration.fn.humanize
  5568. function substituteTimeAgo(string, number, withoutSuffix, isFuture, locale) {
  5569. return locale.relativeTime(number || 1, !!withoutSuffix, string, isFuture);
  5570. }
  5571. function relativeTime$1 (posNegDuration, withoutSuffix, locale) {
  5572. var duration = createDuration(posNegDuration).abs();
  5573. var seconds = round(duration.as('s'));
  5574. var minutes = round(duration.as('m'));
  5575. var hours = round(duration.as('h'));
  5576. var days = round(duration.as('d'));
  5577. var months = round(duration.as('M'));
  5578. var years = round(duration.as('y'));
  5579. var a = seconds <= thresholds.ss && ['s', seconds] ||
  5580. seconds < thresholds.s && ['ss', seconds] ||
  5581. minutes <= 1 && ['m'] ||
  5582. minutes < thresholds.m && ['mm', minutes] ||
  5583. hours <= 1 && ['h'] ||
  5584. hours < thresholds.h && ['hh', hours] ||
  5585. days <= 1 && ['d'] ||
  5586. days < thresholds.d && ['dd', days] ||
  5587. months <= 1 && ['M'] ||
  5588. months < thresholds.M && ['MM', months] ||
  5589. years <= 1 && ['y'] || ['yy', years];
  5590. a[2] = withoutSuffix;
  5591. a[3] = +posNegDuration > 0;
  5592. a[4] = locale;
  5593. return substituteTimeAgo.apply(null, a);
  5594. }
  5595. // This function allows you to set the rounding function for relative time strings
  5596. function getSetRelativeTimeRounding (roundingFunction) {
  5597. if (roundingFunction === undefined) {
  5598. return round;
  5599. }
  5600. if (typeof(roundingFunction) === 'function') {
  5601. round = roundingFunction;
  5602. return true;
  5603. }
  5604. return false;
  5605. }
  5606. // This function allows you to set a threshold for relative time strings
  5607. function getSetRelativeTimeThreshold (threshold, limit) {
  5608. if (thresholds[threshold] === undefined) {
  5609. return false;
  5610. }
  5611. if (limit === undefined) {
  5612. return thresholds[threshold];
  5613. }
  5614. thresholds[threshold] = limit;
  5615. if (threshold === 's') {
  5616. thresholds.ss = limit - 1;
  5617. }
  5618. return true;
  5619. }
  5620. function humanize (withSuffix) {
  5621. if (!this.isValid()) {
  5622. return this.localeData().invalidDate();
  5623. }
  5624. var locale = this.localeData();
  5625. var output = relativeTime$1(this, !withSuffix, locale);
  5626. if (withSuffix) {
  5627. output = locale.pastFuture(+this, output);
  5628. }
  5629. return locale.postformat(output);
  5630. }
  5631. var abs$1 = Math.abs;
  5632. function toISOString$1() {
  5633. // for ISO strings we do not use the normal bubbling rules:
  5634. // * milliseconds bubble up until they become hours
  5635. // * days do not bubble at all
  5636. // * months bubble up until they become years
  5637. // This is because there is no context-free conversion between hours and days
  5638. // (think of clock changes)
  5639. // and also not between days and months (28-31 days per month)
  5640. if (!this.isValid()) {
  5641. return this.localeData().invalidDate();
  5642. }
  5643. var seconds = abs$1(this._milliseconds) / 1000;
  5644. var days = abs$1(this._days);
  5645. var months = abs$1(this._months);
  5646. var minutes, hours, years;
  5647. // 3600 seconds -> 60 minutes -> 1 hour
  5648. minutes = absFloor(seconds / 60);
  5649. hours = absFloor(minutes / 60);
  5650. seconds %= 60;
  5651. minutes %= 60;
  5652. // 12 months -> 1 year
  5653. years = absFloor(months / 12);
  5654. months %= 12;
  5655. // inspired by https://github.com/dordille/moment-isoduration/blob/master/moment.isoduration.js
  5656. var Y = years;
  5657. var M = months;
  5658. var D = days;
  5659. var h = hours;
  5660. var m = minutes;
  5661. var s = seconds;
  5662. var total = this.asSeconds();
  5663. if (!total) {
  5664. // this is the same as C#'s (Noda) and python (isodate)...
  5665. // but not other JS (goog.date)
  5666. return 'P0D';
  5667. }
  5668. return (total < 0 ? '-' : '') +
  5669. 'P' +
  5670. (Y ? Y + 'Y' : '') +
  5671. (M ? M + 'M' : '') +
  5672. (D ? D + 'D' : '') +
  5673. ((h || m || s) ? 'T' : '') +
  5674. (h ? h + 'H' : '') +
  5675. (m ? m + 'M' : '') +
  5676. (s ? s + 'S' : '');
  5677. }
  5678. var proto$2 = Duration.prototype;
  5679. proto$2.isValid = isValid$1;
  5680. proto$2.abs = abs;
  5681. proto$2.add = add$1;
  5682. proto$2.subtract = subtract$1;
  5683. proto$2.as = as;
  5684. proto$2.asMilliseconds = asMilliseconds;
  5685. proto$2.asSeconds = asSeconds;
  5686. proto$2.asMinutes = asMinutes;
  5687. proto$2.asHours = asHours;
  5688. proto$2.asDays = asDays;
  5689. proto$2.asWeeks = asWeeks;
  5690. proto$2.asMonths = asMonths;
  5691. proto$2.asYears = asYears;
  5692. proto$2.valueOf = valueOf$1;
  5693. proto$2._bubble = bubble;
  5694. proto$2.get = get$2;
  5695. proto$2.milliseconds = milliseconds;
  5696. proto$2.seconds = seconds;
  5697. proto$2.minutes = minutes;
  5698. proto$2.hours = hours;
  5699. proto$2.days = days;
  5700. proto$2.weeks = weeks;
  5701. proto$2.months = months;
  5702. proto$2.years = years;
  5703. proto$2.humanize = humanize;
  5704. proto$2.toISOString = toISOString$1;
  5705. proto$2.toString = toISOString$1;
  5706. proto$2.toJSON = toISOString$1;
  5707. proto$2.locale = locale;
  5708. proto$2.localeData = localeData;
  5709. // Deprecations
  5710. proto$2.toIsoString = deprecate('toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)', toISOString$1);
  5711. proto$2.lang = lang;
  5712. // Side effect imports
  5713. // FORMATTING
  5714. addFormatToken('X', 0, 0, 'unix');
  5715. addFormatToken('x', 0, 0, 'valueOf');
  5716. // PARSING
  5717. addRegexToken('x', matchSigned);
  5718. addRegexToken('X', matchTimestamp);
  5719. addParseToken('X', function (input, array, config) {
  5720. config._d = new Date(parseFloat(input, 10) * 1000);
  5721. });
  5722. addParseToken('x', function (input, array, config) {
  5723. config._d = new Date(toInt(input));
  5724. });
  5725. // Side effect imports
  5726. hooks.version = '2.18.1';
  5727. setHookCallback(createLocal);
  5728. hooks.fn = proto;
  5729. hooks.min = min;
  5730. hooks.max = max;
  5731. hooks.now = now;
  5732. hooks.utc = createUTC;
  5733. hooks.unix = createUnix;
  5734. hooks.months = listMonths;
  5735. hooks.isDate = isDate;
  5736. hooks.locale = getSetGlobalLocale;
  5737. hooks.invalid = createInvalid;
  5738. hooks.duration = createDuration;
  5739. hooks.isMoment = isMoment;
  5740. hooks.weekdays = listWeekdays;
  5741. hooks.parseZone = createInZone;
  5742. hooks.localeData = getLocale;
  5743. hooks.isDuration = isDuration;
  5744. hooks.monthsShort = listMonthsShort;
  5745. hooks.weekdaysMin = listWeekdaysMin;
  5746. hooks.defineLocale = defineLocale;
  5747. hooks.updateLocale = updateLocale;
  5748. hooks.locales = listLocales;
  5749. hooks.weekdaysShort = listWeekdaysShort;
  5750. hooks.normalizeUnits = normalizeUnits;
  5751. hooks.relativeTimeRounding = getSetRelativeTimeRounding;
  5752. hooks.relativeTimeThreshold = getSetRelativeTimeThreshold;
  5753. hooks.calendarFormat = getCalendarFormat;
  5754. hooks.prototype = proto;
  5755. return hooks;
  5756. })));
  5757. define('moment', ['moment/moment'], function (main) { return main; });
  5758. define('backend',['fast', 'moment'], function (Fast, Moment) {
  5759. var Backend = {
  5760. api: {
  5761. sidebar: function (params) {
  5762. colorArr = ['red', 'green', 'yellow', 'blue', 'teal', 'orange', 'purple'];
  5763. $colorNums = colorArr.length;
  5764. badgeList = {};
  5765. $.each(params, function (k, v) {
  5766. $url = Fast.api.fixurl(k);
  5767. if ($.isArray(v))
  5768. {
  5769. $nums = typeof v[0] !== 'undefined' ? v[0] : 0;
  5770. $color = typeof v[1] !== 'undefined' ? v[1] : colorArr[(!isNaN($nums) ? $nums : $nums.length) % $colorNums];
  5771. $class = typeof v[2] !== 'undefined' ? v[2] : 'label';
  5772. } else
  5773. {
  5774. $nums = v;
  5775. $color = colorArr[(!isNaN($nums) ? $nums : $nums.length) % $colorNums];
  5776. $class = 'label';
  5777. }
  5778. //必须nums大于0才显示
  5779. badgeList[$url] = $nums > 0 ? '<small class="' + $class + ' pull-right bg-' + $color + '">' + $nums + '</small>' : '';
  5780. });
  5781. $.each(badgeList, function (k, v) {
  5782. var anchor = top.window.$("li a[addtabs][url='" + k + "']");
  5783. if (anchor) {
  5784. top.window.$(".pull-right-container", anchor).html(v);
  5785. top.window.$(".nav-addtabs li a[node-id='" + anchor.attr("addtabs") + "'] .pull-right-container").html(v);
  5786. }
  5787. });
  5788. },
  5789. addtabs: function (url, title, icon) {
  5790. var dom = "a[url='{url}']"
  5791. var leftlink = top.window.$(dom.replace(/\{url\}/, url));
  5792. if (leftlink.size() > 0) {
  5793. leftlink.trigger("click");
  5794. } else {
  5795. url = Fast.api.fixurl(url);
  5796. leftlink = top.window.$(dom.replace(/\{url\}/, url));
  5797. if (leftlink.size() > 0) {
  5798. var event = leftlink.parent().hasClass("active") ? "dblclick" : "click";
  5799. leftlink.trigger(event);
  5800. } else {
  5801. var baseurl = url.substr(0, url.indexOf("?") > -1 ? url.indexOf("?") : url.length);
  5802. leftlink = top.window.$(dom.replace(/\{url\}/, baseurl));
  5803. //能找到相对地址
  5804. if (leftlink.size() > 0) {
  5805. icon = typeof icon != 'undefined' ? icon : leftlink.find("i").attr("class");
  5806. title = typeof title != 'undefined' ? title : leftlink.find("span:first").text();
  5807. leftlink.trigger("fa.event.toggleitem");
  5808. }
  5809. var navnode = $(".nav-tabs ul li a[node-url='" + url + "']");
  5810. if (navnode.size() > 0) {
  5811. navnode.trigger("click");
  5812. } else {
  5813. //追加新的tab
  5814. var id = Math.floor(new Date().valueOf() * Math.random());
  5815. icon = typeof icon != 'undefined' ? icon : 'fa fa-circle-o';
  5816. title = typeof title != 'undefined' ? title : '';
  5817. top.window.$("<a />").append('<i class="' + icon + '"></i> <span>' + title + '</span>').prop("href", url).attr({url: url, addtabs: id}).addClass("hide").appendTo(top.window.document.body).trigger("click");
  5818. }
  5819. }
  5820. }
  5821. },
  5822. },
  5823. init: function () {
  5824. //公共代码
  5825. //配置Toastr的参数
  5826. Toastr.options.positionClass = Config.controllername == 'index' ? "toast-top-right-index" : "toast-top-right";
  5827. //点击包含.btn-dialog的元素时弹出dialog
  5828. $(document).on('click', '.btn-dialog,.dialogit', function (e) {
  5829. e.preventDefault();
  5830. Backend.api.open(Backend.api.fixurl($(this).attr('href')), $(this).attr('title'));
  5831. });
  5832. //点击包含.btn-addtabs的元素时事件
  5833. $(document).on('click', '.btn-addtabs,.addtabsit', function (e) {
  5834. e.preventDefault();
  5835. Backend.api.addtabs($(this).attr("href"), $(this).attr("title"));
  5836. });
  5837. //修复含有fixed-footer类的body边距
  5838. if ($(".fixed-footer").size() > 0) {
  5839. $(document.body).css("padding-bottom", $(".fixed-footer").height());
  5840. }
  5841. }
  5842. };
  5843. Backend.api = $.extend(Fast.api, Backend.api);
  5844. //将Moment渲染至全局,以便于在子框架中调用
  5845. window.Moment = Moment;
  5846. //将Backend渲染至全局,以便于在子框架中调用
  5847. window.Backend = Backend;
  5848. Backend.init();
  5849. return Backend;
  5850. });
  5851. /*
  5852. * bootstrap-table - v1.11.1 - 2017-02-22
  5853. * https://github.com/wenzhixin/bootstrap-table
  5854. * Copyright (c) 2017 zhixin wen
  5855. * Licensed MIT License
  5856. */
  5857. !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++){
  5858. 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);
  5859. define("bootstrap-table", ["bootstrap"], (function (global) {
  5860. return function () {
  5861. var ret, fn;
  5862. return ret || global.$.fn.bootstrapTable;
  5863. };
  5864. }(this)));
  5865. /**
  5866. * Bootstrap Table Chinese translation
  5867. * Author: Zhixin Wen<wenzhixin2010@gmail.com>
  5868. */
  5869. (function ($) {
  5870. 'use strict';
  5871. $.fn.bootstrapTable.locales['zh-CN'] = {
  5872. formatLoadingMessage: function () {
  5873. return '正在努力地加载数据中,请稍候……';
  5874. },
  5875. formatRecordsPerPage: function (pageNumber) {
  5876. return '每页显示 ' + pageNumber + ' 条记录';
  5877. },
  5878. formatShowingRows: function (pageFrom, pageTo, totalRows) {
  5879. return '显示第 ' + pageFrom + ' 到第 ' + pageTo + ' 条记录,总共 ' + totalRows + ' 条记录';
  5880. },
  5881. formatSearch: function () {
  5882. return '搜索';
  5883. },
  5884. formatNoMatches: function () {
  5885. return '没有找到匹配的记录';
  5886. },
  5887. formatPaginationSwitch: function () {
  5888. return '隐藏/显示分页';
  5889. },
  5890. formatRefresh: function () {
  5891. return '刷新';
  5892. },
  5893. formatToggle: function () {
  5894. return '切换';
  5895. },
  5896. formatColumns: function () {
  5897. return '列';
  5898. },
  5899. formatExport: function () {
  5900. return '导出数据';
  5901. },
  5902. formatClearFilters: function () {
  5903. return '清空过滤';
  5904. }
  5905. };
  5906. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['zh-CN']);
  5907. })(jQuery);
  5908. define("bootstrap-table-lang", ["bootstrap-table"], (function (global) {
  5909. return function () {
  5910. var ret, fn;
  5911. return ret || global.$.fn.bootstrapTable.defaults;
  5912. };
  5913. }(this)));
  5914. /**
  5915. * @author: Dennis Hernández
  5916. * @webSite: http://djhvscf.github.io/Blog
  5917. * @version: v1.1.0
  5918. */
  5919. !function ($) {
  5920. 'use strict';
  5921. var showHideColumns = function (that, checked) {
  5922. if (that.options.columnsHidden.length > 0 ) {
  5923. $.each(that.columns, function (i, column) {
  5924. if (that.options.columnsHidden.indexOf(column.field) !== -1) {
  5925. if (column.visible !== checked) {
  5926. that.toggleColumn($.fn.bootstrapTable.utils.getFieldIndex(that.columns, column.field), checked, true);
  5927. }
  5928. }
  5929. });
  5930. }
  5931. };
  5932. var resetView = function (that) {
  5933. if (that.options.height || that.options.showFooter) {
  5934. setTimeout(function(){
  5935. that.resetView.call(that);
  5936. }, 1);
  5937. }
  5938. };
  5939. var changeView = function (that, width, height) {
  5940. if (that.options.minHeight) {
  5941. if ((width <= that.options.minWidth) && (height <= that.options.minHeight)) {
  5942. conditionCardView(that);
  5943. } else if ((width > that.options.minWidth) && (height > that.options.minHeight)) {
  5944. conditionFullView(that);
  5945. }
  5946. } else {
  5947. if (width <= that.options.minWidth) {
  5948. conditionCardView(that);
  5949. } else if (width > that.options.minWidth) {
  5950. conditionFullView(that);
  5951. }
  5952. }
  5953. resetView(that);
  5954. };
  5955. var conditionCardView = function (that) {
  5956. changeTableView(that, false);
  5957. showHideColumns(that, false);
  5958. };
  5959. var conditionFullView = function (that) {
  5960. changeTableView(that, true);
  5961. showHideColumns(that, true);
  5962. };
  5963. var changeTableView = function (that, cardViewState) {
  5964. that.options.cardView = cardViewState;
  5965. that.toggleView();
  5966. };
  5967. var debounce = function(func,wait) {
  5968. var timeout;
  5969. return function() {
  5970. var context = this,
  5971. args = arguments;
  5972. var later = function() {
  5973. timeout = null;
  5974. func.apply(context,args);
  5975. };
  5976. clearTimeout(timeout);
  5977. timeout = setTimeout(later, wait);
  5978. };
  5979. };
  5980. $.extend($.fn.bootstrapTable.defaults, {
  5981. mobileResponsive: false,
  5982. minWidth: 562,
  5983. minHeight: undefined,
  5984. heightThreshold: 100, // just slightly larger than mobile chrome's auto-hiding toolbar
  5985. checkOnInit: true,
  5986. columnsHidden: []
  5987. });
  5988. var BootstrapTable = $.fn.bootstrapTable.Constructor,
  5989. _init = BootstrapTable.prototype.init;
  5990. BootstrapTable.prototype.init = function () {
  5991. _init.apply(this, Array.prototype.slice.apply(arguments));
  5992. if (!this.options.mobileResponsive) {
  5993. return;
  5994. }
  5995. if (!this.options.minWidth) {
  5996. return;
  5997. }
  5998. if (this.options.minWidth < 100 && this.options.resizable) {
  5999. console.log("The minWidth when the resizable extension is active should be greater or equal than 100");
  6000. this.options.minWidth = 100;
  6001. }
  6002. var that = this,
  6003. old = {
  6004. width: $(window).width(),
  6005. height: $(window).height()
  6006. };
  6007. $(window).on('resize orientationchange',debounce(function (evt) {
  6008. // reset view if height has only changed by at least the threshold.
  6009. var height = $(this).height(),
  6010. width = $(this).width();
  6011. if (Math.abs(old.height - height) > that.options.heightThreshold || old.width != width) {
  6012. changeView(that, width, height);
  6013. old = {
  6014. width: width,
  6015. height: height
  6016. };
  6017. }
  6018. },200));
  6019. if (this.options.checkOnInit) {
  6020. var height = $(window).height(),
  6021. width = $(window).width();
  6022. changeView(this, width, height);
  6023. old = {
  6024. width: width,
  6025. height: height
  6026. };
  6027. }
  6028. };
  6029. }(jQuery);
  6030. define("bootstrap-table-mobile", ["bootstrap-table"], (function (global) {
  6031. return function () {
  6032. var ret, fn;
  6033. return ret || global.$.fn.bootstrapTable.defaults;
  6034. };
  6035. }(this)));
  6036. /*
  6037. tableExport.jquery.plugin
  6038. Copyright (c) 2015-2017 hhurz, https://github.com/hhurz/
  6039. Multi Worksheets Support, Copyright (c) 2017 hejiheji001, https://github.com/hejiheji001/
  6040. Original Work, Copyright (c) 2014 Giri Raj, https://github.com/kayalshri/
  6041. Licensed under the MIT License, http://opensource.org/licenses/mit-license
  6042. */
  6043. (function(c){c.fn.extend({tableExport:function(n){function N(b){var a=[];c(b).find("thead").first().find("th").each(function(b,f){void 0!==c(f).attr("data-field")?a[b]=c(f).attr("data-field"):a[b]=b.toString()});return a}function x(b,m,e,f,z){if(-1==c.inArray(e,a.ignoreRow)&&-1==c.inArray(e-f,a.ignoreRow)){var F=c(b).filter(function(){return"none"!=c(this).data("tableexport-display")&&(c(this).is(":visible")||"always"==c(this).data("tableexport-display")||"always"==c(this).closest("table").data("tableexport-display"))}).find(m),
  6044. l=0;F.each(function(b){if(("always"==c(this).data("tableexport-display")||"none"!=c(this).css("display")&&"hidden"!=c(this).css("visibility")&&"none"!=c(this).data("tableexport-display"))&&"function"===typeof z){var f,m=1,r=1;var d=F.length;if("undefined"!=typeof y[e]&&0<y[e].length){var g=b;for(f=0;f<=g;f++)"undefined"!=typeof y[e][f]&&(z(null,e,f),delete y[e][f],g++);b+=y[e].length;d+=y[e].length}c(this).is("[colspan]")&&(m=parseInt(c(this).attr("colspan"))||1,l+=0<m?m-1:0);c(this).is("[rowspan]")&&
  6045. (r=parseInt(c(this).attr("rowspan"))||1);f=d;d=b+l;g=!1;0<a.ignoreColumn.length&&("string"==typeof a.ignoreColumn[0]?I.length>d&&"undefined"!=typeof I[d]&&-1!=c.inArray(I[d],a.ignoreColumn)&&(g=!0):"number"!=typeof a.ignoreColumn[0]||-1==c.inArray(d,a.ignoreColumn)&&-1==c.inArray(d-f,a.ignoreColumn)||(g=!0));if(!1===g)for(z(this,e,b),f=1;f<m;f++)z(null,e,b+f);if(1<r)for(d=1;d<r;d++)for("undefined"==typeof y[e+d]&&(y[e+d]=[]),y[e+d][b+l]="",f=1;f<m;f++)y[e+d][b+l-f]=""}});if("undefined"!=typeof y[e]&&
  6046. 0<y[e].length)for(b=0;b<=y[e].length;b++)"undefined"!=typeof y[e][b]&&(z(null,e,b),delete y[e][b])}}function aa(b,m){!0===a.consoleLog&&console.log(b.output());if("string"===a.outputMode)return b.output();if("base64"===a.outputMode)return D(b.output());if("window"===a.outputMode)window.open(URL.createObjectURL(b.output("blob")));else try{var e=b.output("blob");saveAs(e,a.fileName+".pdf")}catch(f){A(a.fileName+".pdf","data:application/pdf"+(m?"":";base64")+",",m?e:b.output())}}function ba(b,a,e){var f=
  6047. 0;"undefined"!=typeof e&&(f=e.colspan);if(0<=f){for(var m=b.width,c=b.textPos.x,l=a.table.columns.indexOf(a.column),r=1;r<f;r++)m+=a.table.columns[l+r].width;1<f&&("right"===b.styles.halign?c=b.textPos.x+m-b.width:"center"===b.styles.halign&&(c=b.textPos.x+(m-b.width)/2));b.width=m;b.textPos.x=c;"undefined"!=typeof e&&1<e.rowspan&&(b.height*=e.rowspan);if("middle"===b.styles.valign||"bottom"===b.styles.valign)e=("string"===typeof b.text?b.text.split(/\r\n|\r|\n/g):b.text).length||1,2<e&&(b.textPos.y-=
  6048. (2-1.15)/2*a.row.styles.fontSize*(e-2)/3);return!0}return!1}function ca(b,a,e){"undefined"!=typeof e.images&&a.each(function(){var a=c(this).children();if(c(this).is("img")){var m=da(this.src);e.images[m]={url:this.src,src:this.src}}"undefined"!=typeof a&&0<a.length&&ca(b,a,e)})}function ma(b,a){function e(b){if(b.url){var f=new Image;m=++c;f.crossOrigin="Anonymous";f.onerror=f.onload=function(){if(f.complete&&(0===f.src.indexOf("data:image/")&&(f.width=b.width||f.width||0,f.height=b.height||f.height||
  6049. 0),f.width+f.height)){var e=document.createElement("canvas"),l=e.getContext("2d");e.width=f.width;e.height=f.height;l.drawImage(f,0,0);b.src=e.toDataURL("image/jpeg")}--c||a(m)};f.src=b.url}}var f,m=0,c=0;if("undefined"!=typeof b.images)for(f in b.images)b.images.hasOwnProperty(f)&&e(b.images[f]);(f=c)||(a(m),f=void 0);return f}function ea(b,m,e){m.each(function(){var f=c(this).children();if(c(this).is("div")){var m=O(E(this,"background-color"),[255,255,255]),F=O(E(this,"border-top-color"),[0,0,0]),
  6050. l=P(this,"border-top-width",a.jspdf.unit),r=this.getBoundingClientRect(),d=this.offsetLeft*e.dw;var g=this.offsetTop*e.dh;var h=r.width*e.dw,r=r.height*e.dh;e.doc.setDrawColor.apply(void 0,F);e.doc.setFillColor.apply(void 0,m);e.doc.setLineWidth(l);e.doc.rect(b.x+d,b.y+g,h,r,l?"FD":"F")}else if(c(this).is("img")&&"undefined"!=typeof e.images&&(g=da(this.src),m=e.images[g],"undefined"!=typeof m)){F=b.width/b.height;l=this.width/this.height;d=b.width;h=b.height;r=19.049976/25.4;g=0;l<=F?(h=Math.min(b.height,
  6051. this.height),d=this.width*h/this.height):l>F&&(d=Math.min(b.width,this.width),h=this.height*d/this.width);d*=r;h*=r;h<b.height&&(g=(b.height-h)/2);try{e.doc.addImage(m.src,b.textPos.x,b.y+g,d,h)}catch(qa){}b.textPos.x+=d}"undefined"!=typeof f&&0<f.length&&ea(b,f,e)})}function fa(b,a,e){if("function"===typeof e.onAutotableText)e.onAutotableText(e.doc,b,a);else{var f=b.textPos.x,m=b.textPos.y,d={halign:b.styles.halign,valign:b.styles.valign};if(a.length){for(a=a[0];a.previousSibling;)a=a.previousSibling;
  6052. for(var l=!1,r=!1;a;){var g=a.innerText||a.textContent||"",g=(g.length&&" "==g[0]?" ":"")+c.trim(g)+(1<g.length&&" "==g[g.length-1]?" ":"");c(a).is("br")&&(f=b.textPos.x,m+=e.doc.internal.getFontSize());c(a).is("b")?l=!0:c(a).is("i")&&(r=!0);(l||r)&&e.doc.setFontType(l&&r?"bolditalic":l?"bold":"italic");var h=e.doc.getStringUnitWidth(g)*e.doc.internal.getFontSize();if(h){if("linebreak"===b.styles.overflow&&f>b.textPos.x&&f+h>b.textPos.x+b.width){if(0<=".,!%*;:=-".indexOf(g.charAt(0))){var k=g.charAt(0),
  6053. h=e.doc.getStringUnitWidth(k)*e.doc.internal.getFontSize();f+h<=b.textPos.x+b.width&&(e.doc.autoTableText(k,f,m,d),g=g.substring(1,g.length));h=e.doc.getStringUnitWidth(g)*e.doc.internal.getFontSize()}f=b.textPos.x;m+=e.doc.internal.getFontSize()}for(;g.length&&f+h>b.textPos.x+b.width;)g=g.substring(0,g.length-1),h=e.doc.getStringUnitWidth(g)*e.doc.internal.getFontSize();e.doc.autoTableText(g,f,m,d);f+=h}if(l||r)c(a).is("b")?l=!1:c(a).is("i")&&(r=!1),e.doc.setFontType(l||r?l?"bold":"italic":"normal");
  6054. a=a.nextSibling}b.textPos.x=f;b.textPos.y=m}else e.doc.autoTableText(b.text,b.textPos.x,b.textPos.y,d)}}function Q(b,a,e){return b.replace(new RegExp(a.replace(/([.*+?^=!:${}()|\[\]\/\\])/g,"\\$1"),"g"),e)}function U(b){b=Q(b||"0",a.numbers.html.thousandsSeparator,"");b=Q(b,a.numbers.html.decimalMark,".");return"number"===typeof b||!1!==jQuery.isNumeric(b)?b:!1}function v(b,m,e){var f="";if(null!==b){var z=c(b);if(z[0].hasAttribute("data-tableexport-value"))var d=z.data("tableexport-value");else if(d=
  6055. z.html(),"function"===typeof a.onCellHtmlData)d=a.onCellHtmlData(z,m,e,d);else if(""!=d){b=c.parseHTML(d);var l=0,g=0;d="";c.each(b,function(){if(c(this).is("input"))d+=z.find("input").eq(l++).val();else if(c(this).is("select"))d+=z.find("select option:selected").eq(g++).text();else if("undefined"===typeof c(this).html())d+=c(this).text();else if(void 0===jQuery().bootstrapTable||!0!==c(this).hasClass("filterControl"))d+=c(this).html()})}if(!0===a.htmlContent)f=c.trim(d);else if(""!=d){var h=d.replace(/\n/g,
  6056. "\u2028").replace(/<br\s*[\/]?>/gi,"\u2060");b=c("<div/>").html(h).contents();h="";c.each(b.text().split("\u2028"),function(b,a){0<b&&(h+=" ");h+=c.trim(a)});c.each(h.split("\u2060"),function(b,a){0<b&&(f+="\n");f+=c.trim(a).replace(/\u00AD/g,"")});if("json"==a.type||"excel"===a.type&&"xmlss"===a.excelFileFormat||!1===a.numbers.output)b=U(f),!1!==b&&(f=Number(b));else if(a.numbers.html.decimalMark!=a.numbers.output.decimalMark||a.numbers.html.thousandsSeparator!=a.numbers.output.thousandsSeparator)if(b=
  6057. U(f),!1!==b){var k=(""+b).split(".");1==k.length&&(k[1]="");var n=3<k[0].length?k[0].length%3:0,f=(0>b?"-":"")+(a.numbers.output.thousandsSeparator?(n?k[0].substr(0,n)+a.numbers.output.thousandsSeparator:"")+k[0].substr(n).replace(/(\d{3})(?=\d)/g,"$1"+a.numbers.output.thousandsSeparator):k[0])+(k[1].length?a.numbers.output.decimalMark+k[1]:"")}}!0===a.escape&&(f=escape(f));"function"===typeof a.onCellData&&(f=a.onCellData(z,m,e,f))}return f}function na(b,a,e){return a+"-"+e.toLowerCase()}function O(a,
  6058. m){var b=/^rgb\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})\)$/.exec(a),f=m;b&&(f=[parseInt(b[1]),parseInt(b[2]),parseInt(b[3])]);return f}function ga(b){var a=E(b,"text-align"),e=E(b,"font-weight"),f=E(b,"font-style"),d="";"start"==a&&(a="rtl"==E(b,"direction")?"right":"left");700<=e&&(d="bold");"italic"==f&&(d+=f);""===d&&(d="normal");a={style:{align:a,bcolor:O(E(b,"background-color"),[255,255,255]),color:O(E(b,"color"),[0,0,0]),fstyle:d},colspan:parseInt(c(b).attr("colspan"))||0,rowspan:parseInt(c(b).attr("rowspan"))||
  6059. 0};null!==b&&(b=b.getBoundingClientRect(),a.rect={width:b.width,height:b.height});return a}function E(a,c){try{return window.getComputedStyle?(c=c.replace(/([a-z])([A-Z])/,na),window.getComputedStyle(a,null).getPropertyValue(c)):a.currentStyle?a.currentStyle[c]:a.style[c]}catch(e){}return""}function P(a,c,e){c=E(a,c).match(/\d+/);if(null!==c){c=c[0];a=a.parentElement;var b=document.createElement("div");b.style.overflow="hidden";b.style.visibility="hidden";a.appendChild(b);b.style.width=100+e;e=100/
  6060. b.offsetWidth;a.removeChild(b);return c*e}return 0}function V(){if(!(this instanceof V))return new V;this.SheetNames=[];this.Sheets={}}function oa(a){for(var b=new ArrayBuffer(a.length),e=new Uint8Array(b),f=0;f!=a.length;++f)e[f]=a.charCodeAt(f)&255;return b}function pa(a){for(var b={},e={s:{c:1E7,r:1E7},e:{c:0,r:0}},f=0;f!=a.length;++f)for(var c=0;c!=a[f].length;++c){e.s.r>f&&(e.s.r=f);e.s.c>c&&(e.s.c=c);e.e.r<f&&(e.e.r=f);e.e.c<c&&(e.e.c=c);var d={v:a[f][c]};if(null!==d.v){var l=XLSX.utils.encode_cell({c:c,
  6061. r:f});if("number"===typeof d.v)d.t="n";else if("boolean"===typeof d.v)d.t="b";else if(d.v instanceof Date){d.t="n";d.z=XLSX.SSF._table[14];var g=d;var h=(Date.parse(d.v)-new Date(Date.UTC(1899,11,30)))/864E5;g.v=h}else d.t="s";b[l]=d}}1E7>e.s.c&&(b["!ref"]=XLSX.utils.encode_range(e));return b}function da(a){var b=0,c;if(0===a.length)return b;var f=0;for(c=a.length;f<c;f++){var d=a.charCodeAt(f);b=(b<<5)-b+d;b|=0}return b}function A(a,c,e){var b=window.navigator.userAgent;if(!1!==a&&(0<b.indexOf("MSIE ")||
  6062. b.match(/Trident.*rv\:11\./)))if(window.navigator.msSaveOrOpenBlob)window.navigator.msSaveOrOpenBlob(new Blob([e]),a);else{if(c=document.createElement("iframe"))document.body.appendChild(c),c.setAttribute("style","display:none"),c.contentDocument.open("txt/html","replace"),c.contentDocument.write(e),c.contentDocument.close(),c.focus(),c.contentDocument.execCommand("SaveAs",!0,a),document.body.removeChild(c)}else if(b=document.createElement("a")){var d=null;b.style.display="none";!1!==a?b.download=
  6063. a:b.target="_blank";"object"==typeof e?(d=window.URL.createObjectURL(e),b.href=d):0<=c.toLowerCase().indexOf("base64,")?b.href=c+D(e):b.href=c+encodeURIComponent(e);document.body.appendChild(b);if(document.createEvent)null===R&&(R=document.createEvent("MouseEvents")),R.initEvent("click",!0,!1),b.dispatchEvent(R);else if(document.createEventObject)b.fireEvent("onclick");else if("function"==typeof b.onclick)b.onclick();d&&window.URL.revokeObjectURL(d);document.body.removeChild(b)}}function D(a){var b=
  6064. "",c,f=0;a=a.replace(/\x0d\x0a/g,"\n");var d="";for(c=0;c<a.length;c++){var g=a.charCodeAt(c);128>g?d+=String.fromCharCode(g):(127<g&&2048>g?d+=String.fromCharCode(g>>6|192):(d+=String.fromCharCode(g>>12|224),d+=String.fromCharCode(g>>6&63|128)),d+=String.fromCharCode(g&63|128))}for(a=d;f<a.length;){var l=a.charCodeAt(f++);d=a.charCodeAt(f++);c=a.charCodeAt(f++);g=l>>2;l=(l&3)<<4|d>>4;var r=(d&15)<<2|c>>6;var h=c&63;isNaN(d)?r=h=64:isNaN(c)&&(h=64);b=b+"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(g)+
  6065. "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(l)+"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(r)+"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(h)}return b}var a={consoleLog:!1,csvEnclosure:'"',csvSeparator:",",csvUseBOM:!0,displayTableName:!1,escape:!1,excelFileFormat:"xlshtml",excelstyles:[],fileName:"tableExport",htmlContent:!1,ignoreColumn:[],ignoreRow:[],jsonScope:"all",jspdf:{orientation:"p",unit:"pt",format:"a4",
  6066. margins:{left:20,right:10,top:10,bottom:10},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:{onAfterAutotable:null,onBeforeAutotable:null,onAutotableText:null,onTable:null,outputImages:!0}}},numbers:{html:{decimalMark:".",thousandsSeparator:","},output:{decimalMark:".",
  6067. thousandsSeparator:","}},onCellData:null,onCellHtmlData:null,onMsoNumberFormat:null,outputMode:"file",pdfmake:{enabled:!1,docDefinition:{pageOrientation:"portrait",defaultStyle:{font:"Roboto"}},fonts:{}},tbodySelector:"tr",tfootSelector:"tr",theadSelector:"tr",tableName:"myTableName",type:"csv",worksheetName:"Worksheet"},t=this,R=null,q=[],g=[],p=0,y=[],h="",I=[];c.extend(!0,a,n);I=N(t);if("csv"==a.type||"tsv"==a.type||"txt"==a.type){var C="",J=0,p=0,W=function(b,d,e){b.each(function(){h="";x(this,
  6068. d,p,e+b.length,function(b,c,e){var f=h,d="";if(null!==b)if(b=v(b,c,e),c=null===b||""===b?"":b.toString(),"tsv"==a.type)b instanceof Date&&b.toLocaleString(),d=Q(c,"\t"," ");else if(b instanceof Date)d=a.csvEnclosure+b.toLocaleString()+a.csvEnclosure;else if(d=Q(c,a.csvEnclosure,a.csvEnclosure+a.csvEnclosure),0<=d.indexOf(a.csvSeparator)||/[\r\n ]/g.test(d))d=a.csvEnclosure+d+a.csvEnclosure;h=f+(d+("tsv"==a.type?"\t":a.csvSeparator))});h=c.trim(h).substring(0,h.length-1);0<h.length&&(0<C.length&&(C+=
  6069. "\n"),C+=h);p++});return b.length},J=J+W(c(t).find("thead").first().find(a.theadSelector),"th,td",J);c(t).find("tbody").each(function(){J+=W(c(this).find(a.tbodySelector),"td,th",J)});a.tfootSelector.length&&W(c(t).find("tfoot").first().find(a.tfootSelector),"td,th",J);C+="\n";!0===a.consoleLog&&console.log(C);if("string"===a.outputMode)return C;if("base64"===a.outputMode)return D(C);if("window"===a.outputMode){A(!1,"data:text/"+("csv"==a.type?"csv":"plain")+";charset=utf-8,",C);return}try{var w=
  6070. new Blob([C],{type:"text/"+("csv"==a.type?"csv":"plain")+";charset=utf-8"});saveAs(w,a.fileName+"."+a.type,"csv"!=a.type||!1===a.csvUseBOM)}catch(b){A(a.fileName+"."+a.type,"data:text/"+("csv"==a.type?"csv":"plain")+";charset=utf-8,"+("csv"==a.type&&a.csvUseBOM?"\ufeff":""),C)}}else if("sql"==a.type){var p=0,u="INSERT INTO `"+a.tableName+"` (",q=c(t).find("thead").first().find(a.theadSelector);q.each(function(){x(this,"th,td",p,q.length,function(a,c,e){u+="'"+v(a,c,e)+"',"});p++;u=c.trim(u);u=c.trim(u).substring(0,
  6071. u.length-1)});u+=") VALUES ";c(t).find("tbody").each(function(){g.push.apply(g,c(this).find(a.tbodySelector))});a.tfootSelector.length&&g.push.apply(g,c(t).find("tfoot").find(a.tfootSelector));c(g).each(function(){h="";x(this,"td,th",p,q.length+g.length,function(a,c,e){h+="'"+v(a,c,e)+"',"});3<h.length&&(u+="("+h,u=c.trim(u).substring(0,u.length-1),u+="),");p++});u=c.trim(u).substring(0,u.length-1);u+=";";!0===a.consoleLog&&console.log(u);if("string"===a.outputMode)return u;if("base64"===a.outputMode)return D(u);
  6072. try{w=new Blob([u],{type:"text/plain;charset=utf-8"}),saveAs(w,a.fileName+".sql")}catch(b){A(a.fileName+".sql","data:application/sql;charset=utf-8,",u)}}else if("json"==a.type){var K=[],q=c(t).find("thead").first().find(a.theadSelector);q.each(function(){var a=[];x(this,"th,td",p,q.length,function(b,c,f){a.push(v(b,c,f))});K.push(a)});var X=[];c(t).find("tbody").each(function(){g.push.apply(g,c(this).find(a.tbodySelector))});a.tfootSelector.length&&g.push.apply(g,c(t).find("tfoot").find(a.tfootSelector));
  6073. c(g).each(function(){var a={},d=0;x(this,"td,th",p,q.length+g.length,function(b,c,g){K.length?a[K[K.length-1][d]]=v(b,c,g):a[d]=v(b,c,g);d++});!1===c.isEmptyObject(a)&&X.push(a);p++});n="";n="head"==a.jsonScope?JSON.stringify(K):"data"==a.jsonScope?JSON.stringify(X):JSON.stringify({header:K,data:X});!0===a.consoleLog&&console.log(n);if("string"===a.outputMode)return n;if("base64"===a.outputMode)return D(n);try{w=new Blob([n],{type:"application/json;charset=utf-8"}),saveAs(w,a.fileName+".json")}catch(b){A(a.fileName+
  6074. ".json","data:application/json;charset=utf-8;base64,",n)}}else if("xml"===a.type){p=0;var B='<?xml version="1.0" encoding="utf-8"?>';B+="<tabledata><fields>";q=c(t).find("thead").first().find(a.theadSelector);q.each(function(){x(this,"th,td",p,q.length,function(a,c,e){B+="<field>"+v(a,c,e)+"</field>"});p++});B+="</fields><data>";var ha=1;c(t).find("tbody").each(function(){g.push.apply(g,c(this).find(a.tbodySelector))});a.tfootSelector.length&&g.push.apply(g,c(t).find("tfoot").find(a.tfootSelector));
  6075. c(g).each(function(){var a=1;h="";x(this,"td,th",p,q.length+g.length,function(b,c,f){h+="<column-"+a+">"+v(b,c,f)+"</column-"+a+">";a++});0<h.length&&"<column-1></column-1>"!=h&&(B+='<row id="'+ha+'">'+h+"</row>",ha++);p++});B+="</data></tabledata>";!0===a.consoleLog&&console.log(B);if("string"===a.outputMode)return B;if("base64"===a.outputMode)return D(B);try{w=new Blob([B],{type:"application/xml;charset=utf-8"}),saveAs(w,a.fileName+".xml")}catch(b){A(a.fileName+".xml","data:application/xml;charset=utf-8;base64,",
  6076. B)}}else if("excel"===a.type&&"xmlss"===a.excelFileFormat){var k=c(t).filter(function(){return"none"!=c(this).data("tableexport-display")&&(c(this).is(":visible")||"always"==c(this).data("tableexport-display"))});var Y=[];k.each(function(){var b=c(this),d="";p=0;I=N(this);q=b.find("thead").first().find(a.theadSelector);var d=d+"<Table>",e=0;q.each(function(){h="";x(this,"th,td",p,q.length,function(a,b,c){null!==a&&(h+='<Cell><Data ss:Type="String">'+v(a,b,c)+"</Data></Cell>",e++)});0<h.length&&(d+=
  6077. "<Row>"+h+"</Row>");p++});g=[];b.find("tbody").each(function(){g.push.apply(g,c(this).find(a.tbodySelector))});c(g).each(function(){c(this);h="";x(this,"td,th",p,q.length+g.length,function(a,b,c){if(null!==a){var d="String",e="";a=v(a,b,c);!1!==jQuery.isNumeric(a)?d="Number":(b=a,-1<b.indexOf("%")?(b=U(b.replace(/%/g,"")),!1!==b&&(b/=100)):b=!1,number=b,!1!==number&&(a=number,d="Number",e=' ss:StyleID="pct1"'));"Number"!==d&&(a=a.replace(/\n/g,"<br>"));h+="<Cell"+e+'><Data ss:Type="'+d+'">'+a+"</Data></Cell>"}});
  6078. 0<h.length&&(d+="<Row>"+h+"</Row>");p++});d+="</Table>";Y.push(d);!0===a.consoleLog&&console.log(d)});k='<?xml version="1.0" encoding="UTF-8"?><?mso-application progid="Excel.Sheet"?> <Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:html="http://www.w3.org/TR/REC-html40"> <DocumentProperties xmlns="urn:schemas-microsoft-com:office:office"> <Created>'+
  6079. (new Date).toISOString()+'</Created> </DocumentProperties> <OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office"> <AllowPNG/> </OfficeDocumentSettings> <ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel"> <WindowHeight>9000</WindowHeight> <WindowWidth>13860</WindowWidth> <WindowTopX>0</WindowTopX> <WindowTopY>0</WindowTopY> <ProtectStructure>False</ProtectStructure> <ProtectWindows>False</ProtectWindows> </ExcelWorkbook> <Styles> <Style ss:ID="Default" ss:Name="Default"> <Alignment ss:Vertical="Center"/> <Borders/> <Font/> <Interior/> <NumberFormat/> <Protection/> </Style> <Style ss:ID="Normal" ss:Name="Normal"/> <Style ss:ID="pct1"> <NumberFormat ss:Format="Percent"/> </Style> </Styles>';
  6080. for(n=0;n<Y.length;n++)k+='<Worksheet ss:Name="'+("string"===typeof a.worksheetName?a.worksheetName+" "+(n+1):"undefined"!==typeof a.worksheetName[n]?a.worksheetName[n]:"Table "+(n+1))+'">'+Y[n]+"<WorksheetOptions/> </Worksheet>";k+="</Workbook>";!0===a.consoleLog&&console.log(k);if("string"===a.outputMode)return k;if("base64"===a.outputMode)return D(k);try{w=new Blob([k],{type:"application/xml;charset=utf-8"}),saveAs(w,a.fileName+".xml")}catch(b){A(a.fileName+".xml","data:application/xml;charset=utf-8;base64,",
  6081. B)}}else if("excel"==a.type||"xls"==a.type||"word"==a.type||"doc"==a.type){n="excel"==a.type||"xls"==a.type?"excel":"word";var G="excel"==n?"xls":"doc",S='xmlns:x="urn:schemas-microsoft-com:office:'+n+'"';k=c(t).filter(function(){return"none"!=c(this).data("tableexport-display")&&(c(this).is(":visible")||"always"==c(this).data("tableexport-display"))});var H="";k.each(function(){var b=c(this);p=0;I=N(this);H+="<table><thead>";q=b.find("thead").first().find(a.theadSelector);q.each(function(){h="";
  6082. x(this,"th,td",p,q.length,function(b,d,f){if(null!==b){var e="";h+="<th";for(var g in a.excelstyles)if(a.excelstyles.hasOwnProperty(g)){var l=c(b).css(a.excelstyles[g]);""!==l&&"0px none rgb(0, 0, 0)"!=l&&"rgba(0, 0, 0, 0)"!=l&&(e+=""===e?'style="':";",e+=a.excelstyles[g]+":"+l)}""!==e&&(h+=" "+e+'"');c(b).is("[colspan]")&&(h+=' colspan="'+c(b).attr("colspan")+'"');c(b).is("[rowspan]")&&(h+=' rowspan="'+c(b).attr("rowspan")+'"');h+=">"+v(b,d,f)+"</th>"}});0<h.length&&(H+="<tr>"+h+"</tr>");p++});H+=
  6083. "</thead><tbody>";b.find("tbody").each(function(){g.push.apply(g,c(this).find(a.tbodySelector))});a.tfootSelector.length&&g.push.apply(g,b.find("tfoot").find(a.tfootSelector));c(g).each(function(){var b=c(this);h="";x(this,"td,th",p,q.length+g.length,function(d,f,g){if(null!==d){var e="",l=c(d).data("tableexport-msonumberformat");"undefined"==typeof l&&"function"===typeof a.onMsoNumberFormat&&(l=a.onMsoNumberFormat(d,f,g));"undefined"!=typeof l&&""!==l&&(e="style=\"mso-number-format:'"+l+"'");for(var m in a.excelstyles)a.excelstyles.hasOwnProperty(m)&&
  6084. (l=c(d).css(a.excelstyles[m]),""===l&&(l=b.css(a.excelstyles[m])),""!==l&&"0px none rgb(0, 0, 0)"!=l&&"rgba(0, 0, 0, 0)"!=l&&(e+=""===e?'style="':";",e+=a.excelstyles[m]+":"+l));h+="<td";""!==e&&(h+=" "+e+'"');c(d).is("[colspan]")&&(h+=' colspan="'+c(d).attr("colspan")+'"');c(d).is("[rowspan]")&&(h+=' rowspan="'+c(d).attr("rowspan")+'"');h+=">"+v(d,f,g).replace(/\n/g,"<br>")+"</td>"}});0<h.length&&(H+="<tr>"+h+"</tr>");p++});a.displayTableName&&(H+="<tr><td></td></tr><tr><td></td></tr><tr><td>"+v(c("<p>"+
  6085. a.tableName+"</p>"))+"</td></tr>");H+="</tbody></table>";!0===a.consoleLog&&console.log(H)});k='<html xmlns:o="urn:schemas-microsoft-com:office:office" '+S+' xmlns="http://www.w3.org/TR/REC-html40">'+('<meta http-equiv="content-type" content="application/vnd.ms-'+n+'; charset=UTF-8">')+"<head>";"excel"===n&&(k+="\x3c!--[if gte mso 9]>",k+="<xml>",k+="<x:ExcelWorkbook>",k+="<x:ExcelWorksheets>",k+="<x:ExcelWorksheet>",k+="<x:Name>",k+=a.worksheetName,k+="</x:Name>",k+="<x:WorksheetOptions>",k+="<x:DisplayGridlines/>",
  6086. k+="</x:WorksheetOptions>",k+="</x:ExcelWorksheet>",k+="</x:ExcelWorksheets>",k+="</x:ExcelWorkbook>",k+="</xml>",k+="<![endif]--\x3e");k+="<style>br {mso-data-placement:same-cell;}</style>";k+="</head>";k+="<body>";k+=H;k+="</body>";k+="</html>";!0===a.consoleLog&&console.log(k);if("string"===a.outputMode)return k;if("base64"===a.outputMode)return D(k);try{w=new Blob([k],{type:"application/vnd.ms-"+a.type}),saveAs(w,a.fileName+"."+G)}catch(b){A(a.fileName+"."+G,"data:application/vnd.ms-"+n+";base64,",
  6087. k)}}else if("xlsx"==a.type){var ia=[],Z=[],p=0,g=c(t).find("thead").first().find(a.theadSelector);c(t).find("tbody").each(function(){g.push.apply(g,c(this).find(a.tbodySelector))});a.tfootSelector.length&&g.push.apply(g,c(t).find("tfoot").find(a.tfootSelector));c(g).each(function(){var a=[];x(this,"th,td",p,g.length,function(b,c,d){if("undefined"!==typeof b&&null!==b){var e=parseInt(b.getAttribute("colspan")),f=parseInt(b.getAttribute("rowspan"));b=v(b,c,d);""!==b&&b==+b&&(b=+b);Z.forEach(function(b){if(p>=
  6088. b.s.r&&p<=b.e.r&&a.length>=b.s.c&&a.length<=b.e.c)for(var c=0;c<=b.e.c-b.s.c;++c)a.push(null)});if(f||e)e=e||1,Z.push({s:{r:p,c:a.length},e:{r:p+(f||1)-1,c:a.length+e-1}});a.push(""!==b?b:null);if(e)for(f=0;f<e-1;++f)a.push(null)}});ia.push(a);p++});n=new V;G=pa(ia);G["!merges"]=Z;n.SheetNames.push(a.worksheetName);n.Sheets[a.worksheetName]=G;n=XLSX.write(n,{bookType:a.type,bookSST:!1,type:"binary"});try{w=new Blob([oa(n)],{type:"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8"}),
  6089. saveAs(w,a.fileName+"."+a.type)}catch(b){A(a.fileName+"."+a.type,"data:application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8,",w)}}else if("png"==a.type)html2canvas(c(t)[0]).then(function(b){b=b.toDataURL();for(var c=atob(b.substring(22)),d=new ArrayBuffer(c.length),f=new Uint8Array(d),g=0;g<c.length;g++)f[g]=c.charCodeAt(g);!0===a.consoleLog&&console.log(c);if("string"===a.outputMode)return c;if("base64"===a.outputMode)return D(b);if("window"===a.outputMode)window.open(b);
  6090. else try{w=new Blob([d],{type:"image/png"}),saveAs(w,a.fileName+".png")}catch(F){A(a.fileName+".png","data:image/png,",w)}});else if("pdf"==a.type)if(!0===a.pdfmake.enabled){n=[];var ja=[],p=0,G=function(a,d,e){var b=0;c(a).each(function(){var a=[];x(this,d,p,e,function(b,c,d){if("undefined"!==typeof b&&null!==b){var e=parseInt(b.getAttribute("colspan")),f=parseInt(b.getAttribute("rowspan"));b=v(b,c,d)||" ";1<e||1<f?a.push({colSpan:e||1,rowSpan:f||1,text:b}):a.push(b)}else a.push(" ")});a.length&&
  6091. ja.push(a);b<a.length&&(b=a.length);p++});return b},q=c(this).find("thead").first().find(a.theadSelector);k=G(q,"th,td",q.length);for(S=n.length;S<k;S++)n.push("*");c(this).find("tbody").each(function(){g.push.apply(g,c(this).find(a.tbodySelector))});a.tfootSelector.length&&g.push.apply(g,c(this).find("tfoot").find(a.tfootSelector));G(g,"th,td",q.length+g.length);n={content:[{table:{headerRows:q.length,widths:n,body:ja}}]};c.extend(!0,n,a.pdfmake.docDefinition);pdfMake.fonts={Roboto:{normal:"Roboto-Regular.ttf",
  6092. bold:"Roboto-Medium.ttf",italics:"Roboto-Italic.ttf",bolditalics:"Roboto-MediumItalic.ttf"}};c.extend(!0,pdfMake.fonts,a.pdfmake.fonts);pdfMake.createPdf(n).getBuffer(function(b){try{var c=new Blob([b],{type:"application/pdf"});saveAs(c,a.fileName+".pdf")}catch(e){A(a.fileName+".pdf","data:application/pdf;base64,",b)}})}else if(!1===a.jspdf.autotable){n={dim:{w:P(c(t).first().get(0),"width","mm"),h:P(c(t).first().get(0),"height","mm")},pagesplit:!1};var ka=new jsPDF(a.jspdf.orientation,a.jspdf.unit,
  6093. a.jspdf.format);ka.addHTML(c(t).first(),a.jspdf.margins.left,a.jspdf.margins.top,n,function(){aa(ka,!1)})}else{var d=a.jspdf.autotable.tableExport;if("string"===typeof a.jspdf.format&&"bestfit"===a.jspdf.format.toLowerCase()){var L={a0:[2383.94,3370.39],a1:[1683.78,2383.94],a2:[1190.55,1683.78],a3:[841.89,1190.55],a4:[595.28,841.89]},T="",M="",la=0;c(t).filter(":visible").each(function(){if("none"!=c(this).css("display")){var a=P(c(this).get(0),"width","pt");if(a>la){a>L.a0[0]&&(T="a0",M="l");for(var d in L)L.hasOwnProperty(d)&&
  6094. L[d][1]>a&&(T=d,M="l",L[d][0]>a&&(M="p"));la=a}}});a.jspdf.format=""===T?"a4":T;a.jspdf.orientation=""===M?"w":M}d.doc=new jsPDF(a.jspdf.orientation,a.jspdf.unit,a.jspdf.format);!0===d.outputImages&&(d.images={});"undefined"!=typeof d.images&&(c(t).filter(function(){return"none"!=c(this).data("tableexport-display")&&(c(this).is(":visible")||"always"==c(this).data("tableexport-display"))}).each(function(){var b=0;q=c(this).find("thead").find(a.theadSelector);c(this).find("tbody").each(function(){g.push.apply(g,
  6095. c(this).find(a.tbodySelector))});a.tfootSelector.length&&g.push.apply(g,c(this).find("tfoot").find(a.tfootSelector));c(g).each(function(){x(this,"td,th",q.length+b,q.length+g.length,function(a,b,f){"undefined"!==typeof a&&null!==a&&(b=c(a).children(),"undefined"!=typeof b&&0<b.length&&ca(a,b,d))});b++})}),q=[],g=[]);ma(d,function(b){c(t).filter(function(){return"none"!=c(this).data("tableexport-display")&&(c(this).is(":visible")||"always"==c(this).data("tableexport-display"))}).each(function(){var b,
  6096. e=0;I=N(this);d.columns=[];d.rows=[];d.rowoptions={};if("function"===typeof d.onTable&&!1===d.onTable(c(this),a))return!0;a.jspdf.autotable.tableExport=null;var f=c.extend(!0,{},a.jspdf.autotable);a.jspdf.autotable.tableExport=d;f.margin={};c.extend(!0,f.margin,a.jspdf.margins);f.tableExport=d;"function"!==typeof f.beforePageContent&&(f.beforePageContent=function(a){1==a.pageCount&&a.table.rows.concat(a.table.headerRow).forEach(function(b){0<b.height&&(b.height+=(2-1.15)/2*b.styles.fontSize,a.table.height+=
  6097. (2-1.15)/2*b.styles.fontSize)})});"function"!==typeof f.createdHeaderCell&&(f.createdHeaderCell=function(a,b){a.styles=c.extend({},b.row.styles);if("undefined"!=typeof d.columns[b.column.dataKey]){var e=d.columns[b.column.dataKey];if("undefined"!=typeof e.rect){a.contentWidth=e.rect.width;if("undefined"==typeof d.heightRatio||0===d.heightRatio){var g=b.row.raw[b.column.dataKey].rowspan?b.row.raw[b.column.dataKey].rect.height/b.row.raw[b.column.dataKey].rowspan:b.row.raw[b.column.dataKey].rect.height;
  6098. d.heightRatio=a.styles.rowHeight/g}g=b.row.raw[b.column.dataKey].rect.height*d.heightRatio;g>a.styles.rowHeight&&(a.styles.rowHeight=g)}"undefined"!=typeof e.style&&!0!==e.style.hidden&&(a.styles.halign=e.style.align,"inherit"===f.styles.fillColor&&(a.styles.fillColor=e.style.bcolor),"inherit"===f.styles.textColor&&(a.styles.textColor=e.style.color),"inherit"===f.styles.fontStyle&&(a.styles.fontStyle=e.style.fstyle))}});"function"!==typeof f.createdCell&&(f.createdCell=function(a,b){var c=d.rowoptions[b.row.index+
  6099. ":"+b.column.dataKey];"undefined"!=typeof c&&"undefined"!=typeof c.style&&!0!==c.style.hidden&&(a.styles.halign=c.style.align,"inherit"===f.styles.fillColor&&(a.styles.fillColor=c.style.bcolor),"inherit"===f.styles.textColor&&(a.styles.textColor=c.style.color),"inherit"===f.styles.fontStyle&&(a.styles.fontStyle=c.style.fstyle))});"function"!==typeof f.drawHeaderCell&&(f.drawHeaderCell=function(a,b){var c=d.columns[b.column.dataKey];return(!0!==c.style.hasOwnProperty("hidden")||!0!==c.style.hidden)&&
  6100. 0<=c.rowIndex?ba(a,b,c):!1});"function"!==typeof f.drawCell&&(f.drawCell=function(a,b){var c=d.rowoptions[b.row.index+":"+b.column.dataKey];if(ba(a,b,c))if(d.doc.rect(a.x,a.y,a.width,a.height,a.styles.fillStyle),"undefined"!=typeof c&&"undefined"!=typeof c.kids&&0<c.kids.length){var e=a.height/c.rect.height;if(e>d.dh||"undefined"==typeof d.dh)d.dh=e;d.dw=a.width/c.rect.width;e=a.textPos.y;ea(a,c.kids,d);a.textPos.y=e;fa(a,c.kids,d)}else fa(a,{},d);return!1});d.headerrows=[];q=c(this).find("thead").find(a.theadSelector);
  6101. q.each(function(){b=0;d.headerrows[e]=[];x(this,"th,td",e,q.length,function(a,c,f){var g=ga(a);g.title=v(a,c,f);g.key=b++;g.rowIndex=e;d.headerrows[e].push(g)});e++});if(0<e)for(var h=e-1;0<=h;)c.each(d.headerrows[h],function(){var a=this;0<h&&null===this.rect&&(a=d.headerrows[h-1][this.key]);null!==a&&0<=a.rowIndex&&(!0!==a.style.hasOwnProperty("hidden")||!0!==a.style.hidden)&&d.columns.push(a)}),h=0<d.columns.length?-1:h-1;var k=0;g=[];c(this).find("tbody").each(function(){g.push.apply(g,c(this).find(a.tbodySelector))});
  6102. a.tfootSelector.length&&g.push.apply(g,c(this).find("tfoot").find(a.tfootSelector));c(g).each(function(){var a=[];b=0;x(this,"td,th",e,q.length+g.length,function(e,f,g){if("undefined"===typeof d.columns[b]){var h={title:"",key:b,style:{hidden:!0}};d.columns.push(h)}"undefined"!==typeof e&&null!==e?(h=ga(e),h.kids=c(e).children()):(h=c.extend(!0,{},d.rowoptions[k+":"+(b-1)]),h.colspan=-1);d.rowoptions[k+":"+b++]=h;a.push(v(e,f,g))});a.length&&(d.rows.push(a),k++);e++});if("function"===typeof d.onBeforeAutotable)d.onBeforeAutotable(c(this),
  6103. d.columns,d.rows,f);d.doc.autoTable(d.columns,d.rows,f);if("function"===typeof d.onAfterAutotable)d.onAfterAutotable(c(this),f);a.jspdf.autotable.startY=d.doc.autoTableEndPosY()+f.margin.top});aa(d.doc,"undefined"!=typeof d.images&&!1===jQuery.isEmptyObject(d.images));"undefined"!=typeof d.headerrows&&(d.headerrows.length=0);"undefined"!=typeof d.columns&&(d.columns.length=0);"undefined"!=typeof d.rows&&(d.rows.length=0);delete d.doc;d.doc=null})}return this}})})(jQuery);
  6104. define("tableexport", ["jquery"], (function (global) {
  6105. return function () {
  6106. var ret, fn;
  6107. return ret || global.$.fn.extend;
  6108. };
  6109. }(this)));
  6110. /*
  6111. * bootstrap-table - v1.11.1 - 2017-02-22
  6112. * https://github.com/wenzhixin/bootstrap-table
  6113. * Copyright (c) 2017 zhixin wen
  6114. * Licensed MIT License
  6115. */
  6116. !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);
  6117. define("bootstrap-table-export", ["bootstrap-table","tableexport"], (function (global) {
  6118. return function () {
  6119. var ret, fn;
  6120. return ret || global.$.fn.bootstrapTable.defaults;
  6121. };
  6122. }(this)));
  6123. //! moment.js locale configuration
  6124. //! locale : Chinese (China) [zh-cn]
  6125. //! author : suupic : https://github.com/suupic
  6126. //! author : Zeno Zeng : https://github.com/zenozeng
  6127. ;(function (global, factory) {
  6128. typeof exports === 'object' && typeof module !== 'undefined'
  6129. && typeof require === 'function' ? factory(require('../moment')) :
  6130. typeof define === 'function' && define.amd ? define('moment/locale/zh-cn',['../moment'], factory) :
  6131. factory(global.moment)
  6132. }(this, (function (moment) { 'use strict';
  6133. var zhCn = moment.defineLocale('zh-cn', {
  6134. months : '一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月'.split('_'),
  6135. monthsShort : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),
  6136. weekdays : '星期日_星期一_星期二_星期三_星期四_星期五_星期六'.split('_'),
  6137. weekdaysShort : '周日_周一_周二_周三_周四_周五_周六'.split('_'),
  6138. weekdaysMin : '日_一_二_三_四_五_六'.split('_'),
  6139. longDateFormat : {
  6140. LT : 'HH:mm',
  6141. LTS : 'HH:mm:ss',
  6142. L : 'YYYY年MMMD日',
  6143. LL : 'YYYY年MMMD日',
  6144. LLL : 'YYYY年MMMD日Ah点mm分',
  6145. LLLL : 'YYYY年MMMD日ddddAh点mm分',
  6146. l : 'YYYY年MMMD日',
  6147. ll : 'YYYY年MMMD日',
  6148. lll : 'YYYY年MMMD日 HH:mm',
  6149. llll : 'YYYY年MMMD日dddd HH:mm'
  6150. },
  6151. meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,
  6152. meridiemHour: function (hour, meridiem) {
  6153. if (hour === 12) {
  6154. hour = 0;
  6155. }
  6156. if (meridiem === '凌晨' || meridiem === '早上' ||
  6157. meridiem === '上午') {
  6158. return hour;
  6159. } else if (meridiem === '下午' || meridiem === '晚上') {
  6160. return hour + 12;
  6161. } else {
  6162. // '中午'
  6163. return hour >= 11 ? hour : hour + 12;
  6164. }
  6165. },
  6166. meridiem : function (hour, minute, isLower) {
  6167. var hm = hour * 100 + minute;
  6168. if (hm < 600) {
  6169. return '凌晨';
  6170. } else if (hm < 900) {
  6171. return '早上';
  6172. } else if (hm < 1130) {
  6173. return '上午';
  6174. } else if (hm < 1230) {
  6175. return '中午';
  6176. } else if (hm < 1800) {
  6177. return '下午';
  6178. } else {
  6179. return '晚上';
  6180. }
  6181. },
  6182. calendar : {
  6183. sameDay : '[今天]LT',
  6184. nextDay : '[明天]LT',
  6185. nextWeek : '[下]ddddLT',
  6186. lastDay : '[昨天]LT',
  6187. lastWeek : '[上]ddddLT',
  6188. sameElse : 'L'
  6189. },
  6190. dayOfMonthOrdinalParse: /\d{1,2}(日|月|周)/,
  6191. ordinal : function (number, period) {
  6192. switch (period) {
  6193. case 'd':
  6194. case 'D':
  6195. case 'DDD':
  6196. return number + '日';
  6197. case 'M':
  6198. return number + '月';
  6199. case 'w':
  6200. case 'W':
  6201. return number + '周';
  6202. default:
  6203. return number;
  6204. }
  6205. },
  6206. relativeTime : {
  6207. future : '%s内',
  6208. past : '%s前',
  6209. s : '几秒',
  6210. m : '1 分钟',
  6211. mm : '%d 分钟',
  6212. h : '1 小时',
  6213. hh : '%d 小时',
  6214. d : '1 天',
  6215. dd : '%d 天',
  6216. M : '1 个月',
  6217. MM : '%d 个月',
  6218. y : '1 年',
  6219. yy : '%d 年'
  6220. },
  6221. week : {
  6222. // GB/T 7408-1994《数据元和交换格式·信息交换·日期和时间表示法》与ISO 8601:1988等效
  6223. dow : 1, // Monday is the first day of the week.
  6224. doy : 4 // The week that contains Jan 4th is the first week of the year.
  6225. }
  6226. });
  6227. return zhCn;
  6228. })));
  6229. !function(a){"use strict";if("function"==typeof define&&define.amd)define('bootstrap-datetimepicker',["jquery","moment"],a);else if("object"==typeof exports)module.exports=a(require("jquery"),require("moment"));else{if("undefined"==typeof jQuery)throw"bootstrap-datetimepicker requires jQuery to be loaded first";if("undefined"==typeof moment)throw"bootstrap-datetimepicker requires Moment.js to be loaded first";a(jQuery,moment)}}(function(a,b){"use strict";if(!b)throw new Error("bootstrap-datetimepicker requires Moment.js to be loaded first");var c=function(c,d){var e,f,g,h,i,j,k,l={},m=!0,n=!1,o=!1,p=0,q=[{clsName:"days",navFnc:"M",navStep:1},{clsName:"months",navFnc:"y",navStep:1},{clsName:"years",navFnc:"y",navStep:10},{clsName:"decades",navFnc:"y",navStep:100}],r=["days","months","years","decades"],s=["top","bottom","auto"],t=["left","right","auto"],u=["default","top","bottom"],v={up:38,38:"up",down:40,40:"down",left:37,37:"left",right:39,39:"right",tab:9,9:"tab",escape:27,27:"escape",enter:13,13:"enter",pageUp:33,33:"pageUp",pageDown:34,34:"pageDown",shift:16,16:"shift",control:17,17:"control",space:32,32:"space",t:84,84:"t",delete:46,46:"delete"},w={},x=function(){return void 0!==b.tz&&void 0!==d.timeZone&&null!==d.timeZone&&""!==d.timeZone},y=function(a){var c;return c=void 0===a||null===a?b():b.isDate(a)||b.isMoment(a)?b(a):x()?b.tz(a,j,d.useStrict,d.timeZone):b(a,j,d.useStrict),x()&&c.tz(d.timeZone),c},z=function(a){if("string"!=typeof a||a.length>1)throw new TypeError("isEnabled expects a single character string parameter");switch(a){case"y":return i.indexOf("Y")!==-1;case"M":return i.indexOf("M")!==-1;case"d":return i.toLowerCase().indexOf("d")!==-1;case"h":case"H":return i.toLowerCase().indexOf("h")!==-1;case"m":return i.indexOf("m")!==-1;case"s":return i.indexOf("s")!==-1;default:return!1}},A=function(){return z("h")||z("m")||z("s")},B=function(){return z("y")||z("M")||z("d")},C=function(){var b=a("<thead>").append(a("<tr>").append(a("<th>").addClass("prev").attr("data-action","previous").append(a("<span>").addClass(d.icons.previous))).append(a("<th>").addClass("picker-switch").attr("data-action","pickerSwitch").attr("colspan",d.calendarWeeks?"6":"5")).append(a("<th>").addClass("next").attr("data-action","next").append(a("<span>").addClass(d.icons.next)))),c=a("<tbody>").append(a("<tr>").append(a("<td>").attr("colspan",d.calendarWeeks?"8":"7")));return[a("<div>").addClass("datepicker-days").append(a("<table>").addClass("table-condensed").append(b).append(a("<tbody>"))),a("<div>").addClass("datepicker-months").append(a("<table>").addClass("table-condensed").append(b.clone()).append(c.clone())),a("<div>").addClass("datepicker-years").append(a("<table>").addClass("table-condensed").append(b.clone()).append(c.clone())),a("<div>").addClass("datepicker-decades").append(a("<table>").addClass("table-condensed").append(b.clone()).append(c.clone()))]},D=function(){var b=a("<tr>"),c=a("<tr>"),e=a("<tr>");return z("h")&&(b.append(a("<td>").append(a("<a>").attr({href:"#",tabindex:"-1",title:d.tooltips.incrementHour}).addClass("btn").attr("data-action","incrementHours").append(a("<span>").addClass(d.icons.up)))),c.append(a("<td>").append(a("<span>").addClass("timepicker-hour").attr({"data-time-component":"hours",title:d.tooltips.pickHour}).attr("data-action","showHours"))),e.append(a("<td>").append(a("<a>").attr({href:"#",tabindex:"-1",title:d.tooltips.decrementHour}).addClass("btn").attr("data-action","decrementHours").append(a("<span>").addClass(d.icons.down))))),z("m")&&(z("h")&&(b.append(a("<td>").addClass("separator")),c.append(a("<td>").addClass("separator").html(":")),e.append(a("<td>").addClass("separator"))),b.append(a("<td>").append(a("<a>").attr({href:"#",tabindex:"-1",title:d.tooltips.incrementMinute}).addClass("btn").attr("data-action","incrementMinutes").append(a("<span>").addClass(d.icons.up)))),c.append(a("<td>").append(a("<span>").addClass("timepicker-minute").attr({"data-time-component":"minutes",title:d.tooltips.pickMinute}).attr("data-action","showMinutes"))),e.append(a("<td>").append(a("<a>").attr({href:"#",tabindex:"-1",title:d.tooltips.decrementMinute}).addClass("btn").attr("data-action","decrementMinutes").append(a("<span>").addClass(d.icons.down))))),z("s")&&(z("m")&&(b.append(a("<td>").addClass("separator")),c.append(a("<td>").addClass("separator").html(":")),e.append(a("<td>").addClass("separator"))),b.append(a("<td>").append(a("<a>").attr({href:"#",tabindex:"-1",title:d.tooltips.incrementSecond}).addClass("btn").attr("data-action","incrementSeconds").append(a("<span>").addClass(d.icons.up)))),c.append(a("<td>").append(a("<span>").addClass("timepicker-second").attr({"data-time-component":"seconds",title:d.tooltips.pickSecond}).attr("data-action","showSeconds"))),e.append(a("<td>").append(a("<a>").attr({href:"#",tabindex:"-1",title:d.tooltips.decrementSecond}).addClass("btn").attr("data-action","decrementSeconds").append(a("<span>").addClass(d.icons.down))))),h||(b.append(a("<td>").addClass("separator")),c.append(a("<td>").append(a("<button>").addClass("btn btn-primary").attr({"data-action":"togglePeriod",tabindex:"-1",title:d.tooltips.togglePeriod}))),e.append(a("<td>").addClass("separator"))),a("<div>").addClass("timepicker-picker").append(a("<table>").addClass("table-condensed").append([b,c,e]))},E=function(){var b=a("<div>").addClass("timepicker-hours").append(a("<table>").addClass("table-condensed")),c=a("<div>").addClass("timepicker-minutes").append(a("<table>").addClass("table-condensed")),d=a("<div>").addClass("timepicker-seconds").append(a("<table>").addClass("table-condensed")),e=[D()];return z("h")&&e.push(b),z("m")&&e.push(c),z("s")&&e.push(d),e},F=function(){var b=[];return d.showTodayButton&&b.push(a("<td>").append(a("<a>").attr({"data-action":"today",title:d.tooltips.today}).append(a("<span>").addClass(d.icons.today)))),!d.sideBySide&&B()&&A()&&b.push(a("<td>").append(a("<a>").attr({"data-action":"togglePicker",title:d.tooltips.selectTime}).append(a("<span>").addClass(d.icons.time)))),d.showClear&&b.push(a("<td>").append(a("<a>").attr({"data-action":"clear",title:d.tooltips.clear}).append(a("<span>").addClass(d.icons.clear)))),d.showClose&&b.push(a("<td>").append(a("<a>").attr({"data-action":"close",title:d.tooltips.close}).append(a("<span>").addClass(d.icons.close)))),a("<table>").addClass("table-condensed").append(a("<tbody>").append(a("<tr>").append(b)))},G=function(){var b=a("<div>").addClass("bootstrap-datetimepicker-widget dropdown-menu"),c=a("<div>").addClass("datepicker").append(C()),e=a("<div>").addClass("timepicker").append(E()),f=a("<ul>").addClass("list-unstyled"),g=a("<li>").addClass("picker-switch"+(d.collapse?" accordion-toggle":"")).append(F());return d.inline&&b.removeClass("dropdown-menu"),h&&b.addClass("usetwentyfour"),z("s")&&!h&&b.addClass("wider"),d.sideBySide&&B()&&A()?(b.addClass("timepicker-sbs"),"top"===d.toolbarPlacement&&b.append(g),b.append(a("<div>").addClass("row").append(c.addClass("col-md-6")).append(e.addClass("col-md-6"))),"bottom"===d.toolbarPlacement&&b.append(g),b):("top"===d.toolbarPlacement&&f.append(g),B()&&f.append(a("<li>").addClass(d.collapse&&A()?"collapse in":"").append(c)),"default"===d.toolbarPlacement&&f.append(g),A()&&f.append(a("<li>").addClass(d.collapse&&B()?"collapse":"").append(e)),"bottom"===d.toolbarPlacement&&f.append(g),b.append(f))},H=function(){var b,e={};return b=c.is("input")||d.inline?c.data():c.find("input").data(),b.dateOptions&&b.dateOptions instanceof Object&&(e=a.extend(!0,e,b.dateOptions)),a.each(d,function(a){var c="date"+a.charAt(0).toUpperCase()+a.slice(1);void 0!==b[c]&&(e[a]=b[c])}),e},I=function(){var b,e=(n||c).position(),f=(n||c).offset(),g=d.widgetPositioning.vertical,h=d.widgetPositioning.horizontal;if(d.widgetParent)b=d.widgetParent.append(o);else if(c.is("input"))b=c.after(o).parent();else{if(d.inline)return void(b=c.append(o));b=c,c.children().first().after(o)}if("auto"===g&&(g=f.top+1.5*o.height()>=a(window).height()+a(window).scrollTop()&&o.height()+c.outerHeight()<f.top?"top":"bottom"),"auto"===h&&(h=b.width()<f.left+o.outerWidth()/2&&f.left+o.outerWidth()>a(window).width()?"right":"left"),"top"===g?o.addClass("top").removeClass("bottom"):o.addClass("bottom").removeClass("top"),"right"===h?o.addClass("pull-right"):o.removeClass("pull-right"),"static"===b.css("position")&&(b=b.parents().filter(function(){return"static"!==a(this).css("position")}).first()),0===b.length)throw new Error("datetimepicker component should be placed within a non-static positioned container");o.css({top:"top"===g?"auto":e.top+c.outerHeight(),bottom:"top"===g?b.outerHeight()-(b===c?0:e.top):"auto",left:"left"===h?b===c?0:e.left:"auto",right:"left"===h?"auto":b.outerWidth()-c.outerWidth()-(b===c?0:e.left)})},J=function(a){"dp.change"===a.type&&(a.date&&a.date.isSame(a.oldDate)||!a.date&&!a.oldDate)||c.trigger(a)},K=function(a){"y"===a&&(a="YYYY"),J({type:"dp.update",change:a,viewDate:f.clone()})},L=function(a){o&&(a&&(k=Math.max(p,Math.min(3,k+a))),o.find(".datepicker > div").hide().filter(".datepicker-"+q[k].clsName).show())},M=function(){var b=a("<tr>"),c=f.clone().startOf("w").startOf("d");for(d.calendarWeeks===!0&&b.append(a("<th>").addClass("cw").text("#"));c.isBefore(f.clone().endOf("w"));)b.append(a("<th>").addClass("dow").text(c.format("dd"))),c.add(1,"d");o.find(".datepicker-days thead").append(b)},N=function(a){return d.disabledDates[a.format("YYYY-MM-DD")]===!0},O=function(a){return d.enabledDates[a.format("YYYY-MM-DD")]===!0},P=function(a){return d.disabledHours[a.format("H")]===!0},Q=function(a){return d.enabledHours[a.format("H")]===!0},R=function(b,c){if(!b.isValid())return!1;if(d.disabledDates&&"d"===c&&N(b))return!1;if(d.enabledDates&&"d"===c&&!O(b))return!1;if(d.minDate&&b.isBefore(d.minDate,c))return!1;if(d.maxDate&&b.isAfter(d.maxDate,c))return!1;if(d.daysOfWeekDisabled&&"d"===c&&d.daysOfWeekDisabled.indexOf(b.day())!==-1)return!1;if(d.disabledHours&&("h"===c||"m"===c||"s"===c)&&P(b))return!1;if(d.enabledHours&&("h"===c||"m"===c||"s"===c)&&!Q(b))return!1;if(d.disabledTimeIntervals&&("h"===c||"m"===c||"s"===c)){var e=!1;if(a.each(d.disabledTimeIntervals,function(){if(b.isBetween(this[0],this[1]))return e=!0,!1}),e)return!1}return!0},S=function(){for(var b=[],c=f.clone().startOf("y").startOf("d");c.isSame(f,"y");)b.push(a("<span>").attr("data-action","selectMonth").addClass("month").text(c.format("MMM"))),c.add(1,"M");o.find(".datepicker-months td").empty().append(b)},T=function(){var b=o.find(".datepicker-months"),c=b.find("th"),g=b.find("tbody").find("span");c.eq(0).find("span").attr("title",d.tooltips.prevYear),c.eq(1).attr("title",d.tooltips.selectYear),c.eq(2).find("span").attr("title",d.tooltips.nextYear),b.find(".disabled").removeClass("disabled"),R(f.clone().subtract(1,"y"),"y")||c.eq(0).addClass("disabled"),c.eq(1).text(f.year()),R(f.clone().add(1,"y"),"y")||c.eq(2).addClass("disabled"),g.removeClass("active"),e.isSame(f,"y")&&!m&&g.eq(e.month()).addClass("active"),g.each(function(b){R(f.clone().month(b),"M")||a(this).addClass("disabled")})},U=function(){var a=o.find(".datepicker-years"),b=a.find("th"),c=f.clone().subtract(5,"y"),g=f.clone().add(6,"y"),h="";for(b.eq(0).find("span").attr("title",d.tooltips.prevDecade),b.eq(1).attr("title",d.tooltips.selectDecade),b.eq(2).find("span").attr("title",d.tooltips.nextDecade),a.find(".disabled").removeClass("disabled"),d.minDate&&d.minDate.isAfter(c,"y")&&b.eq(0).addClass("disabled"),b.eq(1).text(c.year()+"-"+g.year()),d.maxDate&&d.maxDate.isBefore(g,"y")&&b.eq(2).addClass("disabled");!c.isAfter(g,"y");)h+='<span data-action="selectYear" class="year'+(c.isSame(e,"y")&&!m?" active":"")+(R(c,"y")?"":" disabled")+'">'+c.year()+"</span>",c.add(1,"y");a.find("td").html(h)},V=function(){var a,c=o.find(".datepicker-decades"),g=c.find("th"),h=b({y:f.year()-f.year()%100-1}),i=h.clone().add(100,"y"),j=h.clone(),k=!1,l=!1,m="";for(g.eq(0).find("span").attr("title",d.tooltips.prevCentury),g.eq(2).find("span").attr("title",d.tooltips.nextCentury),c.find(".disabled").removeClass("disabled"),(h.isSame(b({y:1900}))||d.minDate&&d.minDate.isAfter(h,"y"))&&g.eq(0).addClass("disabled"),g.eq(1).text(h.year()+"-"+i.year()),(h.isSame(b({y:2e3}))||d.maxDate&&d.maxDate.isBefore(i,"y"))&&g.eq(2).addClass("disabled");!h.isAfter(i,"y");)a=h.year()+12,k=d.minDate&&d.minDate.isAfter(h,"y")&&d.minDate.year()<=a,l=d.maxDate&&d.maxDate.isAfter(h,"y")&&d.maxDate.year()<=a,m+='<span data-action="selectDecade" class="decade'+(e.isAfter(h)&&e.year()<=a?" active":"")+(R(h,"y")||k||l?"":" disabled")+'" data-selection="'+(h.year()+6)+'">'+(h.year()+1)+" - "+(h.year()+12)+"</span>",h.add(12,"y");m+="<span></span><span></span><span></span>",c.find("td").html(m),g.eq(1).text(j.year()+1+"-"+h.year())},W=function(){var b,c,g,h=o.find(".datepicker-days"),i=h.find("th"),j=[],k=[];if(B()){for(i.eq(0).find("span").attr("title",d.tooltips.prevMonth),i.eq(1).attr("title",d.tooltips.selectMonth),i.eq(2).find("span").attr("title",d.tooltips.nextMonth),h.find(".disabled").removeClass("disabled"),i.eq(1).text(f.format(d.dayViewHeaderFormat)),R(f.clone().subtract(1,"M"),"M")||i.eq(0).addClass("disabled"),R(f.clone().add(1,"M"),"M")||i.eq(2).addClass("disabled"),b=f.clone().startOf("M").startOf("w").startOf("d"),g=0;g<42;g++)0===b.weekday()&&(c=a("<tr>"),d.calendarWeeks&&c.append('<td class="cw">'+b.week()+"</td>"),j.push(c)),k=["day"],b.isBefore(f,"M")&&k.push("old"),b.isAfter(f,"M")&&k.push("new"),b.isSame(e,"d")&&!m&&k.push("active"),R(b,"d")||k.push("disabled"),b.isSame(y(),"d")&&k.push("today"),0!==b.day()&&6!==b.day()||k.push("weekend"),J({type:"dp.classify",date:b,classNames:k}),c.append('<td data-action="selectDay" data-day="'+b.format("L")+'" class="'+k.join(" ")+'">'+b.date()+"</td>"),b.add(1,"d");h.find("tbody").empty().append(j),T(),U(),V()}},X=function(){var b=o.find(".timepicker-hours table"),c=f.clone().startOf("d"),d=[],e=a("<tr>");for(f.hour()>11&&!h&&c.hour(12);c.isSame(f,"d")&&(h||f.hour()<12&&c.hour()<12||f.hour()>11);)c.hour()%4===0&&(e=a("<tr>"),d.push(e)),e.append('<td data-action="selectHour" class="hour'+(R(c,"h")?"":" disabled")+'">'+c.format(h?"HH":"hh")+"</td>"),c.add(1,"h");b.empty().append(d)},Y=function(){for(var b=o.find(".timepicker-minutes table"),c=f.clone().startOf("h"),e=[],g=a("<tr>"),h=1===d.stepping?5:d.stepping;f.isSame(c,"h");)c.minute()%(4*h)===0&&(g=a("<tr>"),e.push(g)),g.append('<td data-action="selectMinute" class="minute'+(R(c,"m")?"":" disabled")+'">'+c.format("mm")+"</td>"),c.add(h,"m");b.empty().append(e)},Z=function(){for(var b=o.find(".timepicker-seconds table"),c=f.clone().startOf("m"),d=[],e=a("<tr>");f.isSame(c,"m");)c.second()%20===0&&(e=a("<tr>"),d.push(e)),e.append('<td data-action="selectSecond" class="second'+(R(c,"s")?"":" disabled")+'">'+c.format("ss")+"</td>"),c.add(5,"s");b.empty().append(d)},$=function(){var a,b,c=o.find(".timepicker span[data-time-component]");h||(a=o.find(".timepicker [data-action=togglePeriod]"),b=e.clone().add(e.hours()>=12?-12:12,"h"),a.text(e.format("A")),R(b,"h")?a.removeClass("disabled"):a.addClass("disabled")),c.filter("[data-time-component=hours]").text(e.format(h?"HH":"hh")),c.filter("[data-time-component=minutes]").text(e.format("mm")),c.filter("[data-time-component=seconds]").text(e.format("ss")),X(),Y(),Z()},_=function(){o&&(W(),$())},aa=function(a){var b=m?null:e;if(!a)return m=!0,g.val(""),c.data("date",""),J({type:"dp.change",date:!1,oldDate:b}),void _();if(a=a.clone().locale(d.locale),x()&&a.tz(d.timeZone),1!==d.stepping)for(a.minutes(Math.round(a.minutes()/d.stepping)*d.stepping).seconds(0);d.minDate&&a.isBefore(d.minDate);)a.add(d.stepping,"minutes");R(a)?(e=a,f=e.clone(),g.val(e.format(i)),c.data("date",e.format(i)),m=!1,_(),J({type:"dp.change",date:e.clone(),oldDate:b})):(d.keepInvalid?J({type:"dp.change",date:a,oldDate:b}):g.val(m?"":e.format(i)),J({type:"dp.error",date:a,oldDate:b}))},ba=function(){var b=!1;return o?(o.find(".collapse").each(function(){var c=a(this).data("collapse");return!c||!c.transitioning||(b=!0,!1)}),b?l:(n&&n.hasClass("btn")&&n.toggleClass("active"),o.hide(),a(window).off("resize",I),o.off("click","[data-action]"),o.off("mousedown",!1),o.remove(),o=!1,J({type:"dp.hide",date:e.clone()}),g.blur(),f=e.clone(),l)):l},ca=function(){aa(null)},da=function(a){return void 0===d.parseInputDate?(!b.isMoment(a)||a instanceof Date)&&(a=y(a)):a=d.parseInputDate(a),a},ea={next:function(){var a=q[k].navFnc;f.add(q[k].navStep,a),W(),K(a)},previous:function(){var a=q[k].navFnc;f.subtract(q[k].navStep,a),W(),K(a)},pickerSwitch:function(){L(1)},selectMonth:function(b){var c=a(b.target).closest("tbody").find("span").index(a(b.target));f.month(c),k===p?(aa(e.clone().year(f.year()).month(f.month())),d.inline||ba()):(L(-1),W()),K("M")},selectYear:function(b){var c=parseInt(a(b.target).text(),10)||0;f.year(c),k===p?(aa(e.clone().year(f.year())),d.inline||ba()):(L(-1),W()),K("YYYY")},selectDecade:function(b){var c=parseInt(a(b.target).data("selection"),10)||0;f.year(c),k===p?(aa(e.clone().year(f.year())),d.inline||ba()):(L(-1),W()),K("YYYY")},selectDay:function(b){var c=f.clone();a(b.target).is(".old")&&c.subtract(1,"M"),a(b.target).is(".new")&&c.add(1,"M"),aa(c.date(parseInt(a(b.target).text(),10))),A()||d.keepOpen||d.inline||ba()},incrementHours:function(){var a=e.clone().add(1,"h");R(a,"h")&&aa(a)},incrementMinutes:function(){var a=e.clone().add(d.stepping,"m");R(a,"m")&&aa(a)},incrementSeconds:function(){var a=e.clone().add(1,"s");R(a,"s")&&aa(a)},decrementHours:function(){var a=e.clone().subtract(1,"h");R(a,"h")&&aa(a)},decrementMinutes:function(){var a=e.clone().subtract(d.stepping,"m");R(a,"m")&&aa(a)},decrementSeconds:function(){var a=e.clone().subtract(1,"s");R(a,"s")&&aa(a)},togglePeriod:function(){aa(e.clone().add(e.hours()>=12?-12:12,"h"))},togglePicker:function(b){var c,e=a(b.target),f=e.closest("ul"),g=f.find(".in"),h=f.find(".collapse:not(.in)");if(g&&g.length){if(c=g.data("collapse"),c&&c.transitioning)return;g.collapse?(g.collapse("hide"),h.collapse("show")):(g.removeClass("in"),h.addClass("in")),e.is("span")?e.toggleClass(d.icons.time+" "+d.icons.date):e.find("span").toggleClass(d.icons.time+" "+d.icons.date)}},showPicker:function(){o.find(".timepicker > div:not(.timepicker-picker)").hide(),o.find(".timepicker .timepicker-picker").show()},showHours:function(){o.find(".timepicker .timepicker-picker").hide(),o.find(".timepicker .timepicker-hours").show()},showMinutes:function(){o.find(".timepicker .timepicker-picker").hide(),o.find(".timepicker .timepicker-minutes").show()},showSeconds:function(){o.find(".timepicker .timepicker-picker").hide(),o.find(".timepicker .timepicker-seconds").show()},selectHour:function(b){var c=parseInt(a(b.target).text(),10);h||(e.hours()>=12?12!==c&&(c+=12):12===c&&(c=0)),aa(e.clone().hours(c)),ea.showPicker.call(l)},selectMinute:function(b){aa(e.clone().minutes(parseInt(a(b.target).text(),10))),ea.showPicker.call(l)},selectSecond:function(b){aa(e.clone().seconds(parseInt(a(b.target).text(),10))),ea.showPicker.call(l)},clear:ca,today:function(){var a=y();R(a,"d")&&aa(a)},close:ba},fa=function(b){return!a(b.currentTarget).is(".disabled")&&(ea[a(b.currentTarget).data("action")].apply(l,arguments),!1)},ga=function(){var b,c={year:function(a){return a.month(0).date(1).hours(0).seconds(0).minutes(0)},month:function(a){return a.date(1).hours(0).seconds(0).minutes(0)},day:function(a){return a.hours(0).seconds(0).minutes(0)},hour:function(a){return a.seconds(0).minutes(0)},minute:function(a){return a.seconds(0)}};return g.prop("disabled")||!d.ignoreReadonly&&g.prop("readonly")||o?l:(void 0!==g.val()&&0!==g.val().trim().length?aa(da(g.val().trim())):m&&d.useCurrent&&(d.inline||g.is("input")&&0===g.val().trim().length)&&(b=y(),"string"==typeof d.useCurrent&&(b=c[d.useCurrent](b)),aa(b)),o=G(),M(),S(),o.find(".timepicker-hours").hide(),o.find(".timepicker-minutes").hide(),o.find(".timepicker-seconds").hide(),_(),L(),a(window).on("resize",I),o.on("click","[data-action]",fa),o.on("mousedown",!1),n&&n.hasClass("btn")&&n.toggleClass("active"),I(),o.show(),d.focusOnShow&&!g.is(":focus")&&g.focus(),J({type:"dp.show"}),l)},ha=function(){return o?ba():ga()},ia=function(a){var b,c,e,f,g=null,h=[],i={},j=a.which,k="p";w[j]=k;for(b in w)w.hasOwnProperty(b)&&w[b]===k&&(h.push(b),parseInt(b,10)!==j&&(i[b]=!0));for(b in d.keyBinds)if(d.keyBinds.hasOwnProperty(b)&&"function"==typeof d.keyBinds[b]&&(e=b.split(" "),e.length===h.length&&v[j]===e[e.length-1])){for(f=!0,c=e.length-2;c>=0;c--)if(!(v[e[c]]in i)){f=!1;break}if(f){g=d.keyBinds[b];break}}g&&(g.call(l,o),a.stopPropagation(),a.preventDefault())},ja=function(a){w[a.which]="r",a.stopPropagation(),a.preventDefault()},ka=function(b){var c=a(b.target).val().trim(),d=c?da(c):null;return aa(d),b.stopImmediatePropagation(),!1},la=function(){g.on({change:ka,blur:d.debug?"":ba,keydown:ia,keyup:ja,focus:d.allowInputToggle?ga:""}),c.is("input")?g.on({focus:ga}):n&&(n.on("click",ha),n.on("mousedown",!1))},ma=function(){g.off({change:ka,blur:blur,keydown:ia,keyup:ja,focus:d.allowInputToggle?ba:""}),c.is("input")?g.off({focus:ga}):n&&(n.off("click",ha),n.off("mousedown",!1))},na=function(b){var c={};return a.each(b,function(){var a=da(this);a.isValid()&&(c[a.format("YYYY-MM-DD")]=!0)}),!!Object.keys(c).length&&c},oa=function(b){var c={};return a.each(b,function(){c[this]=!0}),!!Object.keys(c).length&&c},pa=function(){var a=d.format||"L LT";i=a.replace(/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,function(a){var b=e.localeData().longDateFormat(a)||a;return b.replace(/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,function(a){return e.localeData().longDateFormat(a)||a})}),j=d.extraFormats?d.extraFormats.slice():[],j.indexOf(a)<0&&j.indexOf(i)<0&&j.push(i),h=i.toLowerCase().indexOf("a")<1&&i.replace(/\[.*?\]/g,"").indexOf("h")<1,z("y")&&(p=2),z("M")&&(p=1),z("d")&&(p=0),k=Math.max(p,k),m||aa(e)};if(l.destroy=function(){ba(),ma(),c.removeData("DateTimePicker"),c.removeData("date")},l.toggle=ha,l.show=ga,l.hide=ba,l.disable=function(){return ba(),n&&n.hasClass("btn")&&n.addClass("disabled"),g.prop("disabled",!0),l},l.enable=function(){return n&&n.hasClass("btn")&&n.removeClass("disabled"),g.prop("disabled",!1),l},l.ignoreReadonly=function(a){if(0===arguments.length)return d.ignoreReadonly;if("boolean"!=typeof a)throw new TypeError("ignoreReadonly () expects a boolean parameter");return d.ignoreReadonly=a,l},l.options=function(b){if(0===arguments.length)return a.extend(!0,{},d);if(!(b instanceof Object))throw new TypeError("options() options parameter should be an object");return a.extend(!0,d,b),a.each(d,function(a,b){if(void 0===l[a])throw new TypeError("option "+a+" is not recognized!");l[a](b)}),l},l.date=function(a){if(0===arguments.length)return m?null:e.clone();if(!(null===a||"string"==typeof a||b.isMoment(a)||a instanceof Date))throw new TypeError("date() parameter must be one of [null, string, moment or Date]");return aa(null===a?null:da(a)),l},l.format=function(a){if(0===arguments.length)return d.format;if("string"!=typeof a&&("boolean"!=typeof a||a!==!1))throw new TypeError("format() expects a string or boolean:false parameter "+a);return d.format=a,i&&pa(),l},l.timeZone=function(a){if(0===arguments.length)return d.timeZone;if("string"!=typeof a)throw new TypeError("newZone() expects a string parameter");return d.timeZone=a,l},l.dayViewHeaderFormat=function(a){if(0===arguments.length)return d.dayViewHeaderFormat;if("string"!=typeof a)throw new TypeError("dayViewHeaderFormat() expects a string parameter");return d.dayViewHeaderFormat=a,l},l.extraFormats=function(a){if(0===arguments.length)return d.extraFormats;if(a!==!1&&!(a instanceof Array))throw new TypeError("extraFormats() expects an array or false parameter");return d.extraFormats=a,j&&pa(),l},l.disabledDates=function(b){if(0===arguments.length)return d.disabledDates?a.extend({},d.disabledDates):d.disabledDates;if(!b)return d.disabledDates=!1,_(),l;if(!(b instanceof Array))throw new TypeError("disabledDates() expects an array parameter");return d.disabledDates=na(b),d.enabledDates=!1,_(),l},l.enabledDates=function(b){if(0===arguments.length)return d.enabledDates?a.extend({},d.enabledDates):d.enabledDates;if(!b)return d.enabledDates=!1,_(),l;if(!(b instanceof Array))throw new TypeError("enabledDates() expects an array parameter");return d.enabledDates=na(b),d.disabledDates=!1,_(),l},l.daysOfWeekDisabled=function(a){if(0===arguments.length)return d.daysOfWeekDisabled.splice(0);if("boolean"==typeof a&&!a)return d.daysOfWeekDisabled=!1,_(),l;if(!(a instanceof Array))throw new TypeError("daysOfWeekDisabled() expects an array parameter");if(d.daysOfWeekDisabled=a.reduce(function(a,b){return b=parseInt(b,10),b>6||b<0||isNaN(b)?a:(a.indexOf(b)===-1&&a.push(b),a)},[]).sort(),d.useCurrent&&!d.keepInvalid){for(var b=0;!R(e,"d");){if(e.add(1,"d"),31===b)throw"Tried 31 times to find a valid date";b++}aa(e)}return _(),l},l.maxDate=function(a){if(0===arguments.length)return d.maxDate?d.maxDate.clone():d.maxDate;if("boolean"==typeof a&&a===!1)return d.maxDate=!1,_(),l;"string"==typeof a&&("now"!==a&&"moment"!==a||(a=y()));var b=da(a);if(!b.isValid())throw new TypeError("maxDate() Could not parse date parameter: "+a);if(d.minDate&&b.isBefore(d.minDate))throw new TypeError("maxDate() date parameter is before options.minDate: "+b.format(i));return d.maxDate=b,d.useCurrent&&!d.keepInvalid&&e.isAfter(a)&&aa(d.maxDate),f.isAfter(b)&&(f=b.clone().subtract(d.stepping,"m")),_(),l},l.minDate=function(a){if(0===arguments.length)return d.minDate?d.minDate.clone():d.minDate;if("boolean"==typeof a&&a===!1)return d.minDate=!1,_(),l;"string"==typeof a&&("now"!==a&&"moment"!==a||(a=y()));var b=da(a);if(!b.isValid())throw new TypeError("minDate() Could not parse date parameter: "+a);if(d.maxDate&&b.isAfter(d.maxDate))throw new TypeError("minDate() date parameter is after options.maxDate: "+b.format(i));return d.minDate=b,d.useCurrent&&!d.keepInvalid&&e.isBefore(a)&&aa(d.minDate),f.isBefore(b)&&(f=b.clone().add(d.stepping,"m")),_(),l},l.defaultDate=function(a){if(0===arguments.length)return d.defaultDate?d.defaultDate.clone():d.defaultDate;if(!a)return d.defaultDate=!1,l;"string"==typeof a&&(a="now"===a||"moment"===a?y():y(a));var b=da(a);if(!b.isValid())throw new TypeError("defaultDate() Could not parse date parameter: "+a);if(!R(b))throw new TypeError("defaultDate() date passed is invalid according to component setup validations");return d.defaultDate=b,(d.defaultDate&&d.inline||""===g.val().trim())&&aa(d.defaultDate),l},l.locale=function(a){if(0===arguments.length)return d.locale;if(!b.localeData(a))throw new TypeError("locale() locale "+a+" is not loaded from moment locales!");return d.locale=a,e.locale(d.locale),f.locale(d.locale),i&&pa(),o&&(ba(),ga()),l},l.stepping=function(a){return 0===arguments.length?d.stepping:(a=parseInt(a,10),(isNaN(a)||a<1)&&(a=1),d.stepping=a,l)},l.useCurrent=function(a){var b=["year","month","day","hour","minute"];if(0===arguments.length)return d.useCurrent;if("boolean"!=typeof a&&"string"!=typeof a)throw new TypeError("useCurrent() expects a boolean or string parameter");if("string"==typeof a&&b.indexOf(a.toLowerCase())===-1)throw new TypeError("useCurrent() expects a string parameter of "+b.join(", "));return d.useCurrent=a,l},l.collapse=function(a){if(0===arguments.length)return d.collapse;if("boolean"!=typeof a)throw new TypeError("collapse() expects a boolean parameter");return d.collapse===a?l:(d.collapse=a,o&&(ba(),ga()),l)},l.icons=function(b){if(0===arguments.length)return a.extend({},d.icons);if(!(b instanceof Object))throw new TypeError("icons() expects parameter to be an Object");return a.extend(d.icons,b),o&&(ba(),ga()),l},l.tooltips=function(b){if(0===arguments.length)return a.extend({},d.tooltips);if(!(b instanceof Object))throw new TypeError("tooltips() expects parameter to be an Object");return a.extend(d.tooltips,b),o&&(ba(),ga()),l},l.useStrict=function(a){if(0===arguments.length)return d.useStrict;if("boolean"!=typeof a)throw new TypeError("useStrict() expects a boolean parameter");return d.useStrict=a,l},l.sideBySide=function(a){if(0===arguments.length)return d.sideBySide;if("boolean"!=typeof a)throw new TypeError("sideBySide() expects a boolean parameter");return d.sideBySide=a,o&&(ba(),ga()),l},l.viewMode=function(a){if(0===arguments.length)return d.viewMode;if("string"!=typeof a)throw new TypeError("viewMode() expects a string parameter");if(r.indexOf(a)===-1)throw new TypeError("viewMode() parameter must be one of ("+r.join(", ")+") value");return d.viewMode=a,k=Math.max(r.indexOf(a),p),L(),l},l.toolbarPlacement=function(a){if(0===arguments.length)return d.toolbarPlacement;if("string"!=typeof a)throw new TypeError("toolbarPlacement() expects a string parameter");if(u.indexOf(a)===-1)throw new TypeError("toolbarPlacement() parameter must be one of ("+u.join(", ")+") value");return d.toolbarPlacement=a,o&&(ba(),ga()),l},l.widgetPositioning=function(b){if(0===arguments.length)return a.extend({},d.widgetPositioning);if("[object Object]"!=={}.toString.call(b))throw new TypeError("widgetPositioning() expects an object variable");if(b.horizontal){if("string"!=typeof b.horizontal)throw new TypeError("widgetPositioning() horizontal variable must be a string");if(b.horizontal=b.horizontal.toLowerCase(),t.indexOf(b.horizontal)===-1)throw new TypeError("widgetPositioning() expects horizontal parameter to be one of ("+t.join(", ")+")");d.widgetPositioning.horizontal=b.horizontal}if(b.vertical){if("string"!=typeof b.vertical)throw new TypeError("widgetPositioning() vertical variable must be a string");if(b.vertical=b.vertical.toLowerCase(),s.indexOf(b.vertical)===-1)throw new TypeError("widgetPositioning() expects vertical parameter to be one of ("+s.join(", ")+")");d.widgetPositioning.vertical=b.vertical}return _(),l},l.calendarWeeks=function(a){if(0===arguments.length)return d.calendarWeeks;if("boolean"!=typeof a)throw new TypeError("calendarWeeks() expects parameter to be a boolean value");return d.calendarWeeks=a,_(),l},l.showTodayButton=function(a){if(0===arguments.length)return d.showTodayButton;if("boolean"!=typeof a)throw new TypeError("showTodayButton() expects a boolean parameter");return d.showTodayButton=a,o&&(ba(),ga()),l},l.showClear=function(a){if(0===arguments.length)return d.showClear;if("boolean"!=typeof a)throw new TypeError("showClear() expects a boolean parameter");return d.showClear=a,o&&(ba(),ga()),l},l.widgetParent=function(b){if(0===arguments.length)return d.widgetParent;if("string"==typeof b&&(b=a(b)),null!==b&&"string"!=typeof b&&!(b instanceof a))throw new TypeError("widgetParent() expects a string or a jQuery object parameter");return d.widgetParent=b,o&&(ba(),ga()),l},l.keepOpen=function(a){if(0===arguments.length)return d.keepOpen;if("boolean"!=typeof a)throw new TypeError("keepOpen() expects a boolean parameter");return d.keepOpen=a,l},l.focusOnShow=function(a){if(0===arguments.length)return d.focusOnShow;if("boolean"!=typeof a)throw new TypeError("focusOnShow() expects a boolean parameter");return d.focusOnShow=a,l},l.inline=function(a){if(0===arguments.length)return d.inline;if("boolean"!=typeof a)throw new TypeError("inline() expects a boolean parameter");return d.inline=a,l},l.clear=function(){return ca(),l},l.keyBinds=function(a){return 0===arguments.length?d.keyBinds:(d.keyBinds=a,l)},l.getMoment=function(a){return y(a)},l.debug=function(a){if("boolean"!=typeof a)throw new TypeError("debug() expects a boolean parameter");return d.debug=a,l},l.allowInputToggle=function(a){if(0===arguments.length)return d.allowInputToggle;if("boolean"!=typeof a)throw new TypeError("allowInputToggle() expects a boolean parameter");return d.allowInputToggle=a,l},l.showClose=function(a){if(0===arguments.length)return d.showClose;if("boolean"!=typeof a)throw new TypeError("showClose() expects a boolean parameter");return d.showClose=a,l},l.keepInvalid=function(a){if(0===arguments.length)return d.keepInvalid;if("boolean"!=typeof a)throw new TypeError("keepInvalid() expects a boolean parameter");
  6230. return d.keepInvalid=a,l},l.datepickerInput=function(a){if(0===arguments.length)return d.datepickerInput;if("string"!=typeof a)throw new TypeError("datepickerInput() expects a string parameter");return d.datepickerInput=a,l},l.parseInputDate=function(a){if(0===arguments.length)return d.parseInputDate;if("function"!=typeof a)throw new TypeError("parseInputDate() sholud be as function");return d.parseInputDate=a,l},l.disabledTimeIntervals=function(b){if(0===arguments.length)return d.disabledTimeIntervals?a.extend({},d.disabledTimeIntervals):d.disabledTimeIntervals;if(!b)return d.disabledTimeIntervals=!1,_(),l;if(!(b instanceof Array))throw new TypeError("disabledTimeIntervals() expects an array parameter");return d.disabledTimeIntervals=b,_(),l},l.disabledHours=function(b){if(0===arguments.length)return d.disabledHours?a.extend({},d.disabledHours):d.disabledHours;if(!b)return d.disabledHours=!1,_(),l;if(!(b instanceof Array))throw new TypeError("disabledHours() expects an array parameter");if(d.disabledHours=oa(b),d.enabledHours=!1,d.useCurrent&&!d.keepInvalid){for(var c=0;!R(e,"h");){if(e.add(1,"h"),24===c)throw"Tried 24 times to find a valid date";c++}aa(e)}return _(),l},l.enabledHours=function(b){if(0===arguments.length)return d.enabledHours?a.extend({},d.enabledHours):d.enabledHours;if(!b)return d.enabledHours=!1,_(),l;if(!(b instanceof Array))throw new TypeError("enabledHours() expects an array parameter");if(d.enabledHours=oa(b),d.disabledHours=!1,d.useCurrent&&!d.keepInvalid){for(var c=0;!R(e,"h");){if(e.add(1,"h"),24===c)throw"Tried 24 times to find a valid date";c++}aa(e)}return _(),l},l.viewDate=function(a){if(0===arguments.length)return f.clone();if(!a)return f=e.clone(),l;if(!("string"==typeof a||b.isMoment(a)||a instanceof Date))throw new TypeError("viewDate() parameter must be one of [string, moment or Date]");return f=da(a),K(),l},c.is("input"))g=c;else if(g=c.find(d.datepickerInput),0===g.length)g=c.find("input");else if(!g.is("input"))throw new Error('CSS class "'+d.datepickerInput+'" cannot be applied to non input element');if(c.hasClass("input-group")&&(n=0===c.find(".datepickerbutton").length?c.find(".input-group-addon"):c.find(".datepickerbutton")),!d.inline&&!g.is("input"))throw new Error("Could not initialize DateTimePicker without an input element");return e=y(),f=e.clone(),a.extend(!0,d,H()),l.options(d),pa(),la(),g.prop("disabled")&&l.disable(),g.is("input")&&0!==g.val().trim().length?aa(da(g.val().trim())):d.defaultDate&&void 0===g.attr("placeholder")&&aa(d.defaultDate),d.inline&&ga(),l};return a.fn.datetimepicker=function(b){b=b||{};var d,e=Array.prototype.slice.call(arguments,1),f=!0,g=["destroy","hide","show","toggle"];if("object"==typeof b)return this.each(function(){var d,e=a(this);e.data("DateTimePicker")||(d=a.extend(!0,{},a.fn.datetimepicker.defaults,b),e.data("DateTimePicker",c(e,d)))});if("string"==typeof b)return this.each(function(){var c=a(this),g=c.data("DateTimePicker");if(!g)throw new Error('bootstrap-datetimepicker("'+b+'") method was called on an element that is not using DateTimePicker');d=g[b].apply(g,e),f=d===g}),f||a.inArray(b,g)>-1?this:d;throw new TypeError("Invalid arguments for DateTimePicker: "+b)},a.fn.datetimepicker.defaults={timeZone:"",format:!1,dayViewHeaderFormat:"MMMM YYYY",extraFormats:!1,stepping:1,minDate:!1,maxDate:!1,useCurrent:!0,collapse:!0,locale:b.locale(),defaultDate:!1,disabledDates:!1,enabledDates:!1,icons:{time:"glyphicon glyphicon-time",date:"glyphicon glyphicon-calendar",up:"glyphicon glyphicon-chevron-up",down:"glyphicon glyphicon-chevron-down",previous:"glyphicon glyphicon-chevron-left",next:"glyphicon glyphicon-chevron-right",today:"glyphicon glyphicon-screenshot",clear:"glyphicon glyphicon-trash",close:"glyphicon glyphicon-remove"},tooltips:{today:"Go to today",clear:"Clear selection",close:"Close the picker",selectMonth:"Select Month",prevMonth:"Previous Month",nextMonth:"Next Month",selectYear:"Select Year",prevYear:"Previous Year",nextYear:"Next Year",selectDecade:"Select Decade",prevDecade:"Previous Decade",nextDecade:"Next Decade",prevCentury:"Previous Century",nextCentury:"Next Century",pickHour:"Pick Hour",incrementHour:"Increment Hour",decrementHour:"Decrement Hour",pickMinute:"Pick Minute",incrementMinute:"Increment Minute",decrementMinute:"Decrement Minute",pickSecond:"Pick Second",incrementSecond:"Increment Second",decrementSecond:"Decrement Second",togglePeriod:"Toggle Period",selectTime:"Select Time"},useStrict:!1,sideBySide:!1,daysOfWeekDisabled:!1,calendarWeeks:!1,viewMode:"days",toolbarPlacement:"default",showTodayButton:!1,showClear:!1,showClose:!1,widgetPositioning:{horizontal:"auto",vertical:"auto"},widgetParent:null,ignoreReadonly:!1,keepOpen:!1,focusOnShow:!0,inline:!1,keepInvalid:!1,datepickerInput:".datepickerinput",keyBinds:{up:function(a){if(a){var b=this.date()||this.getMoment();a.find(".datepicker").is(":visible")?this.date(b.clone().subtract(7,"d")):this.date(b.clone().add(this.stepping(),"m"))}},down:function(a){if(!a)return void this.show();var b=this.date()||this.getMoment();a.find(".datepicker").is(":visible")?this.date(b.clone().add(7,"d")):this.date(b.clone().subtract(this.stepping(),"m"))},"control up":function(a){if(a){var b=this.date()||this.getMoment();a.find(".datepicker").is(":visible")?this.date(b.clone().subtract(1,"y")):this.date(b.clone().add(1,"h"))}},"control down":function(a){if(a){var b=this.date()||this.getMoment();a.find(".datepicker").is(":visible")?this.date(b.clone().add(1,"y")):this.date(b.clone().subtract(1,"h"))}},left:function(a){if(a){var b=this.date()||this.getMoment();a.find(".datepicker").is(":visible")&&this.date(b.clone().subtract(1,"d"))}},right:function(a){if(a){var b=this.date()||this.getMoment();a.find(".datepicker").is(":visible")&&this.date(b.clone().add(1,"d"))}},pageUp:function(a){if(a){var b=this.date()||this.getMoment();a.find(".datepicker").is(":visible")&&this.date(b.clone().subtract(1,"M"))}},pageDown:function(a){if(a){var b=this.date()||this.getMoment();a.find(".datepicker").is(":visible")&&this.date(b.clone().add(1,"M"))}},enter:function(){this.hide()},escape:function(){this.hide()},"control space":function(a){a&&a.find(".timepicker").is(":visible")&&a.find('.btn[data-action="togglePeriod"]').click()},t:function(){this.date(this.getMoment())},delete:function(){this.clear()}},debug:!1,allowInputToggle:!1,disabledTimeIntervals:!1,disabledHours:!1,enabledHours:!1,viewDate:!1},a.fn.datetimepicker});
  6231. /**
  6232. * @author: pppscn <35696959@qq.com>
  6233. * @version: v0.0.1
  6234. *
  6235. * @update 2017-05-07 <http://git.oschina.net/pp/fastadmin>
  6236. */
  6237. !function ($) {
  6238. 'use strict';
  6239. var ColumnsForSearch = [];
  6240. var sprintf = $.fn.bootstrapTable.utils.sprintf;
  6241. var initCommonSearch = function (pColumns, that) {
  6242. var vFormCommon = createFormCommon(pColumns, that);
  6243. var vModal = sprintf("<div class=\"commonsearch-table %s\">", that.options.searchFormVisible ? "" : "hidden");
  6244. vModal += vFormCommon.join('');
  6245. vModal += "</div>";
  6246. that.$container.prepend($(vModal));
  6247. var form = $("form.form-commonsearch", that.$container);
  6248. //绑定日期时间元素事件
  6249. if ($(".datetimepicker", form).size() > 0) {
  6250. require(['bootstrap-datetimepicker'], function () {
  6251. $('.datetimepicker', form).parent().css('position', 'relative');
  6252. $('.datetimepicker', form).datetimepicker({
  6253. //format: 'YYYY-MM-DD',
  6254. icons: {
  6255. time: 'fa fa-clock-o',
  6256. date: 'fa fa-calendar',
  6257. up: 'fa fa-chevron-up',
  6258. down: 'fa fa-chevron-down',
  6259. previous: 'fa fa-chevron-left',
  6260. next: 'fa fa-chevron-right',
  6261. today: 'fa fa-history',
  6262. clear: 'fa fa-trash',
  6263. close: 'fa fa-remove'
  6264. },
  6265. showTodayButton: true,
  6266. showClose: true
  6267. });
  6268. });
  6269. }
  6270. // 表单提交
  6271. form.on("submit", function (event) {
  6272. event.preventDefault();
  6273. that.onColumnCommonSearch();
  6274. return false;
  6275. });
  6276. // 重置搜索
  6277. form.on("click", "button[type=reset]", function (event) {
  6278. form[0].reset();
  6279. that.onColumnCommonSearch();
  6280. });
  6281. };
  6282. var createFormCommon = function (pColumns, that) {
  6283. var htmlForm = [];
  6284. var opList = ['=', '>', '>=', '<', '<=', '!=', 'LIKE', 'LIKE %...%', 'NOT LIKE', 'IN(...)', 'NOT IN(...)', 'BETWEEN', 'NOT BETWEEN', 'IS NULL', 'IS NOT NULL'];
  6285. htmlForm.push(sprintf('<form class="form-inline form-commonsearch" action="%s" >', that.options.actionForm));
  6286. htmlForm.push('<fieldset>');
  6287. if (that.options.titleForm.length > 0)
  6288. htmlForm.push(sprintf("<legend>%s</legend>", that.options.titleForm));
  6289. for (var i in pColumns) {
  6290. var vObjCol = pColumns[i];
  6291. if (!vObjCol.checkbox && vObjCol.field !== 'operate' && vObjCol.searchable && vObjCol.operate !== false) {
  6292. var query = Backend.api.query(vObjCol.field);
  6293. query = query ? query : '';
  6294. vObjCol.defaultValue = that.options.renderDefault && query != '' ? query : (typeof vObjCol.defaultValue === 'undefined' ? '' : vObjCol.defaultValue);
  6295. ColumnsForSearch.push(vObjCol);
  6296. htmlForm.push('<div class="form-group" style="margin:5px">');
  6297. htmlForm.push(sprintf('<label for="%s" class="control-label" style="padding:0 10px">%s</label>', vObjCol.field, vObjCol.title));
  6298. vObjCol.operate = (typeof vObjCol.operate === 'undefined' || $.inArray(vObjCol.operate, opList) === -1) ? '=' : vObjCol.operate;
  6299. htmlForm.push(sprintf('<input type="hidden" class="form-control operate" name="field-%s" data-name="%s" value="%s" readonly>', vObjCol.field, vObjCol.field, vObjCol.operate));
  6300. var style = typeof vObjCol.style === 'undefined' ? '' : sprintf('style="%s"', vObjCol.style);
  6301. if (vObjCol.searchList) {
  6302. if (typeof vObjCol.searchList === 'object' && typeof vObjCol.searchList.then === 'function') {
  6303. htmlForm.push(sprintf('<select class="form-control" name="%s" %s>%s</select>', vObjCol.field, style, sprintf('<option value="">%s</option>', that.options.formatCommonChoose())));
  6304. (function (vObjCol, that) {
  6305. $.when(vObjCol.searchList).done(function (ret) {
  6306. var isArray = false;
  6307. if (ret.data && ret.data.searchlist && $.isArray(ret.data.searchlist)) {
  6308. var resultlist = {};
  6309. $.each(ret.data.searchlist, function (key, value) {
  6310. resultlist[value.id] = value.name;
  6311. });
  6312. } else if (ret.constructor === Array || ret.constructor === Object) {
  6313. var resultlist = ret;
  6314. isArray = ret.constructor === Array ? true : isArray;
  6315. }
  6316. var optionList = [];
  6317. $.each(resultlist, function (key, value) {
  6318. var isSelect = (isArray ? value : key) == vObjCol.defaultValue ? 'selected' : '';
  6319. optionList.push(sprintf("<option value='" + (isArray ? value : key) + "' %s>" + value + "</option>", isSelect));
  6320. });
  6321. $("form.form-commonsearch select[name='" + vObjCol.field + "']", that.$container).append(optionList.join(''));
  6322. });
  6323. })(vObjCol, that);
  6324. } else if (typeof vObjCol.searchList == 'function') {
  6325. htmlForm.push(vObjCol.searchList.call(this, vObjCol));
  6326. } else {
  6327. var isArray = vObjCol.searchList.constructor === Array;
  6328. var searchList = [];
  6329. searchList.push(sprintf('<option value="">%s</option>', that.options.formatCommonChoose()));
  6330. $.each(vObjCol.searchList, function (key, value) {
  6331. var isSelect = (isArray ? value : key) == vObjCol.defaultValue ? 'selected' : '';
  6332. searchList.push(sprintf("<option value='" + (isArray ? value : key) + "' %s>" + value + "</option>", isSelect));
  6333. });
  6334. htmlForm.push(sprintf('<select class="form-control" name="%s" %s>%s</select>', vObjCol.field, style, searchList.join('')));
  6335. }
  6336. } else {
  6337. var placeholder = typeof vObjCol.placeholder === 'undefined' ? vObjCol.title : vObjCol.placeholder;
  6338. var type = typeof vObjCol.type === 'undefined' ? 'text' : vObjCol.type;
  6339. var addclass = typeof vObjCol.addclass === 'undefined' ? 'form-control' : 'form-control ' + vObjCol.addclass;
  6340. var data = typeof vObjCol.data === 'undefined' ? '' : vObjCol.data;
  6341. var defaultValue = typeof vObjCol.defaultValue === 'undefined' ? '' : vObjCol.defaultValue;
  6342. if (/BETWEEN$/.test(vObjCol.operate)) {
  6343. var defaultValueArr = /^.+|.+$/.test(defaultValue) ? defaultValue.split('|') : ['', ''];
  6344. htmlForm.push(sprintf('<input type="%s" class="%s" name="%s" value="%s" placeholder="%s" id="%s" %s %s>', type, addclass, vObjCol.field, defaultValueArr[0], placeholder, vObjCol.field, style, data));
  6345. htmlForm.push(sprintf('&nbsp;-&nbsp;<input type="%s" class="%s" name="%s" value="%s" placeholder="%s" id="%s" %s %s>', type, addclass, vObjCol.field, defaultValueArr[1], placeholder, vObjCol.field, style, data));
  6346. } else {
  6347. htmlForm.push(sprintf('<input type="%s" class="%s" name="%s" value="%s" placeholder="%s" id="%s" %s %s>', type, addclass, vObjCol.field, defaultValue, placeholder, vObjCol.field, style, data));
  6348. }
  6349. }
  6350. htmlForm.push('</div>');
  6351. }
  6352. }
  6353. htmlForm.push(createFormBtn(that).join(''));
  6354. htmlForm.push('</fieldset>');
  6355. htmlForm.push('</form>');
  6356. return htmlForm;
  6357. };
  6358. var createFormBtn = function (that) {
  6359. var htmlBtn = [];
  6360. var searchSubmit = that.options.formatCommonSubmitButton();
  6361. var searchReset = that.options.formatCommonResetButton();
  6362. htmlBtn.push('<div class="form-group" style="margin:5px">');
  6363. htmlBtn.push('<div class="col-sm-12 text-center">');
  6364. htmlBtn.push(sprintf('<button type="submit" class="btn btn-success" >%s</button> ', searchSubmit));
  6365. htmlBtn.push(sprintf('<button type="reset" class="btn btn-default" >%s</button> ', searchReset));
  6366. htmlBtn.push('</div>');
  6367. htmlBtn.push('</div>');
  6368. return htmlBtn;
  6369. };
  6370. var isSearchAvailble = function (that) {
  6371. //只支持服务端搜索
  6372. if (!that.options.commonSearch || that.options.sidePagination != 'server' || !that.options.url) {
  6373. return false;
  6374. }
  6375. return true;
  6376. };
  6377. var getSearchQuery = function (that) {
  6378. var op = {};
  6379. var filter = {};
  6380. $("form.form-commonsearch input.operate", that.$container).each(function (i) {
  6381. var name = $(this).data("name");
  6382. var sym = $(this).val();
  6383. var obj = $("[name='" + name + "']");
  6384. if (obj.size() == 0)
  6385. return true;
  6386. var vObjCol = ColumnsForSearch[i];
  6387. if (obj.size() > 1) {
  6388. if (/BETWEEN$/.test(sym)) {
  6389. var value_begin = $.trim($("[name='" + name + "']:first").val()), value_end = $.trim($("[name='" + name + "']:last").val());
  6390. if (!value_begin.length || !value_end.length) {
  6391. return true;
  6392. }
  6393. if (typeof vObjCol.process === 'function') {
  6394. value_begin = vObjCol.process(value_begin, 'begin');
  6395. value_end = vObjCol.process(value_end, 'end');
  6396. } else if ($("[name='" + name + "']:first").attr('type') === 'datetime') { //datetime类型字段转换成时间戳
  6397. var Hms = Moment(value_begin).format("HH:mm:ss");
  6398. value_begin = parseInt(Moment(value_begin) / 1000);
  6399. value_end = parseInt(Moment(value_end) / 1000);
  6400. if (value_begin === value_end && '00:00:00' === Hms) {
  6401. value_end += 86399;
  6402. }
  6403. }
  6404. var value = value_begin + ',' + value_end;
  6405. } else {
  6406. var value = $("[name='" + name + "']:checked").val();
  6407. }
  6408. } else {
  6409. var value = (typeof vObjCol.process === 'function') ? vObjCol.process(obj.val()) : (sym == 'LIKE %...%' ? obj.val().replace(/\*/g, '%') : obj.val());
  6410. }
  6411. if (value == '' && sym.indexOf("NULL") == -1) {
  6412. return true;
  6413. }
  6414. op[name] = sym;
  6415. filter[name] = value;
  6416. });
  6417. return {op: op, filter: filter};
  6418. };
  6419. $.extend($.fn.bootstrapTable.defaults, {
  6420. commonSearch: false,
  6421. titleForm: "Common search",
  6422. actionForm: "",
  6423. searchFormVisible: true,
  6424. searchClass: 'searchit',
  6425. renderDefault: true,
  6426. onColumnCommonSearch: function (field, text) {
  6427. return false;
  6428. }
  6429. });
  6430. $.extend($.fn.bootstrapTable.defaults.icons, {
  6431. commonSearchIcon: 'glyphicon-search'
  6432. });
  6433. $.extend($.fn.bootstrapTable.Constructor.EVENTS, {
  6434. 'column-common-search.bs.table': 'onColumnCommonSearch'
  6435. });
  6436. $.extend($.fn.bootstrapTable.locales[$.fn.bootstrapTable.defaults.locale], {
  6437. formatCommonSearch: function () {
  6438. return "Common search";
  6439. },
  6440. formatCommonSubmitButton: function () {
  6441. return "Submit";
  6442. },
  6443. formatCommonResetButton: function () {
  6444. return "Reset";
  6445. },
  6446. formatCommonCloseButton: function () {
  6447. return "Close";
  6448. },
  6449. formatCommonChoose: function () {
  6450. return "Choose";
  6451. }
  6452. });
  6453. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales);
  6454. var BootstrapTable = $.fn.bootstrapTable.Constructor,
  6455. _initToolbar = BootstrapTable.prototype.initToolbar,
  6456. _load = BootstrapTable.prototype.load,
  6457. _initSearch = BootstrapTable.prototype.initSearch;
  6458. BootstrapTable.prototype.initToolbar = function () {
  6459. _initToolbar.apply(this, Array.prototype.slice.apply(arguments));
  6460. if (!isSearchAvailble(this)) {
  6461. return;
  6462. }
  6463. var that = this,
  6464. html = [];
  6465. html.push(sprintf('<div class="columns-%s pull-%s" style="margin-top:10px;">', this.options.buttonsAlign, this.options.buttonsAlign));
  6466. 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()));
  6467. html.push(sprintf('<i class="%s %s"></i>', that.options.iconsPrefix, that.options.icons.commonSearchIcon))
  6468. html.push('</button></div>');
  6469. that.$toolbar.prepend(html.join(''));
  6470. initCommonSearch(that.columns, that);
  6471. var searchContainer = $(".commonsearch-table", that.$container);
  6472. that.$toolbar.find('button[name="commonSearch"]')
  6473. .off('click').on('click', function () {
  6474. searchContainer.toggleClass("hidden");
  6475. return;
  6476. });
  6477. that.$container.on("click", "." + that.options.searchClass, function () {
  6478. var obj = $("form [name='" + $(this).data("field") + "']", searchContainer);
  6479. if (obj.size() > 0) {
  6480. obj.val($(this).data("value"));
  6481. $("form", searchContainer).trigger("submit");
  6482. }
  6483. });
  6484. var searchQuery = getSearchQuery(this);
  6485. var queryParams = this.options.queryParams;
  6486. this.options.queryParams = function () {
  6487. var params = queryParams.apply(this, arguments);
  6488. params.filter = JSON.stringify($.extend(params.filter || {}, searchQuery.filter));
  6489. params.op = JSON.stringify($.extend(params.op || {}, searchQuery.op));
  6490. return params;
  6491. };
  6492. };
  6493. BootstrapTable.prototype.load = function (data) {
  6494. _load.apply(this, Array.prototype.slice.apply(arguments));
  6495. if (!isSearchAvailble(this)) {
  6496. return;
  6497. }
  6498. };
  6499. BootstrapTable.prototype.initSearch = function () {
  6500. _initSearch.apply(this, Array.prototype.slice.apply(arguments));
  6501. if (!isSearchAvailble(this)) {
  6502. return;
  6503. }
  6504. var that = this;
  6505. var fp = $.isEmptyObject(this.filterColumnsPartial) ? null : this.filterColumnsPartial;
  6506. this.data = fp ? $.grep(this.data, function (item, i) {
  6507. for (var key in fp) {
  6508. var fval = fp[key].toLowerCase();
  6509. var value = item[key];
  6510. value = $.fn.bootstrapTable.utils.calculateObjectValue(that.header,
  6511. that.header.formatters[$.inArray(key, that.header.fields)],
  6512. [value, item, i], value);
  6513. if (!($.inArray(key, that.header.fields) !== -1 &&
  6514. (typeof value === 'string' || typeof value === 'number') &&
  6515. (value + '').toLowerCase().indexOf(fval) !== -1)) {
  6516. return false;
  6517. }
  6518. }
  6519. return true;
  6520. }) : this.data;
  6521. };
  6522. BootstrapTable.prototype.onColumnCommonSearch = function (event) {
  6523. if (typeof event === 'undefined') {
  6524. var searchquery = getSearchQuery(this);
  6525. // 追加查询关键字
  6526. this.options.pageNumber = 1;
  6527. this.options.queryParams = function (params) {
  6528. return {
  6529. search: params.search,
  6530. sort: params.sort,
  6531. order: params.order,
  6532. filter: JSON.stringify(searchquery.filter),
  6533. op: JSON.stringify(searchquery.op),
  6534. offset: params.offset,
  6535. limit: params.limit,
  6536. };
  6537. };
  6538. this.refresh({query: {filter: JSON.stringify(searchquery.filter), op: JSON.stringify(searchquery.op)}});
  6539. } else {
  6540. var text = $.trim($(event.currentTarget).val());
  6541. var $field = $(event.currentTarget)[0].id;
  6542. if ($.isEmptyObject(this.filterColumnsPartial)) {
  6543. this.filterColumnsPartial = {};
  6544. }
  6545. if (text) {
  6546. this.filterColumnsPartial[$field] = text;
  6547. } else {
  6548. delete this.filterColumnsPartial[$field];
  6549. }
  6550. this.options.pageNumber = 1;
  6551. this.onSearch(event);
  6552. // this.updatePagination();
  6553. this.trigger('column-common-search', $field, text);
  6554. }
  6555. };
  6556. }(jQuery);
  6557. define("bootstrap-table-commonsearch", ["bootstrap-table"], (function (global) {
  6558. return function () {
  6559. var ret, fn;
  6560. return ret || global.$.fn.bootstrapTable.defaults;
  6561. };
  6562. }(this)));
  6563. /*!art-template - Template Engine | http://aui.github.com/artTemplate/*/
  6564. !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}();
  6565. /**
  6566. * 将BootstrapTable的行使用自定义的模板来渲染
  6567. *
  6568. * @author: karson
  6569. * @version: v0.0.1
  6570. *
  6571. * @update 2017-06-24 <http://github.com/karsonzhang/fastadmin>
  6572. */
  6573. !function ($) {
  6574. 'use strict';
  6575. $.extend($.fn.bootstrapTable.defaults, {
  6576. //是否启用模板渲染
  6577. templateView: false,
  6578. //数据格式化的模板ID或格式函数
  6579. templateFormatter: "itemtpl",
  6580. //添加的父类的class
  6581. templateParentClass: "row row-flex",
  6582. //向table添加的class
  6583. templateTableClass: "table-template",
  6584. });
  6585. var BootstrapTable = $.fn.bootstrapTable.Constructor,
  6586. _initContainer = BootstrapTable.prototype.initContainer,
  6587. _initBody = BootstrapTable.prototype.initBody,
  6588. _initRow = BootstrapTable.prototype.initRow;
  6589. BootstrapTable.prototype.initContainer = function () {
  6590. _initContainer.apply(this, Array.prototype.slice.apply(arguments));
  6591. var that = this;
  6592. if (!that.options.templateView) {
  6593. return;
  6594. }
  6595. };
  6596. BootstrapTable.prototype.initBody = function () {
  6597. var that = this;
  6598. $.extend(that.options, {
  6599. showHeader: !that.options.templateView ? $.fn.bootstrapTable.defaults.showHeader : false,
  6600. showFooter: !that.options.templateView ? $.fn.bootstrapTable.defaults.showFooter : false,
  6601. });
  6602. $(that.$el).toggleClass(that.options.templateTableClass, that.options.templateView);
  6603. _initBody.apply(this, Array.prototype.slice.apply(arguments));
  6604. if (!that.options.templateView) {
  6605. return;
  6606. } else {
  6607. //由于Bootstrap是基于Table的,添加一个父类容器
  6608. $("> *:not(.no-records-found)", that.$body).wrapAll($("<div />").addClass(that.options.templateParentClass));
  6609. }
  6610. };
  6611. BootstrapTable.prototype.initRow = function (item, i, data, parentDom) {
  6612. var that = this;
  6613. //如果未启用则使用原生的initRow方法
  6614. if (!that.options.templateView) {
  6615. return _initRow.apply(that, Array.prototype.slice.apply(arguments));
  6616. }
  6617. var $content = '';
  6618. if (typeof that.options.templateFormatter === 'function') {
  6619. $content = that.options.templateFormatter.call(that, item, i, data);
  6620. } else {
  6621. var Template = require('template');
  6622. $content = Template(that.options.templateFormatter, {item: item, i: i, data: data});
  6623. }
  6624. return $content;
  6625. };
  6626. }(jQuery);
  6627. define("bootstrap-table-template", ["bootstrap-table","template"], (function (global) {
  6628. return function () {
  6629. var ret, fn;
  6630. return ret || global.$.fn.bootstrapTable.defaults;
  6631. };
  6632. }(this)));
  6633. define('table',['jquery', 'bootstrap', 'moment', 'bootstrap-table', 'bootstrap-table-lang', 'bootstrap-table-mobile', 'bootstrap-table-export', 'bootstrap-table-commonsearch', 'bootstrap-table-template'], function ($, undefined, Moment) {
  6634. var Table = {
  6635. list: {},
  6636. // Bootstrap-table 基础配置
  6637. defaults: {
  6638. url: '',
  6639. sidePagination: 'server',
  6640. method: 'get',
  6641. toolbar: "#toolbar",
  6642. search: true,
  6643. cache: false,
  6644. commonSearch: true,
  6645. searchFormVisible: false,
  6646. titleForm: '', //为空则不显示标题,不定义默认显示:普通搜索
  6647. idTable: 'commonTable',
  6648. showExport: true,
  6649. exportDataType: "all",
  6650. exportTypes: ['json', 'xml', 'csv', 'txt', 'doc', 'excel'],
  6651. pageSize: 10,
  6652. pageList: [10, 25, 50, 'All'],
  6653. pagination: true,
  6654. clickToSelect: true,
  6655. showRefresh: false,
  6656. locale: 'zh-CN',
  6657. showToggle: true,
  6658. showColumns: true,
  6659. pk: 'id',
  6660. sortName: 'id',
  6661. sortOrder: 'desc',
  6662. paginationFirstText: __("First"),
  6663. paginationPreText: __("Previous"),
  6664. paginationNextText: __("Next"),
  6665. paginationLastText: __("Last"),
  6666. mobileResponsive: true,
  6667. cardView: true,
  6668. checkOnInit: true,
  6669. escape: true,
  6670. extend: {
  6671. index_url: '',
  6672. add_url: '',
  6673. edit_url: '',
  6674. del_url: '',
  6675. multi_url: '',
  6676. dragsort_url: 'ajax/weigh',
  6677. }
  6678. },
  6679. // Bootstrap-table 列配置
  6680. columnDefaults: {
  6681. align: 'center',
  6682. valign: 'middle',
  6683. },
  6684. config: {
  6685. firsttd: 'tbody tr td:first-child:not(:has(div.card-views))',
  6686. toolbar: '.toolbar',
  6687. refreshbtn: '.btn-refresh',
  6688. addbtn: '.btn-add',
  6689. editbtn: '.btn-edit',
  6690. delbtn: '.btn-del',
  6691. multibtn: '.btn-multi',
  6692. disabledbtn: '.btn-disabled',
  6693. editonebtn: '.btn-editone',
  6694. dragsortfield: 'weigh',
  6695. },
  6696. api: {
  6697. init: function (defaults, columnDefaults, locales) {
  6698. defaults = defaults ? defaults : {};
  6699. columnDefaults = columnDefaults ? columnDefaults : {};
  6700. locales = locales ? locales : {};
  6701. // 写入bootstrap-table默认配置
  6702. $.extend(true, $.fn.bootstrapTable.defaults, Table.defaults, defaults);
  6703. // 写入bootstrap-table column配置
  6704. $.extend($.fn.bootstrapTable.columnDefaults, Table.columnDefaults, columnDefaults);
  6705. // 写入bootstrap-table locale配置
  6706. $.extend($.fn.bootstrapTable.locales[Table.defaults.locale], {
  6707. formatCommonSearch: function () {
  6708. return __('Common search');
  6709. },
  6710. formatCommonSubmitButton: function () {
  6711. return __('Submit');
  6712. },
  6713. formatCommonResetButton: function () {
  6714. return __('Reset');
  6715. },
  6716. formatCommonCloseButton: function () {
  6717. return __('Close');
  6718. },
  6719. formatCommonChoose: function () {
  6720. return __('Choose');
  6721. }
  6722. }, locales);
  6723. },
  6724. // 绑定事件
  6725. bindevent: function (table) {
  6726. //Bootstrap-table的父元素,包含table,toolbar,pagnation
  6727. var parenttable = table.closest('.bootstrap-table');
  6728. //Bootstrap-table配置
  6729. var options = table.bootstrapTable('getOptions');
  6730. //Bootstrap操作区
  6731. var toolbar = $(options.toolbar, parenttable);
  6732. //当刷新表格时
  6733. table.on('load-error.bs.table', function (status, res) {
  6734. Toastr.error(__('Unknown data format'));
  6735. });
  6736. //当刷新表格时
  6737. table.on('refresh.bs.table', function (e, settings, data) {
  6738. $(Table.config.refreshbtn, toolbar).find(".fa").addClass("fa-spin");
  6739. });
  6740. //当双击单元格时
  6741. table.on('dbl-click-row.bs.table', function (e, row, element, field) {
  6742. $(Table.config.editonebtn, element).trigger("click");
  6743. });
  6744. //当内容渲染完成后
  6745. table.on('post-body.bs.table', function (e, settings, json, xhr) {
  6746. $(Table.config.refreshbtn, toolbar).find(".fa").removeClass("fa-spin");
  6747. $(Table.config.disabledbtn, toolbar).toggleClass('disabled', true);
  6748. if ($(Table.config.firsttd, table).find("input[type='checkbox'][data-index]").size() > 0) {
  6749. // 挺拽选择,需要重新绑定事件
  6750. require(['drag', 'drop'], function () {
  6751. $(Table.config.firsttd, table).drag("start", function (ev, dd) {
  6752. return $('<div class="selection" />').css('opacity', .65).appendTo(document.body);
  6753. }).drag(function (ev, dd) {
  6754. $(dd.proxy).css({
  6755. top: Math.min(ev.pageY, dd.startY),
  6756. left: Math.min(ev.pageX, dd.startX),
  6757. height: Math.abs(ev.pageY - dd.startY),
  6758. width: Math.abs(ev.pageX - dd.startX)
  6759. });
  6760. }).drag("end", function (ev, dd) {
  6761. $(dd.proxy).remove();
  6762. });
  6763. $(Table.config.firsttd, table).drop("start", function () {
  6764. Table.api.toggleattr(this);
  6765. }).drop(function () {
  6766. Table.api.toggleattr(this);
  6767. }).drop("end", function () {
  6768. Table.api.toggleattr(this);
  6769. });
  6770. $.drop({
  6771. multi: true
  6772. });
  6773. });
  6774. }
  6775. });
  6776. // 处理选中筛选框后按钮的状态统一变更
  6777. table.on('check.bs.table uncheck.bs.table check-all.bs.table uncheck-all.bs.table fa.event.check', function () {
  6778. var ids = Table.api.selectedids(table);
  6779. $(Table.config.disabledbtn, toolbar).toggleClass('disabled', !ids.length);
  6780. });
  6781. // 刷新按钮事件
  6782. $(toolbar).on('click', Table.config.refreshbtn, function () {
  6783. table.bootstrapTable('refresh');
  6784. });
  6785. // 添加按钮事件
  6786. $(toolbar).on('click', Table.config.addbtn, function () {
  6787. var ids = Table.api.selectedids(table);
  6788. Fast.api.open(options.extend.add_url + "/ids" + (ids.length > 0 ? '/' : '') + ids.join(","), __('Add'));
  6789. });
  6790. // 批量编辑按钮事件
  6791. $(toolbar).on('click', Table.config.editbtn, function () {
  6792. var ids = Table.api.selectedids(table);
  6793. //循环弹出多个编辑框
  6794. $.each(ids, function (i, j) {
  6795. Fast.api.open(options.extend.edit_url + "/ids/" + j, __('Edit'));
  6796. });
  6797. });
  6798. // 批量操作按钮事件
  6799. $(toolbar).on('click', Table.config.multibtn, function () {
  6800. var ids = Table.api.selectedids(table);
  6801. Table.api.multi($(this).data("action"), ids, table, this);
  6802. });
  6803. // 批量删除按钮事件
  6804. $(toolbar).on('click', Table.config.delbtn, function () {
  6805. var that = this;
  6806. var ids = Table.api.selectedids(table);
  6807. var index = Layer.confirm(
  6808. __('Are you sure you want to delete the %s selected item?', ids.length),
  6809. {icon: 3, title: __('Warning'), offset: 0, shadeClose: true},
  6810. function () {
  6811. Table.api.multi("del", ids, table, that);
  6812. Layer.close(index);
  6813. }
  6814. );
  6815. });
  6816. // 拖拽排序
  6817. require(['dragsort'], function () {
  6818. //绑定拖动排序
  6819. $("tbody", table).dragsort({
  6820. itemSelector: 'tr',
  6821. dragSelector: "a.btn-dragsort",
  6822. dragEnd: function () {
  6823. var data = table.bootstrapTable('getData');
  6824. var current = data[parseInt($(this).data("index"))];
  6825. var options = table.bootstrapTable('getOptions');
  6826. //改变的值和改变的ID集合
  6827. var ids = $.map($("tbody tr:visible", table), function (tr) {
  6828. return data[parseInt($(tr).data("index"))][options.pk];
  6829. });
  6830. var changeid = current[options.pk];
  6831. var pid = typeof current.pid != 'undefined' ? current.pid : '';
  6832. var params = {
  6833. url: table.bootstrapTable('getOptions').extend.dragsort_url,
  6834. data: {
  6835. ids: ids.join(','),
  6836. changeid: changeid,
  6837. pid: pid,
  6838. field: Table.config.dragsortfield,
  6839. orderway: options.sortOrder,
  6840. table: options.extend.table
  6841. }
  6842. };
  6843. Fast.api.ajax(params, function (data) {
  6844. Toastr.success(__('Operation completed'));
  6845. table.bootstrapTable('refresh');
  6846. });
  6847. },
  6848. placeHolderTemplate: ""
  6849. });
  6850. });
  6851. $(table).on("click", "input[data-id][name='checkbox']", function (e) {
  6852. table.trigger('fa.event.check');
  6853. });
  6854. $(table).on("click", "[data-id].btn-change", function (e) {
  6855. e.preventDefault();
  6856. Table.api.multi($(this).data("action") ? $(this).data("action") : '', [$(this).data("id")], table, this);
  6857. });
  6858. $(table).on("click", "[data-id].btn-edit", function (e) {
  6859. e.preventDefault();
  6860. Fast.api.open(options.extend.edit_url + "/ids/" + $(this).data("id"), __('Edit'));
  6861. });
  6862. $(table).on("click", "[data-id].btn-del", function (e) {
  6863. e.preventDefault();
  6864. var id = $(this).data("id");
  6865. var that = this;
  6866. var index = Layer.confirm(
  6867. __('Are you sure you want to delete this item?'),
  6868. {icon: 3, title: __('Warning'), shadeClose: true},
  6869. function () {
  6870. Table.api.multi("del", id, table, that);
  6871. Layer.close(index);
  6872. }
  6873. );
  6874. });
  6875. var id = table.attr("id");
  6876. Table.list[id] = table;
  6877. return table;
  6878. },
  6879. // 批量操作请求
  6880. multi: function (action, ids, table, element) {
  6881. var options = table.bootstrapTable('getOptions');
  6882. var data = element ? $(element).data() : {};
  6883. var url = typeof data.url !== "undefined" ? data.url : (action == "del" ? options.extend.del_url : options.extend.multi_url);
  6884. url = url + (url.match(/(\?|&)+/) ? "&ids=" : "/ids/") + ($.isArray(ids) ? ids.join(",") : ids);
  6885. var params = typeof data.params !== "undefined" ? (typeof data.params == 'object' ? $.param(data.params) : data.params) : '';
  6886. var options = {url: url, data: {action: action, ids: ids, params: params}};
  6887. Fast.api.ajax(options, function (data) {
  6888. Toastr.success(__('Operation completed'));
  6889. table.bootstrapTable('refresh');
  6890. });
  6891. },
  6892. // 单元格元素事件
  6893. events: {
  6894. operate: {
  6895. 'click .btn-editone': function (e, value, row, index) {
  6896. e.stopPropagation();
  6897. var options = $(this).closest('table').bootstrapTable('getOptions');
  6898. Fast.api.open(options.extend.edit_url + "/ids/" + row[options.pk], __('Edit'));
  6899. },
  6900. 'click .btn-delone': function (e, value, row, index) {
  6901. e.stopPropagation();
  6902. var that = this;
  6903. var top = $(that).offset().top - $(window).scrollTop();
  6904. var left = $(that).offset().left - $(window).scrollLeft() - 260;
  6905. if (top + 154 > $(window).height()) {
  6906. top = top - 154;
  6907. }
  6908. if ($(window).width() < 480) {
  6909. top = left = undefined;
  6910. }
  6911. var index = Layer.confirm(
  6912. __('Are you sure you want to delete this item?'),
  6913. {icon: 3, title: __('Warning'), offset: [top, left], shadeClose: true},
  6914. function () {
  6915. var table = $(that).closest('table');
  6916. var options = table.bootstrapTable('getOptions');
  6917. Table.api.multi("del", row[options.pk], table, that);
  6918. Layer.close(index);
  6919. }
  6920. );
  6921. }
  6922. }
  6923. },
  6924. // 单元格数据格式化
  6925. formatter: {
  6926. icon: function (value, row, index) {
  6927. if (!value)
  6928. return '';
  6929. value = value.indexOf(" ") > -1 ? value : "fa fa-" + value;
  6930. //渲染fontawesome图标
  6931. return '<i class="' + value + '"></i> ' + value;
  6932. },
  6933. image: function (value, row, index, custom) {
  6934. var classname = typeof custom !== 'undefined' ? custom : 'img-sm img-center';
  6935. return '<img class="' + classname + '" src="' + Fast.api.cdnurl(value) + '" />';
  6936. },
  6937. images: function (value, row, index, custom) {
  6938. var classname = typeof custom !== 'undefined' ? custom : 'img-sm img-center';
  6939. var arr = value.split(',');
  6940. var html = [];
  6941. $.each(arr, function (i, value) {
  6942. html.push('<img class="' + classname + '" src="' + Fast.api.cdnurl(value) + '" />');
  6943. });
  6944. return html.join(' ');
  6945. },
  6946. status: function (value, row, index, custom) {
  6947. //颜色状态数组,可使用red/yellow/aqua/blue/navy/teal/olive/lime/fuchsia/purple/maroon
  6948. var colorArr = {normal: 'success', hidden: 'grey', deleted: 'danger', locked: 'info'};
  6949. //如果有自定义状态,可以按需传入
  6950. if (typeof custom !== 'undefined') {
  6951. colorArr = $.extend(colorArr, custom);
  6952. }
  6953. value = value.toString();
  6954. var color = value && typeof colorArr[value] !== 'undefined' ? colorArr[value] : 'primary';
  6955. value = value.charAt(0).toUpperCase() + value.slice(1);
  6956. //渲染状态
  6957. var html = '<span class="text-' + color + '"><i class="fa fa-circle"></i> ' + __(value) + '</span>';
  6958. return html;
  6959. },
  6960. url: function (value, row, index) {
  6961. return '<div class="input-group input-group-sm" style="width:250px;"><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>';
  6962. },
  6963. search: function (value, row, index) {
  6964. return '<a href="javascript:;" class="searchit" data-field="' + this.field + '" data-value="' + value + '">' + value + '</a>';
  6965. },
  6966. addtabs: function (value, row, index, url) {
  6967. return '<a href="' + url + '" class="addtabsit" title="' + __("Search %s", value) + '">' + value + '</a>';
  6968. },
  6969. flag: function (value, row, index, custom) {
  6970. var colorArr = {index: 'success', hot: 'warning', recommend: 'danger', 'new': 'info'};
  6971. //如果有自定义状态,可以按需传入
  6972. if (typeof custom !== 'undefined') {
  6973. colorArr = $.extend(colorArr, custom);
  6974. }
  6975. //渲染Flag
  6976. var html = [];
  6977. var arr = value.split(',');
  6978. $.each(arr, function (i, value) {
  6979. value = value.toString();
  6980. if (value == '')
  6981. return true;
  6982. var color = value && typeof colorArr[value] !== 'undefined' ? colorArr[value] : 'primary';
  6983. value = value.charAt(0).toUpperCase() + value.slice(1);
  6984. html.push('<span class="label label-' + color + '">' + __(value) + '</span>');
  6985. });
  6986. return html.join(' ');
  6987. },
  6988. label: function (value, row, index, custom) {
  6989. var colorArr = ['success', 'warning', 'danger', 'info'];
  6990. //渲染Flag
  6991. var html = [];
  6992. var arr = value.split(',');
  6993. $.each(arr, function (i, value) {
  6994. value = value.toString();
  6995. var color = colorArr[i % colorArr.length];
  6996. html.push('<span class="label label-' + color + '">' + __(value) + '</span>');
  6997. });
  6998. return html.join(' ');
  6999. },
  7000. datetime: function (value, row, index) {
  7001. return value ? Moment(parseInt(value) * 1000).format("YYYY-MM-DD HH:mm:ss") : __('None');
  7002. },
  7003. operate: function (value, row, index, table) {
  7004. var showweigh = true;
  7005. var showedit = true;
  7006. var showdel = true;
  7007. if (typeof table != 'undefined') {
  7008. var options = table.bootstrapTable('getOptions');
  7009. if (options.extend.del_url == '')
  7010. showdel = false;
  7011. if (options.extend.edit_url == '')
  7012. showedit = false;
  7013. }
  7014. showweigh = typeof row[Table.config.dragsortfield] != 'undefined' ? true : false;
  7015. //行操作
  7016. var html = [];
  7017. if (showweigh)
  7018. html.push('<a href="javascript:;" class="btn btn-primary btn-dragsort btn-xs"><i class="fa fa-arrows"></i></a>');
  7019. if (showedit)
  7020. html.push('<a href="javascript:;" class="btn btn-success btn-editone btn-xs"><i class="fa fa-pencil"></i></a>');
  7021. if (showdel)
  7022. html.push('<a href="javascript:;" class="btn btn-danger btn-delone btn-xs"><i class="fa fa-trash"></i></a>');
  7023. return html.join(' ');
  7024. }
  7025. },
  7026. // 获取选中的条目ID集合
  7027. selectedids: function (table) {
  7028. var options = table.bootstrapTable('getOptions');
  7029. if (options.templateView) {
  7030. return $.map($("input[data-id][name='checkbox']:checked"), function (dom) {
  7031. return $(dom).data("id");
  7032. });
  7033. } else {
  7034. return $.map(table.bootstrapTable('getSelections'), function (row) {
  7035. return row[options.pk];
  7036. });
  7037. }
  7038. },
  7039. // 切换复选框状态
  7040. toggleattr: function (table) {
  7041. $("input[type='checkbox']", table).trigger('click');
  7042. }
  7043. },
  7044. };
  7045. return Table;
  7046. });
  7047. /**
  7048. * mOxie - multi-runtime File API & XMLHttpRequest L2 Polyfill
  7049. * v1.5.3
  7050. *
  7051. * Copyright 2013, Moxiecode Systems AB
  7052. * Released under GPL License.
  7053. *
  7054. * License: http://www.plupload.com/license
  7055. * Contributing: http://www.plupload.com/contributing
  7056. *
  7057. * Date: 2017-02-02
  7058. */
  7059. !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 w(e,t){var i=this;setTimeout(function(){e.call(i)},t||1)}var y=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:y,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:w}}),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.toLowerCase().split(/\s*,\s*/),o=0;o<n.length;o++){if("*"===n[o])return[];if(a=s.mimes[n[o]],i&&/^\w+$/.test(n[o]))u.push("."+n[o]);else if(a&&-1===e.inArray(a,u))u.push(a);else if(!a)return[]}return u},mimes2exts:function(t){var i=this,n=[];return e.each(t,function(t){if(t=t.toLowerCase(),"*"===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;
  7060. 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",["moxie/core/utils/Basic"],function(e){var t=function(i,n){var r,o=["source","scheme","authority","userInfo","user","pass","host","port","relative","path","directory","file","query","fragment"],a=o.length,s={http:80,https:443},u={},c=/^(?:([^:\/?#]+):)?(?:\/\/()(?:(?:()(?:([^:@\/]*):?([^:@\/]*))?@)?(\[[\da-fA-F:]+\]|[^:\/?#]*)(?::(\d*))?))?()(?:(()(?:(?:[^?#\/]*\/)*)()(?:[^?#]*))(?:\\?([^#]*))?(?:#(.*))?)/,l=c.exec(i||""),d=/^\/\/\w/.test(i);switch(e.typeOf(n)){case"undefined":n=t(document.location.href,!1);break;case"string":n=t(n,!1)}for(;a--;)l[a]&&(u[o[a]]=l[a]);if(r=!d&&!u.scheme,(d||r)&&(u.scheme=n.scheme),r){u.host=n.host,u.port=n.port;var m="";/^[^\/]/.test(u.path)&&(m=n.path,m=/\/[^\/]*\.[^\/]*$/.test(m)?m.replace(/\/[^\/]+$/,"/"):m.replace(/\/?$/,"/")),u.path=m+(u.path||"")}return u.port||(u.port=s[u.scheme]||80),u.port=parseInt(u.port,10),u.path||(u.path="/"),delete u.source,u},i=function(e){var i={http:80,https:443},n="object"==typeof e?e:t(e);return n.scheme+"://"+n.host+(n.port!==i[n.scheme]?":"+n.port:"")+n.path+(n.query?n.query:"")},n=function(e){function i(e){return[e.scheme,e.host,e.port].join("/")}return"string"==typeof e&&(e=t(e)),i(t())===i(e)};return{parseUrl:t,resolveUrl:i,hasSameOrigin:n}}),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:w,password:y,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,w,y,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(w=u||l.user,y=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);return this.exec("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(){this.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.meta&&this.meta.thumb&&this.meta.thumb.data.destroy(),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;
  7061. 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();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"},w={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=w[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,y.type)}function h(e,t){var n,r=this;return window.FileReader?(n=new FileReader,n.onload=function(){t.call(r,this.result)},n.onerror=function(){r.trigger("error",i.ImageError.WRONG_FORMAT)},n.readAsDataURL(e),void 0):t.call(this,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),w=g=v=y=null,b=!1}var g,x,v,w,y,E=this,b=!1,R=!0;t.extend(this,{loadFromBlob:function(e){var t=this.getRuntime(),n=arguments.length>1?arguments[1]:!0;if(!t.can("access_binary"))throw new i.RuntimeError(i.RuntimeError.NOT_SUPPORTED_ERR);return y=e,e.isDetached()?(w=e.getSource(),m.call(this,w),void 0):(h.call(this,e.getSource(),function(e){n&&(w=l(e)),m.call(this,e)}),void 0)},loadFromImage:function(e,t){this.meta=e.meta,y=new o(null,{name:e.name,size:e.size,type:e.type}),m.call(this,t?w=e.getAsBinaryString():e.getAsDataURL())},getInfo:function(){var t,i=this.getRuntime();return!x&&w&&i.can("access_image_binary")&&(x=new a(w)),t={width:e().width||0,height:e().height||0,type:y.type||u.getFileMime(y.name),size:w&&w.length||y.size||0,name:y.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:y.name||"",type:e,data:E.getAsDataURL(e,t)})):new o(null,{name:y.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 w||(w=l(E.getAsDataURL(e,t))),w;if("image/jpeg"!==e)w=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")}w=l(i),x&&(w=x.stripHeaders(w),R&&(x.meta&&x.meta.exif&&x.setExif({PixelXDimension:this.width,PixelYDimension:this.height}),w=x.writeHeaders(w)),x.purge(),x=null)}return b=!1,w},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&&!(e.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)
  7062. }),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)}),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&&!(e.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=w.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,w=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"),w.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)});
  7063. define("../libs/plupload/js/moxie.min", function(){});
  7064. /**
  7065. * Plupload - multi-runtime File Uploader
  7066. * v2.3.1
  7067. *
  7068. * Copyright 2013, Moxiecode Systems AB
  7069. * Released under GPL License.
  7070. *
  7071. * License: http://www.plupload.com/license
  7072. * Contributing: http://www.plupload.com/contributing
  7073. *
  7074. * Date: 2017-02-06
  7075. */
  7076. !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&&e.chunk_size>0&&(n.slice_blob=!0),l.isEmptyObj(e.resize)&&e.multipart!==!1||(n.send_binary_string=!0),e.http_method&&(n.use_http_method=e.http_method),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.3.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<x.length;t++)e||x[t].status!=l.QUEUED?i++:(e=x[t],this.trigger("BeforeUpload",e)&&(e.status=l.UPLOADING,this.trigger("UploadFile",e)));i==x.length&&(this.state!==l.STOPPED&&(this.state=l.STOPPED,this.trigger("StateChanged")),this.trigger("UploadComplete",x))}}function u(e){e.percent=e.size>0?Math.ceil(100*(e.loaded/e.size)):100,d()}function d(){var e,t,n,r=0;for(w.reset(),e=0;e<x.length;e++)t=x[e],t.size!==i?(w.size+=t.origSize,n=t.loaded*t.origSize/t.size,(!t.completeTimestamp||t.completeTimestamp>I)&&(r+=n),w.loaded+=n):w.size=i,t.status==l.DONE?w.uploaded++:t.status==l.FAILED?w.failed++:w.queued++;w.size===i?w.percent=x.length>0?Math.ceil(100*(w.uploaded/x.length)):0:(w.bytesPerSec=Math.ceil(r/((+new Date-I||1)/1e3)),w.percent=w.size>0?Math.ceil(100*(w.loaded/w.size)):0)}function c(){var e=U[0]||F[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",_),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:P,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++,U.push(this),s()},u.onchange=function(){n.addFile(this.files)},u.bind("mouseenter mouseleave mousedown mouseup",function(t){A||(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++,F.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 m(e,i,r){function s(e,i,n){var r=S[e];switch(e){case"max_file_size":"max_file_size"===e&&(S.max_file_size=S.filters.max_file_size=i);break;case"chunk_size":(i=l.parseSize(i))&&(S[e]=i,S.send_file_name=!0);break;case"multipart":S[e]=i,i||(S.send_file_name=!0);break;case"http_method":S[e]="PUT"===i.toUpperCase()?"PUT":"POST";break;case"unique_names":S[e]=i,i&&(S.send_file_name=!0);break;case"filters":"array"===l.typeOf(i)&&(i={mime_types:i}),n?l.extend(S.filters,i):S.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),S.filters.mime_types=i.mime_types);break;case"resize":S.resize=i?l.extend({preserve_headers:!0,crop:!1},i):!1;break;case"prevent_duplicates":S.prevent_duplicates=S.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":S[e]=i,n||(u=!0);break;default:S[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?(S.required_features=n(l.extend({},S)),P=n(l.extend({},S,{required_features:!0}))):u&&(a.trigger("Destroy"),g.call(a,S,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 _(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(){c-->0?r(s,1e3):(i.loaded=g,e.trigger("Error",{code:l.HTTP_ERROR,message:l.translate("HTTP Error."),file:i,response:T.responseText,status:T.status,responseHeaders:T.getAllResponseHeaders()}))}function s(){var t,n,r={};i.status===l.UPLOADING&&e.state!==l.STOPPED&&(e.settings.send_file_name&&(r.name=i.target_name||i.name),d&&p.chunks&&o.size>d?(n=Math.min(d,o.size-g),t=o.slice(g,g+n)):(n=o.size,t=o),d&&p.chunks&&(e.settings.send_chunk_number?(r.chunk=Math.ceil(g/d),r.chunks=Math.ceil(o.size/d)):(r.offset=g,r.total=o.size)),e.trigger("BeforeChunkUpload",i,r,t,g)&&a(r,t,n))}function a(a,d,f){var h;T=new t.xhr.XMLHttpRequest,T.upload&&(T.upload.onprogress=function(t){i.loaded=Math.min(i.size,g+t.loaded),e.trigger("UploadProgress",i)}),T.onload=function(){return T.status>=400?(n(),void 0):(c=e.settings.max_retries,f<o.size?(d.destroy(),g+=f,i.loaded=Math.min(g,o.size),e.trigger("ChunkUploaded",i,{offset:i.loaded,total:o.size,response:T.responseText,status:T.status,responseHeaders:T.getAllResponseHeaders()}),"Android Browser"===l.ua.browser&&e.trigger("UploadProgress",i)):i.loaded=i.size,d=h=null,!g||g>=o.size?(i.size!=i.origSize&&(o.destroy(),o=null),e.trigger("UploadProgress",i),i.status=l.DONE,i.completeTimestamp=+new Date,e.trigger("FileUploaded",i,{response:T.responseText,status:T.status,responseHeaders:T.getAllResponseHeaders()})):r(s,1),void 0)},T.onerror=function(){n()},T.onloadend=function(){this.destroy(),T=null},e.settings.multipart&&p.multipart?(T.open(e.settings.http_method,u,!0),l.each(e.settings.headers,function(e,t){T.setRequestHeader(t,e)}),h=new t.xhr.FormData,l.each(l.extend(a,e.settings.multipart_params),function(e,t){h.append(t,e)}),h.append(e.settings.file_data_name,d),T.send(h,{runtime_order:e.settings.runtimes,required_caps:e.settings.required_features,preferred_caps:P,swf_url:e.settings.flash_swf_url,xap_url:e.settings.silverlight_xap_url})):(u=l.buildUrl(e.settings.url,l.extend(a,e.settings.multipart_params)),T.open(e.settings.http_method,u,!0),l.each(e.settings.headers,function(e,t){T.setRequestHeader(t,e)}),T.hasRequestHeader("Content-Type")||T.setRequestHeader("Content-Type","application/octet-stream"),T.send(d,{runtime_order:e.settings.runtimes,required_caps:e.settings.required_features,preferred_caps:P,swf_url:e.settings.flash_swf_url,xap_url:e.settings.silverlight_xap_url}))}var o,u=e.settings.url,d=e.settings.chunk_size,c=e.settings.max_retries,p=e.features,g=0;i.loaded&&(g=i.loaded=d?d*Math.floor(i.loaded/d):0),o=i.getSource(),!l.isEmptyObj(e.settings.resize)&&f(o,"send_binary_string")&&-1!==l.inArray(o.type,["image/jpeg","image/png"])?h.call(this,o,e.settings.resize,function(e){o=e,i.size=e.size,s()}):s()}function v(e,t){u(t)}function b(e){if(e.state==l.STARTED)I=+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(){T&&T.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,t.file.completeTimestamp=+new Date,u(t.file),e.state==l.STARTED&&(e.trigger("CancelUpload"),r(function(){a.call(e)},1)))}function O(e){e.stop(),l.each(x,function(e){e.destroy()}),x=[],U.length&&(l.each(U,function(e){e.destroy()}),U=[]),F.length&&(l.each(F,function(e){e.destroy()}),F=[]),P={},A=!1,I=T=null,w.reset()}var S,I,w,T,D=l.guid(),x=[],P={},U=[],F=[],A=!1;S={chunk_size:0,file_data_name:"file",filters:{mime_types:[],prevent_duplicates:!1,max_file_size:0},flash_swf_url:"js/Moxie.swf",http_method:"POST",max_retries:0,multipart:!0,multi_selection:!0,resize:!1,runtimes:o.order,send_file_name:!0,send_chunk_number:!0,silverlight_xap_url:"js/Moxie.xap"},m.call(this,e,null,!0),w=new l.QueueProgress,l.extend(this,{id:D,uid:D,state:l.STOPPED,features:{},runtime:null,files:x,settings:S,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):S.browse_button||S.drop_element?(g.call(i,S,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){m.call(this,e,t,!this.runtime)},getOption:function(e){return e?S[e]:S},refresh:function(){U.length&&l.each(U,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(){A=arguments[0]!==i?arguments[0]:!0,U.length&&l.each(U,function(e){e.disable(A)}),this.trigger("DisableBrowse",A)},getFile:function(e){var t;for(t=x.length-1;t>=0;t--)if(x[t].id===e)return x[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||(x.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=x.length-1;i>=0;i--)if(x[i].id===t)return this.splice(i,1)[0]},splice:function(e,t){var n=x.splice(e===i?0:e,t===i?x.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"),S=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(),completeTimestamp:0,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)});
  7077. define('upload',['jquery', 'bootstrap', 'plupload', 'template'], function ($, undefined, Plupload, Template) {
  7078. var Upload = {
  7079. list: {},
  7080. config: {
  7081. container: document.body,
  7082. classname: '.plupload:not([initialized])',
  7083. 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>',
  7084. },
  7085. api: {
  7086. //Plupload上传
  7087. plupload: function (element, onAfterUpload) {
  7088. element = typeof element == 'undefined' ? Upload.config.classname : element;
  7089. $(element, Upload.config.container).each(function () {
  7090. $(this).attr("initialized", true);
  7091. var that = this;
  7092. var id = $(this).prop("id");
  7093. var url = $(this).data("url");
  7094. var maxsize = $(this).data("maxsize");
  7095. var mimetype = $(this).data("mimetype");
  7096. var multipart = $(this).data("multipart");
  7097. var multiple = $(this).data("multiple");
  7098. //上传URL
  7099. url = url ? url : Config.upload.uploadurl;
  7100. url = Fast.api.fixurl(url);
  7101. //填充ID
  7102. var input_id = $(that).data("input-id") ? $(that).data("input-id") : "";
  7103. //预览ID
  7104. var preview_id = $(that).data("preview-id") ? $(that).data("preview-id") : "";
  7105. //最大可上传
  7106. maxsize = typeof maxsize !== "undefined" ? maxsize : Config.upload.maxsize;
  7107. //文件类型
  7108. mimetype = typeof mimetype !== "undefined" ? mimetype : Config.upload.mimetype;
  7109. //请求的表单参数
  7110. multipart = typeof multipart !== "undefined" ? multipart : Config.upload.multipart;
  7111. //是否支持批量上传
  7112. multiple = typeof multiple !== "undefined" ? multiple : Config.upload.multiple;
  7113. //生成Plupload实例
  7114. Upload.list[id] = new Plupload.Uploader({
  7115. runtimes: 'html5,flash,silverlight,html4',
  7116. multi_selection: multiple, //是否允许多选批量上传
  7117. browse_button: id, // 浏览按钮的ID
  7118. container: $(this).parent().get(0), //取按钮的上级元素
  7119. flash_swf_url: '/assets/libs/plupload/js/Moxie.swf',
  7120. silverlight_xap_url: '/assets/libs/plupload/js/Moxie.xap',
  7121. filters: {
  7122. max_file_size: maxsize,
  7123. mime_types: mimetype
  7124. },
  7125. url: url,
  7126. multipart_params: multipart,
  7127. init: {
  7128. PostInit: function () {
  7129. },
  7130. FilesAdded: function (up, files) {
  7131. Plupload.each(files, function (file) {
  7132. //这里可以改成其它的表现形式
  7133. //document.getElementById('filelist').innerHTML += '<div id="' + file.id + '">' + file.name + ' (' + plupload.formatSize(file.size) + ') <b></b></div>';
  7134. });
  7135. $(that).data("bakup-html", $(that).html());
  7136. //添加后立即上传
  7137. setTimeout(function () {
  7138. Upload.list[id].start();
  7139. }, 1);
  7140. },
  7141. UploadProgress: function (up, file) {
  7142. //这里可以改成其它的表现形式
  7143. //document.getElementById(file.id).getElementsByTagName('b')[0].innerHTML = '<span>' + file.percent + "%</span>";
  7144. $(that).prop("disabled", true).html("<i class='fa fa-upload'></i> " + __('Upload') + file.percent + "%");
  7145. },
  7146. FileUploaded: function (up, file, info) {
  7147. var options = this.getOption();
  7148. //还原按钮文字及状态
  7149. $(that).prop("disabled", false).html($(that).data("bakup-html"));
  7150. //这里可以改成其它的表现形式
  7151. //document.getElementById(file.id).getElementsByTagName('b')[0].innerHTML += (' [Url]: ' + '<a href="' + url + '" target="_blank">' + url + '</a>');
  7152. //这里建议不修改
  7153. try {
  7154. var ret = JSON.parse(info.response);
  7155. if (ret.hasOwnProperty('code')) {
  7156. ret.data = ret.code == 200 ? ret : ret.data;
  7157. ret.code = ret.code == 200 ? 1 : ret.code;
  7158. var data = ret.hasOwnProperty("data") && ret.data != "" ? ret.data : null;
  7159. var msg = ret.hasOwnProperty("msg") && ret.msg != "" ? ret.msg : "";
  7160. if (ret.code === 1) {
  7161. if (input_id) {
  7162. var urlArr = [];
  7163. var inputObj = $("#" + input_id);
  7164. if (options.multi_selection && inputObj.val() != "") {
  7165. urlArr.push(inputObj.val());
  7166. }
  7167. urlArr.push(data.url);
  7168. inputObj.val(urlArr.join(",")).trigger("change");
  7169. }
  7170. var afterUpload = $("#" + id).data("after-upload");
  7171. if (afterUpload && typeof Upload.api.custom[afterUpload] == 'function') {
  7172. Upload.api.custom[afterUpload].call(that, data);
  7173. }
  7174. if (typeof onAfterUpload == 'function') {
  7175. onAfterUpload.call(that, data);
  7176. }
  7177. } else {
  7178. Toastr.error(msg ? msg : __('Operation failed'));
  7179. }
  7180. } else {
  7181. Toastr.error(e.message + "(code:-2)");
  7182. }
  7183. } catch (e) {
  7184. Toastr.error(e.message + "(code:-1)");
  7185. }
  7186. },
  7187. Error: function (up, err) {
  7188. Toastr.error(err.message + "(code:" + err.code + ")");
  7189. }
  7190. }
  7191. });
  7192. //拖动排序
  7193. if (preview_id && multiple) {
  7194. require(['dragsort'], function () {
  7195. $("#" + preview_id).dragsort({
  7196. dragSelector: "li",
  7197. dragEnd: function () {
  7198. $("#" + preview_id).trigger("fa.preview.change");
  7199. },
  7200. placeHolderTemplate: '<li class="col-xs-3"></li>'
  7201. });
  7202. });
  7203. }
  7204. if (preview_id && input_id) {
  7205. $(document.body).on("keyup change", "#" + input_id, function () {
  7206. var inputStr = $("#" + input_id).val();
  7207. var inputArr = inputStr.split(/\,/);
  7208. $("#" + preview_id).empty();
  7209. var tpl = $("#" + preview_id).data("template") ? $("#" + preview_id).data("template") : "";
  7210. $.each(inputArr, function (i, j) {
  7211. if (!j) {
  7212. return true;
  7213. }
  7214. var data = {url: j, fullurl: Fast.api.cdnurl(j), data: $(that).data()};
  7215. var html = tpl ? Template(tpl, data) : Template.render(Upload.config.previewtpl, data);
  7216. $("#" + preview_id).append(html);
  7217. });
  7218. });
  7219. $("#" + input_id).trigger("keyup");
  7220. }
  7221. if (preview_id) {
  7222. // 监听事件
  7223. $(document.body).on("fa.preview.change", "#" + preview_id, function () {
  7224. var urlArr = new Array();
  7225. $("#" + preview_id + " [data-url]").each(function (i, j) {
  7226. urlArr.push($(this).data("url"));
  7227. });
  7228. if (input_id) {
  7229. $("#" + input_id).val(urlArr.join(","));
  7230. }
  7231. });
  7232. //移除按钮事件
  7233. $(document.body).on("click", "#" + preview_id + " .btn-trash", function () {
  7234. $(this).closest("li").remove();
  7235. $("#" + preview_id).trigger("fa.preview.change");
  7236. });
  7237. }
  7238. Upload.list[id].init();
  7239. });
  7240. },
  7241. // AJAX异步上传,主要用于Summernote上传回调
  7242. send: function (file, callback) {
  7243. var data = new FormData();
  7244. data.append("file", file);
  7245. $.each(Config.upload.multipart, function (k, v) {
  7246. data.append(k, v);
  7247. });
  7248. $.ajax({
  7249. url: Config.upload.uploadurl,
  7250. data: data,
  7251. cache: false,
  7252. contentType: false,
  7253. processData: false,
  7254. type: 'POST',
  7255. dataType: 'json',
  7256. success: function (ret) {
  7257. if (ret.hasOwnProperty("code")) {
  7258. ret.data = ret.code == 200 ? ret : ret.data;
  7259. ret.code = ret.code == 200 ? 1 : ret.code;
  7260. var data = ret.hasOwnProperty("data") && ret.data != "" ? ret.data : null;
  7261. var msg = ret.hasOwnProperty("msg") && ret.msg != "" ? ret.msg : "";
  7262. if (ret.code === 1) {
  7263. // 如果回调存在,则直接调用回调
  7264. if (typeof callback == 'function') {
  7265. callback.call(this, data);
  7266. } else {
  7267. Toastr.success(msg ? msg : __('Operation completed'));
  7268. }
  7269. } else {
  7270. Toastr.error(msg ? msg : __('Operation failed'));
  7271. }
  7272. } else {
  7273. Toastr.error(__('Unknown data format'));
  7274. }
  7275. }, error: function () {
  7276. Toastr.error(__('Network error'));
  7277. }
  7278. });
  7279. },
  7280. custom: {
  7281. //自定义上传完成回调
  7282. afteruploadcallback: function (response) {
  7283. console.log(this, response);
  7284. alert("Custom Callback,Response URL:" + response.url);
  7285. },
  7286. },
  7287. }
  7288. };
  7289. return Upload;
  7290. });
  7291. /*! nice-validator 1.1.1
  7292. * (c) 2012-2017 Jony Zhang <niceue@live.com>, MIT Licensed
  7293. * https://github.com/niceue/nice-validator
  7294. */
  7295. ;(function(factory) {
  7296. typeof module === "object" && module.exports ? module.exports = factory( require( "jquery" ) ) :
  7297. typeof define === 'function' && define.amd ? define('validator-core',['jquery'], factory) :
  7298. factory(jQuery);
  7299. }(function($, undefined) {
  7300. "use strict";
  7301. var NS = 'validator',
  7302. CLS_NS = '.' + NS,
  7303. CLS_NS_RULE = '.rule',
  7304. CLS_NS_FIELD = '.field',
  7305. CLS_NS_FORM = '.form',
  7306. CLS_WRAPPER = 'nice-' + NS,
  7307. CLS_MSG_BOX = 'msg-box',
  7308. ARIA_INVALID = 'aria-invalid',
  7309. DATA_RULE = 'data-rule',
  7310. DATA_MSG = 'data-msg',
  7311. DATA_TIP = 'data-tip',
  7312. DATA_OK = 'data-ok',
  7313. DATA_TIMELY = 'data-timely',
  7314. DATA_TARGET = 'data-target',
  7315. DATA_DISPLAY = 'data-display',
  7316. DATA_MUST = 'data-must',
  7317. NOVALIDATE = 'novalidate',
  7318. INPUT_SELECTOR = ':verifiable',
  7319. rRules = /(&)?(!)?\b(\w+)(?:\[\s*(.*?\]?)\s*\]|\(\s*(.*?\)?)\s*\))?\s*(;|\|)?/g,
  7320. rRule = /(\w+)(?:\[\s*(.*?\]?)\s*\]|\(\s*(.*?\)?)\s*\))?/,
  7321. rDisplay = /(?:([^:;\(\[]*):)?(.*)/,
  7322. rDoubleBytes = /[^\x00-\xff]/g,
  7323. rPos = /top|right|bottom|left/,
  7324. rAjaxType = /(?:(cors|jsonp):)?(?:(post|get):)?(.+)/i,
  7325. rUnsafe = /[<>'"`\\]|&#x?\d+[A-F]?;?|%3[A-F]/gmi,
  7326. noop = $.noop,
  7327. proxy = $.proxy,
  7328. trim = $.trim,
  7329. isFunction = $.isFunction,
  7330. isString = function(s) {
  7331. return typeof s === 'string';
  7332. },
  7333. isObject = function(o) {
  7334. return o && Object.prototype.toString.call(o) === '[object Object]';
  7335. },
  7336. isIE = document.documentMode || +(navigator.userAgent.match(/MSIE (\d+)/) && RegExp.$1),
  7337. attr = function(el, key, value) {
  7338. if (!el || !el.tagName) return null;
  7339. if (value !== undefined) {
  7340. if (value === null) el.removeAttribute(key);
  7341. else el.setAttribute(key, '' + value);
  7342. } else {
  7343. return el.getAttribute(key);
  7344. }
  7345. },
  7346. novalidateonce,
  7347. preinitialized = {},
  7348. defaults = {
  7349. debug: 0,
  7350. theme: 'default',
  7351. ignore: '',
  7352. focusInvalid: true,
  7353. focusCleanup: false,
  7354. stopOnError: false,
  7355. beforeSubmit: null,
  7356. valid: null,
  7357. invalid: null,
  7358. validation: null,
  7359. formClass: 'n-default',
  7360. validClass: 'n-valid',
  7361. invalidClass: 'n-invalid',
  7362. bindClassTo: null
  7363. },
  7364. fieldDefaults = {
  7365. timely: 1,
  7366. display: null,
  7367. target: null,
  7368. ignoreBlank: false,
  7369. showOk: true,
  7370. // Translate ajax response to validation result
  7371. dataFilter: function (data) {
  7372. if ( isString(data) || ( isObject(data) && ('error' in data || 'ok' in data) ) ) {
  7373. return data;
  7374. }
  7375. },
  7376. msgMaker: function(opt) {
  7377. var html;
  7378. html = '<span role="alert" class="msg-wrap n-'+ opt.type + '">' + opt.arrow;
  7379. if (opt.result) {
  7380. $.each(opt.result, function(i, obj){
  7381. html += '<span class="n-'+ obj.type +'">' + opt.icon + '<span class="n-msg">' + obj.msg + '</span></span>';
  7382. });
  7383. } else {
  7384. html += opt.icon + '<span class="n-msg">' + opt.msg + '</span>';
  7385. }
  7386. html += '</span>';
  7387. return html;
  7388. },
  7389. msgWrapper: 'span',
  7390. msgArrow: '',
  7391. msgIcon: '<span class="n-icon"></span>',
  7392. msgClass: 'n-right',
  7393. msgStyle: '',
  7394. msgShow: null,
  7395. msgHide: null
  7396. },
  7397. themes = {};
  7398. /** jQuery Plugin
  7399. * @param {Object} options
  7400. debug {Boolean} 0 Whether to enable debug mode
  7401. timely {Number} 1 Whether to enable timely validation
  7402. theme {String} 'default' Theme name
  7403. stopOnError {Boolean} false Whether to stop validate when found an error input
  7404. focusCleanup {Boolean} false Whether to clean up the field message when focus the field
  7405. focusInvalid {Boolean} true Whether to focus the field that is invalid
  7406. ignoreBlank {Boolean} false When the field has no value, whether to ignore validation
  7407. ignore {jqSelector} '' Ignored fields (Using jQuery selector)
  7408. beforeSubmit {Function} Do something before submit form
  7409. dataFilter {Function} Convert ajax results
  7410. valid {Function} Triggered when the form is valid
  7411. invalid {Function} Triggered when the form is invalid
  7412. validClass {String} 'n-valid' Add this class name to a valid field
  7413. invalidClass {String} 'n-invalid' Add this class name to a invalid field
  7414. bindClassTo {jqSelector} ':verifiable' Which element should the className binding to
  7415. display {Function} Callback function to get dynamic display
  7416. target {Function} Callback function to get dynamic target
  7417. msgShow {Function} Trigger this callback when show message
  7418. msgHide {Function} Trigger this callback when hide message
  7419. msgWrapper {String} 'span' Message wrapper tag name
  7420. msgMaker {Function} Callback function to make message HTML
  7421. msgArrow {String} Message arrow template
  7422. msgIcon {String} Message icon template
  7423. msgStyle {String} Custom message css style
  7424. msgClass {String} Additional added to the message class names
  7425. formClass {String} Additional added to the form class names
  7426. messages {Object} Custom messages for the current instance
  7427. rules {Object} Custom rules for the current instance
  7428. fields {Object} Field validation configuration
  7429. {String} key name|#id
  7430. {String|Object} value Rule string or an object which can pass more arguments
  7431. fields[key][rule] {String} Rule string
  7432. fields[key][display] {String|Function}
  7433. fields[key][tip] {String} Custom tip message
  7434. fields[key][ok] {String} Custom success message
  7435. fields[key][msg] {Object} Custom error message
  7436. fields[key][msgStyle] {String} Custom message style
  7437. fields[key][msgClass] {String} A className which added to message placeholder element
  7438. fields[key][msgWrapper] {String} Tag name of the message placeholder element
  7439. fields[key][msgMaker] {Function} A function to custom message HTML
  7440. fields[key][dataFilter] {Function} A function to convert ajax results
  7441. fields[key][valid] {Function} A function triggered when field is valid
  7442. fields[key][invalid] {Function} A function triggered when field is invalid
  7443. fields[key][must] {Boolean} If set true, we always check the field even has remote checking
  7444. fields[key][timely] {Boolean} Whether to enable timely validation
  7445. fields[key][target] {jqSelector} Define placement of a message
  7446. */
  7447. $.fn.validator = function(options) {
  7448. var that = this,
  7449. args = arguments;
  7450. if (that.is(INPUT_SELECTOR)) return that;
  7451. if (!that.is('form')) that = this.find('form');
  7452. if (!that.length) that = this;
  7453. that.each(function() {
  7454. var instance = $(this).data(NS);
  7455. if (instance) {
  7456. if ( isString(options) ) {
  7457. if ( options.charAt(0) === '_' ) return;
  7458. instance[options].apply(instance, [].slice.call(args, 1));
  7459. }
  7460. else if (options) {
  7461. instance._reset(true);
  7462. instance._init(this, options);
  7463. }
  7464. } else {
  7465. new Validator(this, options);
  7466. }
  7467. });
  7468. return this;
  7469. };
  7470. // Validate a field, or an area
  7471. $.fn.isValid = function(callback, hideMsg) {
  7472. var me = _getInstance(this[0]),
  7473. hasCallback = isFunction(callback),
  7474. ret, opt;
  7475. if (!me) return true;
  7476. if (!hasCallback && hideMsg === undefined) hideMsg = callback;
  7477. me.checkOnly = !!hideMsg;
  7478. opt = me.options;
  7479. ret = me._multiValidate(
  7480. this.is(INPUT_SELECTOR) ? this : this.find(INPUT_SELECTOR),
  7481. function(isValid){
  7482. if (!isValid && opt.focusInvalid && !me.checkOnly) {
  7483. // navigate to the error element
  7484. me.$el.find('[' + ARIA_INVALID + ']:first').focus();
  7485. }
  7486. if (hasCallback) {
  7487. if (callback.length) {
  7488. callback(isValid);
  7489. } else if (isValid) {
  7490. callback();
  7491. }
  7492. }
  7493. me.checkOnly = false;
  7494. }
  7495. );
  7496. // If you pass a callback, we maintain the jQuery object chain
  7497. return hasCallback ? this : ret;
  7498. };
  7499. $.extend($.expr.pseudos || $.expr[':'], {
  7500. // A faster selector than ":input:not(:submit,:button,:reset,:image,:disabled,[contenteditable])"
  7501. verifiable: function(elem) {
  7502. var name = elem.nodeName.toLowerCase();
  7503. return ( name === 'input' && !({submit: 1, button: 1, reset: 1, image: 1})[elem.type] ||
  7504. name === 'select' ||
  7505. name === 'textarea' ||
  7506. elem.contentEditable === 'true'
  7507. ) && !elem.disabled;
  7508. },
  7509. // any value, but not only whitespace
  7510. filled: function(elem) {
  7511. return !!trim($(elem).val());
  7512. }
  7513. });
  7514. /**
  7515. * Creates a new Validator
  7516. *
  7517. * @class
  7518. * @param {Element} element - form element
  7519. * @param {Object} options - options for validator
  7520. */
  7521. function Validator(element, options) {
  7522. var me = this;
  7523. if ( !(me instanceof Validator) ) {
  7524. return new Validator(element, options);
  7525. }
  7526. if (Validator.pending) {
  7527. $(window).on('validatorready', init);
  7528. } else {
  7529. init();
  7530. }
  7531. function init() {
  7532. me.$el = $(element);
  7533. if (me.$el.length) {
  7534. me._init(me.$el[0], options);
  7535. }
  7536. else if (isString(element)) {
  7537. preinitialized[element] = options;
  7538. }
  7539. }
  7540. }
  7541. Validator.prototype = {
  7542. _init: function(element, options) {
  7543. var me = this,
  7544. opt, themeOpt, dataOpt;
  7545. // Initialization options
  7546. if ( isFunction(options) ) {
  7547. options = {
  7548. valid: options
  7549. };
  7550. }
  7551. options = me._opt = options || {};
  7552. dataOpt = attr(element, 'data-'+ NS +'-option');
  7553. dataOpt = me._dataOpt = dataOpt && dataOpt.charAt(0) === '{' ? (new Function("return " + dataOpt))() : {};
  7554. themeOpt = me._themeOpt = themes[ options.theme || dataOpt.theme || defaults.theme ];
  7555. opt = me.options = $.extend({}, defaults, fieldDefaults, themeOpt, me.options, options, dataOpt);
  7556. me.rules = new Rules(opt.rules, true);
  7557. me.messages = new Messages(opt.messages, true);
  7558. me.Field = _createFieldFactory(me);
  7559. me.elements = me.elements || {};
  7560. me.deferred = {};
  7561. me.errors = {};
  7562. me.fields = {};
  7563. // Initialization fields
  7564. me._initFields(opt.fields);
  7565. // Initialization events and make a cache
  7566. if ( !me.$el.data(NS) ) {
  7567. me.$el.data(NS, me).addClass(CLS_WRAPPER +' '+ opt.formClass)
  7568. .on('form-submit-validate', function(e, a, $form, opts, veto) {
  7569. me.vetoed = veto.veto = !me.isValid;
  7570. me.ajaxFormOptions = opts;
  7571. })
  7572. .on('submit'+ CLS_NS +' validate'+ CLS_NS, proxy(me, '_submit'))
  7573. .on('reset'+ CLS_NS, proxy(me, '_reset'))
  7574. .on('showmsg'+ CLS_NS, proxy(me, '_showmsg'))
  7575. .on('hidemsg'+ CLS_NS, proxy(me, '_hidemsg'))
  7576. .on('focusin'+ CLS_NS + ' click'+ CLS_NS, INPUT_SELECTOR, proxy(me, '_focusin'))
  7577. .on('focusout'+ CLS_NS +' validate'+ CLS_NS, INPUT_SELECTOR, proxy(me, '_focusout'))
  7578. .on('keyup'+ CLS_NS +' input'+ CLS_NS + ' compositionstart compositionend', INPUT_SELECTOR, proxy(me, '_focusout'))
  7579. .on('click'+ CLS_NS, ':radio,:checkbox', 'click', proxy(me, '_focusout'))
  7580. .on('change'+ CLS_NS, 'select,input[type="file"]', 'change', proxy(me, '_focusout'));
  7581. // cache the novalidate attribute value
  7582. me._NOVALIDATE = attr(element, NOVALIDATE);
  7583. // Initialization is complete, stop off default HTML5 form validation
  7584. // If use "jQuery.attr('novalidate')" in IE7 will complain: "SCRIPT3: Member not found."
  7585. attr(element, NOVALIDATE, NOVALIDATE);
  7586. }
  7587. // Display all messages in target container
  7588. if ( isString(opt.target) ) {
  7589. me.$el.find(opt.target).addClass('msg-container');
  7590. }
  7591. },
  7592. // Guess whether the form use ajax submit
  7593. _guessAjax: function(form) {
  7594. var me = this;
  7595. if ( !(me.isAjaxSubmit = !!me.options.valid) ) {
  7596. // if there is a "valid.form" event
  7597. var events = ($._data || $.data)(form, "events");
  7598. me.isAjaxSubmit = issetEvent(events, 'valid', 'form') || issetEvent(events, 'submit', 'form-plugin');
  7599. }
  7600. function issetEvent(events, name, namespace) {
  7601. if ( events && events[name] &&
  7602. $.map(events[name], function(e){
  7603. return ~e.namespace.indexOf(namespace) ? 1 : null;
  7604. }).length
  7605. ) {
  7606. return true;
  7607. }
  7608. return false;
  7609. }
  7610. },
  7611. _initFields: function(fields) {
  7612. var me = this, k, arr, i,
  7613. clear = fields === null;
  7614. // Processing field information
  7615. if (clear) fields = me.fields;
  7616. if ( isObject(fields) ) {
  7617. for (k in fields) {
  7618. if (~k.indexOf(',')) {
  7619. arr = k.split(',');
  7620. i = arr.length;
  7621. while (i--) {
  7622. initField(trim(arr[i]), fields[k]);
  7623. }
  7624. } else {
  7625. initField(k, fields[k]);
  7626. }
  7627. }
  7628. }
  7629. // Parsing DOM rules
  7630. me.$el.find(INPUT_SELECTOR).each(function() {
  7631. me._parse(this);
  7632. });
  7633. function initField(k, v) {
  7634. // delete a field from settings
  7635. if ( v === null || clear ) {
  7636. var el = me.elements[k];
  7637. if (el) me._resetElement(el, true);
  7638. delete me.fields[k];
  7639. } else {
  7640. me.fields[k] = new me.Field(k, isString(v) ? {rule: v} : v, me.fields[k]);
  7641. }
  7642. }
  7643. },
  7644. // Parsing a field
  7645. _parse: function(el) {
  7646. var me = this,
  7647. field,
  7648. key = el.name,
  7649. display,
  7650. timely,
  7651. dataRule = attr(el, DATA_RULE);
  7652. dataRule && attr(el, DATA_RULE, null);
  7653. // If the field has passed the key as id mode, or it doesn't has a name
  7654. if ( el.id && (
  7655. ('#' + el.id in me.fields) ||
  7656. !key ||
  7657. // If dataRule and element are diffrent from old's, we use ID mode.
  7658. (dataRule !== null && (field = me.fields[key]) && dataRule !== field.rule && el.id !== field.key)
  7659. )
  7660. ) {
  7661. key = '#' + el.id;
  7662. }
  7663. // Generate id
  7664. if (!key) {
  7665. key = '#' + (el.id = 'N' + String(Math.random()).slice(-12));
  7666. }
  7667. field = me.getField(key, true);
  7668. // The priority of passing parameter by DOM is higher than by JS.
  7669. field.rule = dataRule || field.rule;
  7670. if (display = attr(el, DATA_DISPLAY)) {
  7671. field.display = display;
  7672. }
  7673. if (field.rule) {
  7674. if ( attr(el, DATA_MUST) !== null || /\b(?:match|checked)\b/.test(field.rule) ) {
  7675. field.must = true;
  7676. }
  7677. if ( /\brequired\b/.test(field.rule) ) {
  7678. field.required = true;
  7679. }
  7680. if (timely = attr(el, DATA_TIMELY)) {
  7681. field.timely = +timely;
  7682. } else if (field.timely > 3) {
  7683. attr(el, DATA_TIMELY, field.timely);
  7684. }
  7685. me._parseRule(field);
  7686. field.old = {};
  7687. }
  7688. if ( isString(field.target) ) {
  7689. attr(el, DATA_TARGET, field.target);
  7690. }
  7691. if ( isString(field.tip) ) {
  7692. attr(el, DATA_TIP, field.tip);
  7693. }
  7694. return me.fields[key] = field;
  7695. },
  7696. // Parsing field rules
  7697. _parseRule: function(field) {
  7698. var arr = rDisplay.exec(field.rule);
  7699. if (!arr) return;
  7700. // current rule index
  7701. field._i = 0;
  7702. if (arr[1]) {
  7703. field.display = arr[1];
  7704. }
  7705. if (arr[2]) {
  7706. field._rules = [];
  7707. arr[2].replace(rRules, function(){
  7708. var args = arguments;
  7709. args[4] = args[4] || args[5];
  7710. field._rules.push({
  7711. and: args[1] === "&",
  7712. not: args[2] === "!",
  7713. or: args[6] === "|",
  7714. method: args[3],
  7715. params: args[4] ? $.map( args[4].split(', '), trim ) : undefined
  7716. });
  7717. });
  7718. }
  7719. },
  7720. // Verify a zone
  7721. _multiValidate: function($inputs, doneCallback){
  7722. var me = this,
  7723. opt = me.options;
  7724. me.hasError = false;
  7725. if (opt.ignore) {
  7726. $inputs = $inputs.not(opt.ignore);
  7727. }
  7728. $inputs.each(function() {
  7729. me._validate(this);
  7730. if (me.hasError && opt.stopOnError) {
  7731. // stop the validation
  7732. return false;
  7733. }
  7734. });
  7735. // Need to wait for all fields validation complete, especially asynchronous validation
  7736. if (doneCallback) {
  7737. me.validating = true;
  7738. $.when.apply(
  7739. null,
  7740. $.map(me.deferred, function(v){return v;})
  7741. ).done(function(){
  7742. doneCallback.call(me, !me.hasError);
  7743. me.validating = false;
  7744. });
  7745. }
  7746. // If the form does not contain asynchronous validation, the return value is correct.
  7747. // Otherwise, you should detect form validation result through "doneCallback".
  7748. return !$.isEmptyObject(me.deferred) ? undefined : !me.hasError;
  7749. },
  7750. // Validate the whole form
  7751. _submit: function(e) {
  7752. var me = this,
  7753. opt = me.options,
  7754. form = e.target,
  7755. canSubmit = e.type === 'submit' && !e.isDefaultPrevented();
  7756. e.preventDefault();
  7757. if (
  7758. novalidateonce && ~(novalidateonce = false) ||
  7759. // Prevent duplicate submission
  7760. me.submiting ||
  7761. // Receive the "validate" event only from the form.
  7762. e.type === 'validate' && me.$el[0] !== form ||
  7763. // trigger the beforeSubmit callback.
  7764. isFunction(opt.beforeSubmit) && opt.beforeSubmit.call(me, form) === false
  7765. ) {
  7766. return;
  7767. }
  7768. if (me.isAjaxSubmit === undefined) {
  7769. me._guessAjax(form);
  7770. }
  7771. me._debug('log', '\n<<< event: ' + e.type);
  7772. me._reset();
  7773. me.submiting = true;
  7774. me._multiValidate(
  7775. me.$el.find(INPUT_SELECTOR),
  7776. function(isValid){
  7777. var ret = (isValid || opt.debug === 2) ? 'valid' : 'invalid',
  7778. errors;
  7779. if (!isValid) {
  7780. if (opt.focusInvalid) {
  7781. // navigate to the error element
  7782. me.$el.find('[' + ARIA_INVALID + ']:first').focus();
  7783. }
  7784. errors = $.map(me.errors, function(err){return err;});
  7785. }
  7786. // releasing submit
  7787. me.submiting = false;
  7788. me.isValid = isValid;
  7789. // trigger callback and event
  7790. isFunction(opt[ret]) && opt[ret].call(me, form, errors);
  7791. me.$el.trigger(ret + CLS_NS_FORM, [form, errors]);
  7792. me._debug('log', '>>> ' + ret);
  7793. if (!isValid) return;
  7794. // For jquery.form plugin
  7795. if (me.vetoed) {
  7796. $(form).ajaxSubmit(me.ajaxFormOptions);
  7797. }
  7798. else if (canSubmit && !me.isAjaxSubmit) {
  7799. document.createElement('form').submit.call(form);
  7800. }
  7801. }
  7802. );
  7803. },
  7804. _reset: function(e) {
  7805. var me = this;
  7806. me.errors = {};
  7807. if (e) {
  7808. me.reseting = true;
  7809. me.$el.find(INPUT_SELECTOR).each( function(){
  7810. me._resetElement(this);
  7811. });
  7812. delete me.reseting;
  7813. }
  7814. },
  7815. _resetElement: function(el, all) {
  7816. this._setClass(el, null);
  7817. this.hideMsg(el);
  7818. },
  7819. // Handle events: "focusin/click"
  7820. _focusin: function(e) {
  7821. var me = this,
  7822. opt = me.options,
  7823. el = e.target,
  7824. timely,
  7825. msg;
  7826. if ( me.validating || ( e.type==='click' && document.activeElement === el ) ) {
  7827. return;
  7828. }
  7829. if (opt.focusCleanup) {
  7830. if ( attr(el, ARIA_INVALID) === 'true' ) {
  7831. me._setClass(el, null);
  7832. me.hideMsg(el);
  7833. }
  7834. }
  7835. msg = attr(el, DATA_TIP);
  7836. if (msg) {
  7837. me.showMsg(el, {
  7838. type: 'tip',
  7839. msg: msg
  7840. });
  7841. } else {
  7842. if (attr(el, DATA_RULE)) {
  7843. me._parse(el);
  7844. }
  7845. if (timely = attr(el, DATA_TIMELY)) {
  7846. if ( timely === 8 || timely === 9 ) {
  7847. me._focusout(e);
  7848. }
  7849. }
  7850. }
  7851. },
  7852. // Handle events: "focusout/validate/keyup/click/change/input/compositionstart/compositionend"
  7853. _focusout: function(e) {
  7854. var me = this,
  7855. opt = me.options,
  7856. el = e.target,
  7857. etype = e.type,
  7858. etype0,
  7859. focusin = etype === 'focusin',
  7860. special = etype === 'validate',
  7861. elem,
  7862. field,
  7863. old,
  7864. value,
  7865. timestamp,
  7866. key, specialKey,
  7867. timely,
  7868. timer = 0;
  7869. if (etype === 'compositionstart') {
  7870. me.pauseValidate = true;
  7871. }
  7872. if (etype === 'compositionend') {
  7873. me.pauseValidate = false;
  7874. }
  7875. if (me.pauseValidate) {
  7876. return;
  7877. }
  7878. // For checkbox and radio
  7879. elem = el.name && _checkable(el) ? me.$el.find('input[name="'+ el.name +'"]').get(0) : el;
  7880. // Get field
  7881. if (!(field = me.getField(elem)) || !field.rule) {
  7882. return;
  7883. }
  7884. // Cache event type
  7885. etype0 = field._e;
  7886. field._e = etype;
  7887. timely = field.timely;
  7888. if (!special) {
  7889. if (!timely || (_checkable(el) && etype !== 'click')) {
  7890. return;
  7891. }
  7892. value = field.getValue();
  7893. // not validate field unless fill a value
  7894. if ( field.ignoreBlank && !value && !focusin ) {
  7895. me.hideMsg(el);
  7896. return;
  7897. }
  7898. if ( etype === 'focusout' ) {
  7899. if (etype0 === 'change') {
  7900. return;
  7901. }
  7902. if ( timely === 2 || timely === 8 ) {
  7903. old = field.old;
  7904. if (value && old) {
  7905. if (field.isValid && !old.showOk) {
  7906. me.hideMsg(el);
  7907. } else {
  7908. me._makeMsg(el, field, old);
  7909. }
  7910. } else {
  7911. return;
  7912. }
  7913. }
  7914. }
  7915. else {
  7916. if ( timely < 2 && !e.data ) {
  7917. return;
  7918. }
  7919. // mark timestamp to reduce the frequency of the received event
  7920. timestamp = +new Date();
  7921. if ( timestamp - (el._ts || 0) < 100 ) {
  7922. return;
  7923. }
  7924. el._ts = timestamp;
  7925. // handle keyup
  7926. if ( etype === 'keyup' ) {
  7927. if (etype0 === 'input') {
  7928. return;
  7929. }
  7930. key = e.keyCode;
  7931. specialKey = {
  7932. 8: 1, // Backspace
  7933. 9: 1, // Tab
  7934. 16: 1, // Shift
  7935. 32: 1, // Space
  7936. 46: 1 // Delete
  7937. };
  7938. // only gets focus, no validation
  7939. if ( key === 9 && !value ) {
  7940. return;
  7941. }
  7942. // do not validate, if triggered by these keys
  7943. if ( key < 48 && !specialKey[key] ) {
  7944. return;
  7945. }
  7946. }
  7947. if ( !focusin ) {
  7948. // keyboard events, reducing the frequency of validation
  7949. timer = timely <100 ? (etype === 'click' || el.tagName === 'SELECT') ? 0 : 400 : timely;
  7950. }
  7951. }
  7952. }
  7953. // if the current field is ignored
  7954. if ( opt.ignore && $(el).is(opt.ignore) ) {
  7955. return;
  7956. }
  7957. clearTimeout(field._t);
  7958. if (timer) {
  7959. field._t = setTimeout(function() {
  7960. me._validate(el, field);
  7961. }, timer);
  7962. } else {
  7963. if (special) field.old = {};
  7964. me._validate(el, field);
  7965. }
  7966. },
  7967. _setClass: function(el, isValid) {
  7968. var $el = $(el), opt = this.options;
  7969. if (opt.bindClassTo) {
  7970. $el = $el.closest(opt.bindClassTo);
  7971. }
  7972. $el.removeClass( opt.invalidClass + ' ' + opt.validClass );
  7973. if (isValid !== null) {
  7974. $el.addClass( isValid ? opt.validClass : opt.invalidClass );
  7975. }
  7976. },
  7977. _showmsg: function(e, type, msg) {
  7978. var me = this,
  7979. el = e.target;
  7980. if ( me.$el.is(el) ) {
  7981. if (isObject(type)) {
  7982. me.showMsg(type)
  7983. }
  7984. else if ( type === 'tip' ) {
  7985. me.$el.find(INPUT_SELECTOR +"["+ DATA_TIP +"]", el).each(function(){
  7986. me.showMsg(this, {type: type, msg: msg});
  7987. });
  7988. }
  7989. }
  7990. else {
  7991. me.showMsg(el, {type: type, msg: msg});
  7992. }
  7993. },
  7994. _hidemsg: function(e) {
  7995. var $el = $(e.target);
  7996. if ( $el.is(INPUT_SELECTOR) ) {
  7997. this.hideMsg($el);
  7998. }
  7999. },
  8000. // Validated a field
  8001. _validatedField: function(el, field, ret) {
  8002. var me = this,
  8003. opt = me.options,
  8004. isValid = field.isValid = ret.isValid = !!ret.isValid,
  8005. callback = isValid ? 'valid' : 'invalid';
  8006. ret.key = field.key;
  8007. ret.ruleName = field._r;
  8008. ret.id = el.id;
  8009. ret.value = field.value;
  8010. me.elements[field.key] = ret.element = el;
  8011. me.isValid = me.$el[0].isValid = isValid ? me.isFormValid() : isValid;
  8012. if (isValid) {
  8013. ret.type = 'ok';
  8014. } else {
  8015. if (me.submiting) {
  8016. me.errors[field.key] = ret.msg;
  8017. }
  8018. me.hasError = true;
  8019. }
  8020. // cache result
  8021. field.old = ret;
  8022. // trigger callback
  8023. isFunction(field[callback]) && field[callback].call(me, el, ret);
  8024. isFunction(opt.validation) && opt.validation.call(me, el, ret);
  8025. // trigger event
  8026. $(el).attr( ARIA_INVALID, isValid ? null : true )
  8027. .trigger( callback + CLS_NS_FIELD, [ret, me] );
  8028. me.$el.triggerHandler('validation', [ret, me]);
  8029. if (me.checkOnly) return;
  8030. // set className
  8031. me._setClass(el, ret.skip || ret.type === 'tip' ? null : isValid);
  8032. me._makeMsg.apply(me, arguments);
  8033. },
  8034. _makeMsg: function(el, field, ret) {
  8035. // show or hide the message
  8036. if (field.msgMaker) {
  8037. ret = $.extend({}, ret);
  8038. if (field._e === 'focusin') {
  8039. ret.type = 'tip';
  8040. }
  8041. this[ ret.showOk || ret.msg || ret.type === 'tip' ? 'showMsg' : 'hideMsg' ](el, ret, field);
  8042. }
  8043. },
  8044. // Validated a rule
  8045. _validatedRule: function(el, field, ret, msgOpt) {
  8046. field = field || me.getField(el);
  8047. msgOpt = msgOpt || {};
  8048. var me = this,
  8049. msg,
  8050. rule,
  8051. method = field._r,
  8052. timely = field.timely,
  8053. special = timely === 9 || timely === 8,
  8054. transfer,
  8055. temp,
  8056. isValid = false;
  8057. // use null to break validation from a field
  8058. if (ret === null) {
  8059. me._validatedField(el, field, {isValid: true, skip: true});
  8060. field._i = 0;
  8061. return;
  8062. }
  8063. else if (ret === undefined) {
  8064. transfer = true;
  8065. }
  8066. else if (ret === true || ret === '') {
  8067. isValid = true;
  8068. }
  8069. else if (isString(ret)) {
  8070. msg = ret;
  8071. }
  8072. else if (isObject(ret)) {
  8073. if (ret.error) {
  8074. msg = ret.error;
  8075. } else {
  8076. msg = ret.ok;
  8077. isValid = true;
  8078. }
  8079. }
  8080. rule = field._rules[field._i];
  8081. if (rule.not) {
  8082. msg = undefined;
  8083. isValid = method === "required" || !isValid;
  8084. }
  8085. if (rule.or) {
  8086. if (isValid) {
  8087. while ( field._i < field._rules.length && field._rules[field._i].or ) {
  8088. field._i++;
  8089. }
  8090. } else {
  8091. transfer = true;
  8092. }
  8093. }
  8094. else if (rule.and) {
  8095. if (!field.isValid) transfer = true;
  8096. }
  8097. if (transfer) {
  8098. isValid = true;
  8099. }
  8100. // message analysis, and throw rule level event
  8101. else {
  8102. if (isValid) {
  8103. if (field.showOk !== false) {
  8104. temp = attr(el, DATA_OK);
  8105. msg = temp === null ? isString(field.ok) ? field.ok : msg : temp;
  8106. if (!isString(msg) && isString(field.showOk)) {
  8107. msg = field.showOk;
  8108. }
  8109. if (isString(msg)) {
  8110. msgOpt.showOk = isValid;
  8111. }
  8112. }
  8113. }
  8114. if (!isValid || special) {
  8115. /* rule message priority:
  8116. 1. custom DOM message
  8117. 2. custom field message;
  8118. 3. global defined message;
  8119. 4. rule returned message;
  8120. 5. default message;
  8121. */
  8122. msg = (_getDataMsg(el, field, msg || rule.msg || me.messages[method]) || me.messages.fallback).replace(/\{0\|?([^\}]*)\}/, function(m, defaultDisplay){
  8123. return me._getDisplay(el, field.display) || defaultDisplay || me.messages[0];
  8124. });
  8125. }
  8126. if (!isValid) field.isValid = isValid;
  8127. msgOpt.msg = msg;
  8128. $(el).trigger( (isValid ? 'valid' : 'invalid') + CLS_NS_RULE, [method, msg]);
  8129. }
  8130. if (special && (!transfer || rule.and)) {
  8131. if (!isValid && !field._m) field._m = msg;
  8132. field._v = field._v || [];
  8133. field._v.push({
  8134. type: isValid ? !transfer ? 'ok' : 'tip' : 'error',
  8135. msg: msg || rule.msg
  8136. });
  8137. }
  8138. me._debug('log', ' ' + field._i + ': ' + method + ' => ' + (isValid || msg));
  8139. // the current rule has passed, continue to validate
  8140. if ( (isValid || special) && field._i < field._rules.length - 1) {
  8141. field._i++;
  8142. me._checkRule(el, field);
  8143. }
  8144. // field was invalid, or all fields was valid
  8145. else {
  8146. field._i = 0;
  8147. if (special) {
  8148. msgOpt.isValid = field.isValid;
  8149. msgOpt.result = field._v;
  8150. msgOpt.msg = field._m || '';
  8151. if (!field.value && (field._e === 'focusin')) {
  8152. msgOpt.type = 'tip';
  8153. }
  8154. } else {
  8155. msgOpt.isValid = isValid;
  8156. }
  8157. me._validatedField(el, field, msgOpt);
  8158. delete field._m;
  8159. delete field._v;
  8160. }
  8161. },
  8162. // Verify a rule form a field
  8163. _checkRule: function(el, field) {
  8164. var me = this,
  8165. ret,
  8166. fn,
  8167. old,
  8168. key = field.key,
  8169. rule = field._rules[field._i],
  8170. method = rule.method,
  8171. params = rule.params;
  8172. // request has been sent, wait it
  8173. if (me.submiting && me.deferred[key]) {
  8174. return;
  8175. }
  8176. old = field.old;
  8177. field._r = method;
  8178. if (old && !field.must && !rule.must && rule.result !== undefined &&
  8179. old.ruleName === method && old.id === el.id &&
  8180. field.value && old.value === field.value )
  8181. {
  8182. // get result from cache
  8183. ret = rule.result;
  8184. }
  8185. else {
  8186. // get result from current rule
  8187. fn = _getDataRule(el, method) || me.rules[method] || noop;
  8188. ret = fn.call(field, el, params, field);
  8189. if (fn.msg) rule.msg = fn.msg;
  8190. }
  8191. // asynchronous validation
  8192. if (isObject(ret) && isFunction(ret.then)) {
  8193. me.deferred[key] = ret;
  8194. // whether the field valid is unknown
  8195. field.isValid = undefined;
  8196. // show loading message
  8197. !me.checkOnly && me.showMsg(el, {
  8198. type: 'loading',
  8199. msg: me.messages.loading
  8200. }, field);
  8201. // waiting to parse the response data
  8202. ret.then(
  8203. function(d, textStatus, jqXHR) {
  8204. var data = trim(jqXHR.responseText),
  8205. result,
  8206. dataFilter = field.dataFilter;
  8207. // detect if data is json or jsonp format
  8208. if (/jsonp?/.test(this.dataType)) {
  8209. data = d;
  8210. } else if (data.charAt(0) === '{') {
  8211. data = $.parseJSON(data);
  8212. }
  8213. // filter data
  8214. result = dataFilter.call(this, data, field);
  8215. if (result === undefined) result = dataFilter.call(this, data.data, field);
  8216. rule.data = this.data;
  8217. rule.result = field.old ? result : undefined;
  8218. me._validatedRule(el, field, result);
  8219. },
  8220. function(jqXHR, textStatus){
  8221. me._validatedRule(el, field, me.messages[textStatus] || textStatus);
  8222. }
  8223. ).always(function(){
  8224. delete me.deferred[key];
  8225. });
  8226. }
  8227. // other result
  8228. else {
  8229. me._validatedRule(el, field, ret);
  8230. }
  8231. },
  8232. // Processing the validation
  8233. _validate: function(el, field) {
  8234. var me = this;
  8235. // doesn't validate the element that has "disabled" or "novalidate" attribute
  8236. if ( el.disabled || attr(el, NOVALIDATE) !== null ) {
  8237. return;
  8238. }
  8239. field = field || me.getField(el);
  8240. if (!field) return;
  8241. if (!field._rules) me._parse(el);
  8242. if (!field._rules) return;
  8243. me._debug('info', field.key);
  8244. field.isValid = true;
  8245. field.element = el;
  8246. // Cache the value
  8247. field.value = field.getValue();
  8248. // if the field is not required, and that has a blank value
  8249. if (!field.required && !field.must && !field.value) {
  8250. if (!_checkable(el)) {
  8251. me._validatedField(el, field, {isValid: true});
  8252. return true;
  8253. }
  8254. }
  8255. me._checkRule(el, field);
  8256. return field.isValid;
  8257. },
  8258. _debug: function(type, messages) {
  8259. if (window.console && this.options.debug) {
  8260. console[type](messages);
  8261. }
  8262. },
  8263. /**
  8264. * Detecting whether the value of an element that matches a rule
  8265. *
  8266. * @method test
  8267. * @param {Element} el - input element
  8268. * @param {String} rule - rule name
  8269. */
  8270. test: function(el, rule) {
  8271. var me = this,
  8272. ret,
  8273. parts = rRule.exec(rule),
  8274. field,
  8275. method,
  8276. params;
  8277. if (parts) {
  8278. method = parts[1];
  8279. if (method in me.rules) {
  8280. params = parts[2] || parts[3];
  8281. params = params ? params.split(', ') : undefined;
  8282. field = me.getField(el, true);
  8283. field._r = method;
  8284. field.value = field.getValue();
  8285. ret = me.rules[method].call(field, el, params);
  8286. }
  8287. }
  8288. return ret === true || ret === undefined || ret === null;
  8289. },
  8290. _getDisplay: function(el, str) {
  8291. return !isString(str) ? isFunction(str) ? str.call(this, el) : '' : str;
  8292. },
  8293. _getMsgOpt: function(obj, field) {
  8294. var opt = field ? field : this.options;
  8295. return $.extend({
  8296. type: 'error',
  8297. pos: _getPos(opt.msgClass),
  8298. target: opt.target,
  8299. wrapper: opt.msgWrapper,
  8300. style: opt.msgStyle,
  8301. cls: opt.msgClass,
  8302. arrow: opt.msgArrow,
  8303. icon: opt.msgIcon
  8304. }, isString(obj) ? {msg: obj} : obj);
  8305. },
  8306. _getMsgDOM: function(el, msgOpt) {
  8307. var $el = $(el), $msgbox, datafor, tgt, container;
  8308. if ( $el.is(INPUT_SELECTOR) ) {
  8309. tgt = msgOpt.target || attr(el, DATA_TARGET);
  8310. if (tgt) {
  8311. tgt = !isFunction(tgt) ? tgt.charAt(0) === '#' ? $(tgt) : this.$el.find(tgt) : tgt.call(this, el);
  8312. if (tgt.length) {
  8313. if ( tgt.is(INPUT_SELECTOR) ) {
  8314. $el = tgt
  8315. el = tgt.get(0);
  8316. } else if ( tgt.hasClass(CLS_MSG_BOX) ) {
  8317. $msgbox = tgt;
  8318. } else {
  8319. container = tgt;
  8320. }
  8321. }
  8322. }
  8323. if (!$msgbox) {
  8324. datafor = (!_checkable(el) || !el.name) && el.id ? el.id : el.name;
  8325. $msgbox = (container || this.$el).find(msgOpt.wrapper + '.' + CLS_MSG_BOX + '[for="' + datafor + '"]');
  8326. }
  8327. } else {
  8328. $msgbox = $el;
  8329. }
  8330. // Create new message box
  8331. if (!msgOpt.hide && !$msgbox.length) {
  8332. $msgbox = $('<'+ msgOpt.wrapper + '>').attr({
  8333. 'class': CLS_MSG_BOX + (msgOpt.cls ? ' ' + msgOpt.cls : ''),
  8334. 'style': msgOpt.style || undefined,
  8335. 'for': datafor
  8336. });
  8337. if ( _checkable(el) ) {
  8338. var $parent = $el.parent();
  8339. $msgbox.appendTo( $parent.is('label') ? $parent.parent() : $parent );
  8340. } else {
  8341. if (container) {
  8342. $msgbox.appendTo(container);
  8343. } else {
  8344. $msgbox[!msgOpt.pos || msgOpt.pos === 'right' ? 'insertAfter' : 'insertBefore']($el);
  8345. }
  8346. }
  8347. }
  8348. return $msgbox;
  8349. },
  8350. /**
  8351. * Show validation message
  8352. *
  8353. * @method showMsg
  8354. * @param {Element} el - input element
  8355. * @param {Object} msgOpt
  8356. */
  8357. showMsg: function(el, msgOpt, /*INTERNAL*/ field) {
  8358. if (!el) return;
  8359. var me = this,
  8360. opt = me.options,
  8361. msgShow,
  8362. msgMaker,
  8363. temp,
  8364. $msgbox;
  8365. if (isObject(el) && !el.jquery && !msgOpt) {
  8366. $.each(el, function(key, msg) {
  8367. var el = me.elements[key] || me.$el.find(_key2selector(key))[0];
  8368. me.showMsg(el, msg);
  8369. });
  8370. return;
  8371. }
  8372. if ($(el).is(INPUT_SELECTOR)) {
  8373. field = field || me.getField(el);
  8374. }
  8375. if (!(msgMaker = (field || opt).msgMaker)) {
  8376. return;
  8377. }
  8378. msgOpt = me._getMsgOpt(msgOpt, field);
  8379. el = (el.name && _checkable(el) ? me.$el.find('input[name="'+ el.name +'"]') : $(el)).get(0);
  8380. // ok or tip
  8381. if (!msgOpt.msg && msgOpt.type !== 'error') {
  8382. temp = attr(el, 'data-' + msgOpt.type);
  8383. if (temp !== null) msgOpt.msg = temp;
  8384. }
  8385. if ( !isString(msgOpt.msg) ) {
  8386. return;
  8387. }
  8388. $msgbox = me._getMsgDOM(el, msgOpt);
  8389. !rPos.test($msgbox[0].className) && $msgbox.addClass(msgOpt.cls);
  8390. if ( isIE === 6 && msgOpt.pos === 'bottom' ) {
  8391. $msgbox[0].style.marginTop = $(el).outerHeight() + 'px';
  8392. }
  8393. $msgbox.html( msgMaker.call(me, msgOpt) )[0].style.display = '';
  8394. if (isFunction(msgShow = field && field.msgShow || opt.msgShow)) {
  8395. msgShow.call(me, $msgbox, msgOpt.type);
  8396. }
  8397. },
  8398. /**
  8399. * Hide validation message
  8400. *
  8401. * @method hideMsg
  8402. * @param {Element} el - input element
  8403. * @param {Object} msgOpt optional
  8404. */
  8405. hideMsg: function(el, msgOpt, /*INTERNAL*/ field) {
  8406. var me = this,
  8407. opt = me.options,
  8408. msgHide,
  8409. $msgbox;
  8410. el = $(el).get(0);
  8411. if ($(el).is(INPUT_SELECTOR)) {
  8412. field = field || me.getField(el);
  8413. if (field) {
  8414. if (field.isValid || me.reseting) attr(el, ARIA_INVALID, null);
  8415. }
  8416. }
  8417. msgOpt = me._getMsgOpt(msgOpt, field);
  8418. msgOpt.hide = true;
  8419. $msgbox = me._getMsgDOM(el, msgOpt);
  8420. if (!$msgbox.length) return;
  8421. if ( isFunction(msgHide = field && field.msgHide || opt.msgHide) ) {
  8422. msgHide.call(me, $msgbox, msgOpt.type);
  8423. } else {
  8424. $msgbox[0].style.display = 'none';
  8425. $msgbox[0].innerHTML = null;
  8426. }
  8427. },
  8428. /**
  8429. * Get field information
  8430. *
  8431. * @method getField
  8432. * @param {Element} - input element
  8433. * @return {Object} field
  8434. */
  8435. getField: function(el, must) {
  8436. var me = this,
  8437. key,
  8438. field;
  8439. if (isString(el)) {
  8440. key = el;
  8441. el = undefined;
  8442. } else {
  8443. if (attr(el, DATA_RULE)) {
  8444. return me._parse(el);
  8445. }
  8446. if (el.id && '#' + el.id in me.fields || !el.name) {
  8447. key = '#' + el.id;
  8448. } else {
  8449. key = el.name;
  8450. }
  8451. }
  8452. if ( (field = me.fields[key]) || must && (field = new me.Field(key)) ) {
  8453. field.element = el;
  8454. }
  8455. return field;
  8456. },
  8457. /**
  8458. * Config a field
  8459. *
  8460. * @method: setField
  8461. * @param {String} key
  8462. * @param {Object} obj
  8463. */
  8464. setField: function(key, obj) {
  8465. var fields = {};
  8466. if (!key) return;
  8467. // update this field
  8468. if (isString(key)) {
  8469. fields[key] = obj;
  8470. }
  8471. // update fields
  8472. else {
  8473. fields = key;
  8474. }
  8475. this._initFields(fields);
  8476. },
  8477. /**
  8478. * Detecting whether the form is valid
  8479. *
  8480. * @method isFormValid
  8481. * @return {Boolean}
  8482. */
  8483. isFormValid: function() {
  8484. var fields = this.fields, k, field;
  8485. for (k in fields) {
  8486. field = fields[k];
  8487. if (!field._rules || !field.required && !field.must && !field.value) continue;
  8488. if (!field.isValid) return false;
  8489. }
  8490. return true;
  8491. },
  8492. /**
  8493. * Prevent submission form
  8494. *
  8495. * @method holdSubmit
  8496. * @param {Boolean} hold - If set to false, will release the hold
  8497. */
  8498. holdSubmit: function(hold) {
  8499. this.submiting = hold === undefined || hold;
  8500. },
  8501. /**
  8502. * Clean validation messages
  8503. *
  8504. * @method cleanUp
  8505. */
  8506. cleanUp: function() {
  8507. this._reset(1);
  8508. },
  8509. /**
  8510. * Destroy the validation
  8511. *
  8512. * @method destroy
  8513. */
  8514. destroy: function() {
  8515. this._reset(1);
  8516. this.$el.off(CLS_NS).removeData(NS);
  8517. attr(this.$el[0], NOVALIDATE, this._NOVALIDATE);
  8518. }
  8519. };
  8520. /**
  8521. * Create Field Factory
  8522. *
  8523. * @class
  8524. * @param {Object} context
  8525. * @return {Function} Factory
  8526. */
  8527. function _createFieldFactory(context) {
  8528. function FieldFactory() {
  8529. var options = this.options;
  8530. for (var i in options) {
  8531. if (i in fieldDefaults) this[i] = options[i];
  8532. }
  8533. $.extend(this, {
  8534. _valHook: function() {
  8535. return this.element.contentEditable === 'true' ? 'text' : 'val';
  8536. },
  8537. getValue: function() {
  8538. var elem = this.element;
  8539. if (elem.type === "number" && elem.validity && elem.validity.badInput) {
  8540. return 'NaN';
  8541. }
  8542. return $(elem)[this._valHook()]();
  8543. },
  8544. setValue: function(value) {
  8545. $(this.element)[this._valHook()](this.value = value);
  8546. },
  8547. // Get a range of validation messages
  8548. getRangeMsg: function(value, params, suffix) {
  8549. if (!params) return;
  8550. var me = this,
  8551. msg = me.messages[me._r] || '',
  8552. result,
  8553. p = params[0].split('~'),
  8554. e = params[1] === 'false',
  8555. a = p[0],
  8556. b = p[1],
  8557. c = 'rg',
  8558. args = [''],
  8559. isNumber = trim(value) && +value === +value;
  8560. function compare(large, small) {
  8561. return !e ? large >= small : large > small;
  8562. }
  8563. if (p.length === 2) {
  8564. if (a && b) {
  8565. if (isNumber && compare(value, +a) && compare(+b, value)) {
  8566. result = true;
  8567. }
  8568. args = args.concat(p);
  8569. c = e ? 'gtlt' : 'rg';
  8570. }
  8571. else if (a && !b) {
  8572. if (isNumber && compare(value, +a)) {
  8573. result = true;
  8574. }
  8575. args.push(a);
  8576. c = e ? 'gt' : 'gte';
  8577. }
  8578. else if (!a && b) {
  8579. if (isNumber && compare(+b, value)) {
  8580. result = true;
  8581. }
  8582. args.push(b);
  8583. c = e ? 'lt' : 'lte';
  8584. }
  8585. }
  8586. else {
  8587. if (value === +a) {
  8588. result = true;
  8589. }
  8590. args.push(a);
  8591. c = 'eq';
  8592. }
  8593. if (msg) {
  8594. if (suffix && msg[c + suffix]) {
  8595. c += suffix;
  8596. }
  8597. args[0] = msg[c];
  8598. }
  8599. return result || me._rules && ( me._rules[me._i].msg = me.renderMsg.apply(null, args) );
  8600. },
  8601. // Render message template
  8602. renderMsg: function() {
  8603. var args = arguments,
  8604. tpl = args[0],
  8605. i = args.length;
  8606. if (!tpl) return;
  8607. while (--i) {
  8608. tpl = tpl.replace('{' + i + '}', args[i]);
  8609. }
  8610. return tpl;
  8611. }
  8612. });
  8613. }
  8614. function Field(key, obj, oldField) {
  8615. this.key = key;
  8616. this.validator = context;
  8617. $.extend(this, oldField, obj);
  8618. }
  8619. FieldFactory.prototype = context;
  8620. Field.prototype = new FieldFactory();
  8621. return Field;
  8622. }
  8623. /**
  8624. * Create Rules
  8625. *
  8626. * @class
  8627. * @param {Object} obj rules
  8628. * @param {Object} context context
  8629. */
  8630. function Rules(obj, context) {
  8631. if (!isObject(obj)) return;
  8632. var k, that = context ? context === true ? this : context : Rules.prototype;
  8633. for (k in obj) {
  8634. if (_checkRuleName(k))
  8635. that[k] = _getRule(obj[k]);
  8636. }
  8637. }
  8638. /**
  8639. * Create Messages
  8640. *
  8641. * @class
  8642. * @param {Object} obj rules
  8643. * @param {Object} context context
  8644. */
  8645. function Messages(obj, context) {
  8646. if (!isObject(obj)) return;
  8647. var k, that = context ? context === true ? this : context : Messages.prototype;
  8648. for (k in obj) {
  8649. that[k] = obj[k];
  8650. }
  8651. }
  8652. // Rule converted factory
  8653. function _getRule(fn) {
  8654. switch ($.type(fn)) {
  8655. case 'function':
  8656. return fn;
  8657. case 'array':
  8658. var f = function() {
  8659. return fn[0].test(this.value) || fn[1] || false;
  8660. };
  8661. f.msg = fn[1];
  8662. return f;
  8663. case 'regexp':
  8664. return function() {
  8665. return fn.test(this.value);
  8666. };
  8667. }
  8668. }
  8669. // Get instance by an element
  8670. function _getInstance(el) {
  8671. var wrap, k, options;
  8672. if (!el || !el.tagName) return;
  8673. switch (el.tagName) {
  8674. case 'INPUT':
  8675. case 'SELECT':
  8676. case 'TEXTAREA':
  8677. case 'BUTTON':
  8678. case 'FIELDSET':
  8679. wrap = el.form || $(el).closest('.' + CLS_WRAPPER);
  8680. break;
  8681. case 'FORM':
  8682. wrap = el;
  8683. break;
  8684. default:
  8685. wrap = $(el).closest('.' + CLS_WRAPPER);
  8686. }
  8687. for (k in preinitialized) {
  8688. if ($(wrap).is(k)) {
  8689. options = preinitialized[k];
  8690. break;
  8691. }
  8692. }
  8693. return $(wrap).data(NS) || $(wrap)[NS](options).data(NS);
  8694. }
  8695. // Get custom rules on the node
  8696. function _getDataRule(el, method) {
  8697. var fn = trim(attr(el, DATA_RULE + '-' + method));
  8698. if ( fn && (fn = new Function("return " + fn)()) ) {
  8699. return _getRule(fn);
  8700. }
  8701. }
  8702. // Get custom messages on the node
  8703. function _getDataMsg(el, field, m) {
  8704. var msg = field.msg,
  8705. item = field._r;
  8706. if ( isObject(msg) ) msg = msg[item];
  8707. if ( !isString(msg) ) {
  8708. msg = attr(el, DATA_MSG + '-' + item) || attr(el, DATA_MSG) || ( m ? isString(m) ? m : m[item] : '');
  8709. }
  8710. return msg;
  8711. }
  8712. // Get message position
  8713. function _getPos(str) {
  8714. var pos;
  8715. if (str) pos = rPos.exec(str);
  8716. return pos && pos[0];
  8717. }
  8718. // Check whether the element is checkbox or radio
  8719. function _checkable(el) {
  8720. return el.tagName === 'INPUT' && el.type === 'checkbox' || el.type === 'radio';
  8721. }
  8722. // Parse date string to timestamp
  8723. function _parseDate(str) {
  8724. return Date.parse(str.replace(/\.|\-/g, '/'));
  8725. }
  8726. // Rule name only allows alphanumeric characters and underscores
  8727. function _checkRuleName(name) {
  8728. return /^\w+$/.test(name);
  8729. }
  8730. // Translate field key to jQuery selector.
  8731. function _key2selector(key) {
  8732. var isID = key.charAt(0) === "#";
  8733. key = key.replace(/([:.{(|)}/\[\]])/g, "\\$1");
  8734. return isID ? key : '[name="'+ key +'"]:first';
  8735. }
  8736. // Fixed a issue cause by refresh page in IE.
  8737. $(window).on('beforeunload', function(){
  8738. this.focus();
  8739. });
  8740. $(document)
  8741. .on('click', ':submit', function(){
  8742. var input = this, attrNode;
  8743. if (!input.form) return;
  8744. // Shim for "formnovalidate"
  8745. attrNode = input.getAttributeNode('formnovalidate');
  8746. if (attrNode && attrNode.nodeValue !== null || attr(input, NOVALIDATE)!== null) {
  8747. novalidateonce = true;
  8748. }
  8749. })
  8750. // Automatic initializing form validation
  8751. .on('focusin submit validate', 'form,.'+CLS_WRAPPER, function(e) {
  8752. if ( attr(this, NOVALIDATE) !== null ) return;
  8753. var $form = $(this), me;
  8754. if ( !$form.data(NS) && (me = _getInstance(this)) ) {
  8755. if ( !$.isEmptyObject(me.fields) ) {
  8756. // Execute event handler
  8757. if (e.type === 'focusin') {
  8758. me._focusin(e);
  8759. } else {
  8760. me._submit(e);
  8761. }
  8762. } else {
  8763. attr(this, NOVALIDATE, NOVALIDATE);
  8764. $form.off(CLS_NS).removeData(NS);
  8765. }
  8766. }
  8767. });
  8768. new Messages({
  8769. fallback: "This field is not valid.",
  8770. loading: 'Validating...'
  8771. });
  8772. // Built-in rules (global)
  8773. new Rules({
  8774. /**
  8775. * required
  8776. *
  8777. * @example:
  8778. required
  8779. required(anotherRule)
  8780. required(not, -1)
  8781. required(from, .contact)
  8782. */
  8783. required: function(element, params) {
  8784. var me = this,
  8785. val = trim(me.value),
  8786. isValid = true;
  8787. if (params) {
  8788. if ( params.length === 1 ) {
  8789. if ( !_checkRuleName(params[0]) ) {
  8790. if (!val && !$(params[0], me.$el).length ) {
  8791. return null;
  8792. }
  8793. }
  8794. else if ( me.rules[params[0]] ) {
  8795. if ( !val && !me.test(element, params[0]) ) {
  8796. return null;
  8797. }
  8798. }
  8799. }
  8800. else if ( params[0] === 'not' ) {
  8801. $.each(params.slice(1), function() {
  8802. return (isValid = val !== trim(this));
  8803. });
  8804. }
  8805. else if ( params[0] === 'from' ) {
  8806. var $elements = me.$el.find(params[1]),
  8807. VALIDATED = '_validated_',
  8808. ret;
  8809. isValid = $elements.filter(function(){
  8810. var field = me.getField(this);
  8811. return field && !!trim(field.getValue());
  8812. }).length >= (params[2] || 1);
  8813. if (isValid) {
  8814. if (!val) ret = null;
  8815. } else {
  8816. ret = _getDataMsg($elements[0], me) || false;
  8817. }
  8818. if ( !$(element).data(VALIDATED) ) {
  8819. $elements.data(VALIDATED, 1).each(function(){
  8820. if (element !== this) {
  8821. me._validate(this);
  8822. }
  8823. }).removeData(VALIDATED);
  8824. }
  8825. return ret;
  8826. }
  8827. }
  8828. return isValid && !!val;
  8829. },
  8830. /**
  8831. * integer
  8832. *
  8833. * @example:
  8834. integer
  8835. integer[+]
  8836. integer[+0]
  8837. integer[-]
  8838. integer[-0]
  8839. */
  8840. integer: function(element, params) {
  8841. var re, z = '0|',
  8842. p = '[1-9]\\d*',
  8843. key = params ? params[0] : '*';
  8844. switch (key) {
  8845. case '+':
  8846. re = p;
  8847. break;
  8848. case '-':
  8849. re = '-' + p;
  8850. break;
  8851. case '+0':
  8852. re = z + p;
  8853. break;
  8854. case '-0':
  8855. re = z + '-' + p;
  8856. break;
  8857. default:
  8858. re = z + '-?' + p;
  8859. }
  8860. re = '^(?:' + re + ')$';
  8861. return new RegExp(re).test(this.value) || this.messages.integer[key];
  8862. },
  8863. /**
  8864. * match another field
  8865. *
  8866. * @example:
  8867. match[password] Match the password field (two values ​​must be the same)
  8868. match[eq, password] Ditto
  8869. match[neq, count] The value must be not equal to the value of the count field
  8870. match[lt, count] The value must be less than the value of the count field
  8871. match[lte, count] The value must be less than or equal to the value of the count field
  8872. match[gt, count] The value must be greater than the value of the count field
  8873. match[gte, count] The value must be greater than or equal to the value of the count field
  8874. match[gte, startDate, date]
  8875. match[gte, startTime, time]
  8876. **/
  8877. match: function(element, params) {
  8878. if (!params) return;
  8879. var me = this,
  8880. a, b,
  8881. key, msg, type = 'eq', parser,
  8882. selector2, elem2, field2;
  8883. if (params.length === 1) {
  8884. key = params[0];
  8885. } else {
  8886. type = params[0];
  8887. key = params[1];
  8888. }
  8889. selector2 = _key2selector(key);
  8890. elem2 = me.$el.find(selector2)[0];
  8891. // If the compared field is not exist
  8892. if (!elem2) return;
  8893. field2 = me.getField(elem2);
  8894. a = me.value;
  8895. b = field2.getValue();
  8896. if (!me._match) {
  8897. me.$el.on('valid'+CLS_NS_FIELD+CLS_NS, selector2, function(){
  8898. $(element).trigger('validate');
  8899. });
  8900. me._match = field2._match = 1;
  8901. }
  8902. // If both fields are blank
  8903. if (!me.required && a === "" && b === "") {
  8904. return null;
  8905. }
  8906. parser = params[2];
  8907. if (parser) {
  8908. if (/^date(time)?$/i.test(parser)) {
  8909. a = _parseDate(a);
  8910. b = _parseDate(b);
  8911. } else if (parser === 'time') {
  8912. a = +a.replace(/:/g, '');
  8913. b = +b.replace(/:/g, '');
  8914. }
  8915. }
  8916. // If the compared field is incorrect, we only ensure that this field is correct.
  8917. if (type !== "eq" && !isNaN(+a) && isNaN(+b)) {
  8918. return true;
  8919. }
  8920. msg = me.messages.match[type].replace( '{1}', me._getDisplay( element, field2.display || key ) );
  8921. switch (type) {
  8922. case 'lt':
  8923. return (+a < +b) || msg;
  8924. case 'lte':
  8925. return (+a <= +b) || msg;
  8926. case 'gte':
  8927. return (+a >= +b) || msg;
  8928. case 'gt':
  8929. return (+a > +b) || msg;
  8930. case 'neq':
  8931. return (a !== b) || msg;
  8932. default:
  8933. return (a === b) || msg;
  8934. }
  8935. },
  8936. /**
  8937. * range numbers
  8938. *
  8939. * @example:
  8940. range[0~99] Number 0-99
  8941. range[0~] Number greater than or equal to 0
  8942. range[~100] Number less than or equal to 100
  8943. **/
  8944. range: function(element, params) {
  8945. return this.getRangeMsg(this.value, params);
  8946. },
  8947. /**
  8948. * how many checkbox or radio inputs that checked
  8949. *
  8950. * @example:
  8951. checked; no empty, same to required
  8952. checked[1~3] 1-3 items
  8953. checked[1~] greater than 1 item
  8954. checked[~3] less than 3 items
  8955. checked[3] 3 items
  8956. **/
  8957. checked: function(element, params) {
  8958. if ( !_checkable(element) ) return;
  8959. var me = this,
  8960. elem, count;
  8961. if (element.name) {
  8962. count = me.$el.find('input[name="' + element.name + '"]').filter(function() {
  8963. var el = this;
  8964. if (!elem && _checkable(el)) elem = el;
  8965. return !el.disabled && el.checked;
  8966. }).length;
  8967. } else {
  8968. elem = element;
  8969. count = elem.checked;
  8970. }
  8971. if (params) {
  8972. return me.getRangeMsg(count, params);
  8973. } else {
  8974. return !!count || _getDataMsg(elem, me, '') || me.messages.required;
  8975. }
  8976. },
  8977. /**
  8978. * length of a characters (You can pass the second parameter "true", will calculate the length in bytes)
  8979. *
  8980. * @example:
  8981. length[6~16] 6-16 characters
  8982. length[6~] Greater than 6 characters
  8983. length[~16] Less than 16 characters
  8984. length[~16, true] Less than 16 characters, non-ASCII characters calculating two-character
  8985. **/
  8986. length: function(element, params) {
  8987. var value = this.value,
  8988. len = (params[1] === 'true' ? value.replace(rDoubleBytes, 'xx') : value).length;
  8989. return this.getRangeMsg(len, params, (params[1] ? '_2' : ''));
  8990. },
  8991. /**
  8992. * remote validation
  8993. *
  8994. * @description
  8995. * remote([get:]url [, name1, [name2 ...]]);
  8996. * Adaptation three kinds of results (Front for the successful, followed by a failure):
  8997. 1. text:
  8998. '' 'Error Message'
  8999. 2. json:
  9000. {"ok": ""} {"error": "Error Message"}
  9001. 3. json wrapper:
  9002. {"status": 1, "data": {"ok": ""}} {"status": 1, "data": {"error": "Error Message"}}
  9003. * @example
  9004. The simplest: remote(path/to/server);
  9005. With parameters: remote(path/to/server, name1, name2, ...);
  9006. By GET: remote(get:path/to/server, name1, name2, ...);
  9007. Name proxy: remote(path/to/server, name1, proxyname2:name2, proxyname3:#id3, ...)
  9008. Query String remote(path/to/server, foo=1&bar=2, name1, name2, ...)
  9009. */
  9010. remote: function(element, params) {
  9011. if (!params) return;
  9012. var me = this,
  9013. arr = rAjaxType.exec(params[0]),
  9014. rule = me._rules[me._i],
  9015. data = {},
  9016. queryString = '',
  9017. url = arr[3],
  9018. type = arr[2] || 'POST', // GET / POST
  9019. rType = (arr[1]||'').toLowerCase(), // CORS / JSONP
  9020. dataType;
  9021. rule.must = true;
  9022. data[element.name] = me.value;
  9023. // There are extra fields
  9024. if (params[1]) {
  9025. $.map(params.slice(1), function(name) {
  9026. var arr, key;
  9027. if (~name.indexOf('=')) {
  9028. queryString += '&' + name;
  9029. } else {
  9030. arr = name.split(':');
  9031. name = trim(arr[0]);
  9032. key = trim(arr[1]) || name;
  9033. data[ name ] = me.$el.find( _key2selector(key) ).val();
  9034. }
  9035. });
  9036. }
  9037. data = $.param(data) + queryString;
  9038. if (!me.must && rule.data && rule.data === data) {
  9039. return rule.result;
  9040. }
  9041. // Cross-domain request, force jsonp dataType
  9042. if (rType !== 'cors' && /^https?:/.test(url) && !~url.indexOf(location.host)) {
  9043. dataType = 'jsonp';
  9044. }
  9045. // Asynchronous validation need return jqXHR objects
  9046. return $.ajax({
  9047. url: url,
  9048. type: type,
  9049. data: data,
  9050. dataType: dataType
  9051. });
  9052. },
  9053. /**
  9054. * filter characters, direct filtration without prompting error (support custom regular expressions)
  9055. *
  9056. * @example
  9057. * filter filtering unsafe characters
  9058. * filter(regexp) filtering the "regexp" matched characters
  9059. */
  9060. filter: function(element, params) {
  9061. var value = this.value,
  9062. temp = value.replace( params ? (new RegExp("[" + params[0] + "]", "gm")) : rUnsafe, '' );
  9063. if (temp !== value) this.setValue(temp);
  9064. }
  9065. });
  9066. /**
  9067. * Config global options
  9068. *
  9069. * @static config
  9070. * @param {Object} options
  9071. */
  9072. Validator.config = function(key, value) {
  9073. if (isObject(key)) {
  9074. $.each(key, _config);
  9075. }
  9076. else if (isString(key)) {
  9077. _config(key, value);
  9078. }
  9079. function _config(k, o) {
  9080. if (k === 'rules') {
  9081. new Rules(o);
  9082. }
  9083. else if (k === 'messages') {
  9084. new Messages(o);
  9085. }
  9086. else if (k in fieldDefaults) {
  9087. fieldDefaults[k] = o;
  9088. }
  9089. else {
  9090. defaults[k] = o;
  9091. }
  9092. }
  9093. };
  9094. /**
  9095. * Config themes
  9096. *
  9097. * @static setTheme
  9098. * @param {String|Object} name
  9099. * @param {Object} obj
  9100. * @example
  9101. .setTheme( themeName, themeOptions )
  9102. .setTheme( multiThemes )
  9103. */
  9104. Validator.setTheme = function(name, obj) {
  9105. if ( isObject(name) ) {
  9106. $.extend(true, themes, name);
  9107. }
  9108. else if ( isString(name) && isObject(obj) ) {
  9109. themes[name] = $.extend(themes[name], obj);
  9110. }
  9111. };
  9112. /**
  9113. * Resource loader
  9114. *
  9115. * @static load
  9116. * @param {String} str
  9117. * @example
  9118. .load('local=zh-CN') // load: local/zh-CN.js and jquery.validator.css
  9119. .load('local=zh-CN&css=') // load: local/zh-CN.js
  9120. .load('local&css') // load: local/en.js (set <html lang="en">) and jquery.validator.css
  9121. .load('local') // dito
  9122. */
  9123. Validator.load = function(str) {
  9124. if (!str) return;
  9125. var doc = document,
  9126. params = {},
  9127. node = doc.scripts[0],
  9128. dir, el, ONLOAD;
  9129. str.replace(/([^?=&]+)=([^&#]*)/g, function(m, key, value){
  9130. params[key] = value;
  9131. });
  9132. dir = params.dir || Validator.dir;
  9133. if (!Validator.css && params.css !== '') {
  9134. el = doc.createElement('link');
  9135. el.rel = 'stylesheet';
  9136. el.href = Validator.css = dir + 'jquery.validator.css';
  9137. node.parentNode.insertBefore(el, node);
  9138. }
  9139. if (!Validator.local && ~str.indexOf('local') && params.local !== '') {
  9140. Validator.local = (params.local || doc.documentElement.lang || 'en').replace('_','-');
  9141. Validator.pending = 1;
  9142. el = doc.createElement('script');
  9143. el.src = dir + 'local/' + Validator.local + '.js';
  9144. ONLOAD = 'onload' in el ? 'onload' : 'onreadystatechange';
  9145. el[ONLOAD] = function() {
  9146. if (!el.readyState || /loaded|complete/.test(el.readyState)) {
  9147. el = el[ONLOAD] = null;
  9148. delete Validator.pending;
  9149. $(window).triggerHandler('validatorready');
  9150. }
  9151. };
  9152. node.parentNode.insertBefore(el, node);
  9153. }
  9154. };
  9155. // Auto loading resources
  9156. (function(){
  9157. var scripts = document.scripts,
  9158. i = scripts.length, node, arr,
  9159. re = /(.*validator(?:\.min)?.js)(\?.*(?:local|css|dir)(?:=[\w\-]*)?)?/;
  9160. while (i-- && !arr) {
  9161. node = scripts[i];
  9162. arr = (node.hasAttribute ? node.src : node.getAttribute('src',4)||'').match(re);
  9163. }
  9164. if (!arr) return;
  9165. Validator.dir = arr[1].split('/').slice(0, -1).join('/')+'/';
  9166. Validator.load(arr[2]);
  9167. })();
  9168. return $[NS] = Validator;
  9169. }));
  9170. /*********************************
  9171. * Themes, rules, and i18n support
  9172. * Locale: Chinese; 中文
  9173. *********************************/
  9174. (function(factory) {
  9175. typeof module === "object" && module.exports ? module.exports = factory( require( "jquery" ) ) :
  9176. typeof define === 'function' && define.amd ? define('validator-lang',['jquery'], factory) :
  9177. factory(jQuery);
  9178. }(function($) {
  9179. /* Global configuration
  9180. */
  9181. $.validator.config({
  9182. //stopOnError: true,
  9183. //focusCleanup: true,
  9184. //theme: 'yellow_right',
  9185. //timely: 2,
  9186. // Custom rules
  9187. rules: {
  9188. digits: [/^\d+$/, "请填写数字"]
  9189. ,letters: [/^[a-z]+$/i, "请填写字母"]
  9190. ,date: [/^\d{4}-\d{2}-\d{2}$/, "请填写有效的日期,格式:yyyy-mm-dd"]
  9191. ,time: [/^([01]\d|2[0-3])(:[0-5]\d){1,2}$/, "请填写有效的时间,00:00到23:59之间"]
  9192. ,email: [/^[\w\+\-]+(\.[\w\+\-]+)*@[a-z\d\-]+(\.[a-z\d\-]+)*\.([a-z]{2,4})$/i, "请填写有效的邮箱"]
  9193. ,url: [/^(https?|s?ftp):\/\/\S+$/i, "请填写有效的网址"]
  9194. ,qq: [/^[1-9]\d{4,}$/, "请填写有效的QQ号"]
  9195. ,IDcard: [/^\d{6}(19|2\d)?\d{2}(0[1-9]|1[012])(0[1-9]|[12]\d|3[01])\d{3}(\d|X)?$/, "请填写正确的身份证号码"]
  9196. ,tel: [/^(?:(?:0\d{2,3}[\- ]?[1-9]\d{6,7})|(?:[48]00[\- ]?[1-9]\d{6}))$/, "请填写有效的电话号码"]
  9197. ,mobile: [/^1[3-9]\d{9}$/, "请填写有效的手机号"]
  9198. ,zipcode: [/^\d{6}$/, "请检查邮政编码格式"]
  9199. ,chinese: [/^[\u0391-\uFFE5]+$/, "请填写中文字符"]
  9200. ,username: [/^\w{3,12}$/, "请填写3-12位数字、字母、下划线"]
  9201. ,password: [/^[\S]{6,16}$/, "请填写6-16位字符,不能包含空格"]
  9202. ,accept: function (element, params){
  9203. if (!params) return true;
  9204. var ext = params[0],
  9205. value = $(element).val();
  9206. return (ext === '*') ||
  9207. (new RegExp(".(?:" + ext + ")$", "i")).test(value) ||
  9208. this.renderMsg("只接受{1}后缀的文件", ext.replace(/\|/g, ','));
  9209. }
  9210. },
  9211. // Default error messages
  9212. messages: {
  9213. 0: "此处",
  9214. fallback: "{0}格式不正确",
  9215. loading: "正在验证...",
  9216. error: "网络异常",
  9217. timeout: "请求超时",
  9218. required: "{0}不能为空",
  9219. remote: "{0}已被使用",
  9220. integer: {
  9221. '*': "请填写整数",
  9222. '+': "请填写正整数",
  9223. '+0': "请填写正整数或0",
  9224. '-': "请填写负整数",
  9225. '-0': "请填写负整数或0"
  9226. },
  9227. match: {
  9228. eq: "{0}与{1}不一致",
  9229. neq: "{0}与{1}不能相同",
  9230. lt: "{0}必须小于{1}",
  9231. gt: "{0}必须大于{1}",
  9232. lte: "{0}不能大于{1}",
  9233. gte: "{0}不能小于{1}"
  9234. },
  9235. range: {
  9236. rg: "请填写{1}到{2}的数",
  9237. gte: "请填写不小于{1}的数",
  9238. lte: "请填写最大{1}的数",
  9239. gtlt: "请填写{1}到{2}之间的数",
  9240. gt: "请填写大于{1}的数",
  9241. lt: "请填写小于{1}的数"
  9242. },
  9243. checked: {
  9244. eq: "请选择{1}项",
  9245. rg: "请选择{1}到{2}项",
  9246. gte: "请至少选择{1}项",
  9247. lte: "请最多选择{1}项"
  9248. },
  9249. length: {
  9250. eq: "请填写{1}个字符",
  9251. rg: "请填写{1}到{2}个字符",
  9252. gte: "请至少填写{1}个字符",
  9253. lte: "请最多填写{1}个字符",
  9254. eq_2: "",
  9255. rg_2: "",
  9256. gte_2: "",
  9257. lte_2: ""
  9258. }
  9259. }
  9260. });
  9261. /* Themes
  9262. */
  9263. var TPL_ARROW = '<span class="n-arrow"><b>◆</b><i>◆</i></span>';
  9264. $.validator.setTheme({
  9265. 'simple_right': {
  9266. formClass: 'n-simple',
  9267. msgClass: 'n-right'
  9268. },
  9269. 'simple_bottom': {
  9270. formClass: 'n-simple',
  9271. msgClass: 'n-bottom'
  9272. },
  9273. 'yellow_top': {
  9274. formClass: 'n-yellow',
  9275. msgClass: 'n-top',
  9276. msgArrow: TPL_ARROW
  9277. },
  9278. 'yellow_right': {
  9279. formClass: 'n-yellow',
  9280. msgClass: 'n-right',
  9281. msgArrow: TPL_ARROW
  9282. },
  9283. 'yellow_right_effect': {
  9284. formClass: 'n-yellow',
  9285. msgClass: 'n-right',
  9286. msgArrow: TPL_ARROW,
  9287. msgShow: function($msgbox, type){
  9288. var $el = $msgbox.children();
  9289. if ($el.is(':animated')) return;
  9290. if (type === 'error') {
  9291. $el.css({left: '20px', opacity: 0})
  9292. .delay(100).show().stop()
  9293. .animate({left: '-4px', opacity: 1}, 150)
  9294. .animate({left: '3px'}, 80)
  9295. .animate({left: 0}, 80);
  9296. } else {
  9297. $el.css({left: 0, opacity: 1}).fadeIn(200);
  9298. }
  9299. },
  9300. msgHide: function($msgbox, type){
  9301. var $el = $msgbox.children();
  9302. $el.stop().delay(100).show()
  9303. .animate({left: '20px', opacity: 0}, 300, function(){
  9304. $msgbox.hide();
  9305. });
  9306. }
  9307. }
  9308. });
  9309. }));
  9310. define('validator',['validator-core', 'validator-lang'], function (Validator, undefined) {
  9311. return Validator;
  9312. });
  9313. define('form',['jquery', 'bootstrap', 'upload', 'validator'], function ($, undefined, Upload, Validator) {
  9314. var Form = {
  9315. config: {
  9316. },
  9317. api: {
  9318. submit: function (form, onBeforeSubmit, onAfterSubmit) {
  9319. if (form.size() == 0)
  9320. return Toastr.error("表单未初始化完成,无法提交");
  9321. //提交前事件
  9322. var beforeSubmit = form.data("before-submit");
  9323. //元素绑定函数
  9324. if (beforeSubmit && typeof Form.api.custom[beforeSubmit] == 'function') {
  9325. if (!Form.api.custom[beforeSubmit].call(form)) {
  9326. return false;
  9327. }
  9328. }
  9329. //自定义函数
  9330. if (typeof onBeforeSubmit == 'function') {
  9331. if (!onBeforeSubmit.call(form)) {
  9332. return false;
  9333. }
  9334. }
  9335. var type = form.attr("method").toUpperCase();
  9336. type = type && (type == 'GET' || type == 'POST') ? type : 'GET';
  9337. url = form.attr("action");
  9338. url = url ? url : location.href;
  9339. $.ajax({
  9340. type: type,
  9341. url: url,
  9342. data: form.serialize(),
  9343. dataType: 'json',
  9344. success: function (ret) {
  9345. if (ret.hasOwnProperty("code")) {
  9346. var data = ret.hasOwnProperty("data") && ret.data != "" ? ret.data : null;
  9347. var msg = ret.hasOwnProperty("msg") && ret.msg != "" ? ret.msg : "";
  9348. if (ret.code === 1) {
  9349. $('.form-group', form).removeClass('has-feedback has-success has-error');
  9350. //成功提交后事件
  9351. var afterSubmit = form.data("after-submit");
  9352. //元素绑定函数
  9353. if (afterSubmit && typeof Form.api.custom[afterSubmit] == 'function') {
  9354. if (!Form.api.custom[afterSubmit].call(form, data, ret)) {
  9355. return false;
  9356. }
  9357. }
  9358. //自定义函数
  9359. if (typeof onAfterSubmit == 'function') {
  9360. if (!onAfterSubmit.call(form, data, ret)) {
  9361. return false;
  9362. }
  9363. }
  9364. Toastr.success(msg ? msg : __('Operation completed'));
  9365. } else {
  9366. if (data && typeof data === 'object' && typeof data.token !== 'undefined') {
  9367. $("input[name='__token__']").val(data.token);
  9368. }
  9369. Toastr.error(msg ? msg : __('Operation failed'));
  9370. }
  9371. } else {
  9372. Toastr.error(__('Unknown data format'));
  9373. }
  9374. }, error: function () {
  9375. Toastr.error(__('Network error'));
  9376. }, complete: function (e) {
  9377. }
  9378. });
  9379. return false;
  9380. },
  9381. bindevent: function (form, onBeforeSubmit, onAfterSubmit) {
  9382. //绑定表单事件
  9383. form.validator($.extend({
  9384. validClass: 'has-success',
  9385. invalidClass: 'has-error',
  9386. bindClassTo: '.form-group',
  9387. formClass: 'n-default n-bootstrap',
  9388. msgClass: 'n-right',
  9389. stopOnError: true,
  9390. display: function (elem) {
  9391. return $(elem).closest('.form-group').find(".control-label").text().replace(/\:/, '');
  9392. },
  9393. target: function (input) {
  9394. var $formitem = $(input).closest('.form-group'),
  9395. $msgbox = $formitem.find('span.msg-box');
  9396. if (!$msgbox.length) {
  9397. return [];
  9398. }
  9399. return $msgbox;
  9400. },
  9401. valid: function (ret) {
  9402. //验证通过提交表单
  9403. Form.api.submit($(ret), onBeforeSubmit, function (data, ret) {
  9404. if (typeof onAfterSubmit == 'function') {
  9405. if (!onAfterSubmit.call($(this), data, ret)) {
  9406. return false;
  9407. }
  9408. }
  9409. //提示及关闭当前窗口
  9410. parent.Toastr.success(__('Operation completed'));
  9411. parent.$(".btn-refresh").trigger("click");
  9412. var index = parent.Layer.getFrameIndex(window.name);
  9413. parent.Layer.close(index);
  9414. });
  9415. return false;
  9416. }
  9417. }, form.data("validator-options") || {}));
  9418. //移除提交按钮的disabled类
  9419. $(".layer-footer .btn.disabled", form).removeClass("disabled");
  9420. //绑定select元素事件
  9421. if ($(".selectpicker", form).size() > 0) {
  9422. require(['bootstrap-select', 'bootstrap-select-lang'], function () {
  9423. $('.selectpicker', form).selectpicker();
  9424. });
  9425. }
  9426. //绑定selectpage元素事件
  9427. if ($(".selectpage", form).size() > 0) {
  9428. require(['selectpage'], function () {
  9429. $('.selectpage', form).selectPage({
  9430. source: 'ajax/selectpage',
  9431. });
  9432. });
  9433. //给隐藏的元素添加上validate验证触发事件
  9434. $(form).on("change", ".selectpage-input-hidden", function () {
  9435. $(this).trigger("validate");
  9436. });
  9437. }
  9438. //绑定cxselect元素事件
  9439. if ($("[data-toggle='cxselect']").size() > 0) {
  9440. require(['cxselect'], function () {
  9441. $.cxSelect.defaults.jsonName = 'name';
  9442. $.cxSelect.defaults.jsonValue = 'value';
  9443. $.cxSelect.defaults.jsonSpace = 'data';
  9444. $("[data-toggle='cxselect']").cxSelect();
  9445. });
  9446. }
  9447. //绑定日期时间元素事件
  9448. if ($(".datetimepicker", form).size() > 0) {
  9449. require(['bootstrap-datetimepicker'], function () {
  9450. $('.datetimepicker', form).parent().css('position', 'relative');
  9451. $('.datetimepicker', form)
  9452. .datetimepicker({
  9453. format: 'YYYY-MM-DD HH:mm:ss',
  9454. icons: {
  9455. time: 'fa fa-clock-o',
  9456. date: 'fa fa-calendar',
  9457. up: 'fa fa-chevron-up',
  9458. down: 'fa fa-chevron-down',
  9459. previous: 'fa fa-chevron-left',
  9460. next: 'fa fa-chevron-right',
  9461. today: 'fa fa-history',
  9462. clear: 'fa fa-trash',
  9463. close: 'fa fa-remove'
  9464. },
  9465. showTodayButton: true,
  9466. showClose: true
  9467. });
  9468. });
  9469. }
  9470. //绑定summernote事件
  9471. if ($(".summernote", form).size() > 0) {
  9472. require(['summernote'], function () {
  9473. $(".summernote", form).summernote({
  9474. height: 250,
  9475. lang: 'zh-CN',
  9476. fontNames: [
  9477. 'Arial', 'Arial Black', 'Serif', 'Sans', 'Courier',
  9478. 'Courier New', 'Comic Sans MS', 'Helvetica', 'Impact', 'Lucida Grande',
  9479. "Open Sans", "Hiragino Sans GB", "Microsoft YaHei",
  9480. '微软雅黑', '宋体', '黑体', '仿宋', '楷体', '幼圆',
  9481. ],
  9482. fontNamesIgnoreCheck: [
  9483. "Open Sans", "Microsoft YaHei",
  9484. '微软雅黑', '宋体', '黑体', '仿宋', '楷体', '幼圆'
  9485. ],
  9486. dialogsInBody: true,
  9487. callbacks: {
  9488. onChange: function (contents) {
  9489. $(this).val(contents);
  9490. $(this).trigger('change');
  9491. },
  9492. onInit: function () {
  9493. },
  9494. onImageUpload: function (files) {
  9495. var that = this;
  9496. //依次上传图片
  9497. for (var i = 0; i < files.length; i++) {
  9498. Upload.api.send(files[i], function (data) {
  9499. var url = Fast.api.cdnurl(data.url);
  9500. $(that).summernote("insertImage", url, 'filename');
  9501. });
  9502. }
  9503. }
  9504. }
  9505. });
  9506. });
  9507. }
  9508. //绑定plupload上传元素事件
  9509. if ($(".plupload", form).size() > 0) {
  9510. Upload.api.plupload();
  9511. }
  9512. //绑定fachoose选择附件事件
  9513. if ($(".fachoose", form).size() > 0) {
  9514. $(document).on('click', ".fachoose", function () {
  9515. var multiple = $(this).data("multiple") ? $(this).data("multiple") : false;
  9516. var mimetype = $(this).data("mimetype") ? $(this).data("mimetype") : '';
  9517. Fast.api.open("general/attachment/select?callback=refreshchoose&element_id=" + $(this).attr("id") + "&multiple=" + multiple + "&mimetype=" + mimetype, __('Choose'));
  9518. return false;
  9519. });
  9520. //刷新选择的元素
  9521. window.refreshchoose = function (id, data, multiple) {
  9522. var input_id = $("#" + id).data("input-id");
  9523. if (multiple) {
  9524. var urlArr = [];
  9525. var inputObj = $("#" + input_id);
  9526. if (inputObj.val() != "") {
  9527. urlArr.push(inputObj.val());
  9528. }
  9529. urlArr.push(data.url);
  9530. inputObj.val(urlArr.join(",")).trigger("change");
  9531. } else {
  9532. $("#" + input_id).val(data.url).trigger("change");
  9533. }
  9534. Layer.closeAll();
  9535. };
  9536. }
  9537. },
  9538. custom: {}
  9539. },
  9540. };
  9541. return Form;
  9542. });
  9543. // jQuery List DragSort v0.5.2
  9544. // Website: http://dragsort.codeplex.com/
  9545. // License: http://dragsort.codeplex.com/license
  9546. (function($) {
  9547. $.fn.dragsort = function(options) {
  9548. if (options == "destroy") {
  9549. $(this.selector).trigger("dragsort-uninit");
  9550. return;
  9551. }
  9552. var opts = $.extend({}, $.fn.dragsort.defaults, options);
  9553. var lists = [];
  9554. var list = null, lastPos = null;
  9555. this.each(function(i, cont) {
  9556. //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
  9557. if ($(cont).is("table") && $(cont).children().size() == 1 && $(cont).children().is("tbody"))
  9558. cont = $(cont).children().get(0);
  9559. var newList = {
  9560. draggedItem: null,
  9561. placeHolderItem: null,
  9562. pos: null,
  9563. offset: null,
  9564. offsetLimit: null,
  9565. scroll: null,
  9566. container: cont,
  9567. init: function() {
  9568. //set options to default values if not set
  9569. opts.tagName = opts.tagName == "" ? ($(this.container).children().size() == 0 ? "li" : $(this.container).children().get(0).tagName.toLowerCase()) : opts.tagName;
  9570. if (opts.itemSelector == "")
  9571. opts.itemSelector = opts.tagName;
  9572. if (opts.dragSelector == "")
  9573. opts.dragSelector = opts.tagName;
  9574. if (opts.placeHolderTemplate == "")
  9575. opts.placeHolderTemplate = "<" + opts.tagName + ">&nbsp;</" + opts.tagName + ">";
  9576. //listidx allows reference back to correct list variable instance
  9577. $(this.container).attr("data-listidx", i).mousedown(this.grabItem).bind("dragsort-uninit", this.uninit);
  9578. this.styleDragHandlers(true);
  9579. },
  9580. uninit: function() {
  9581. var list = lists[$(this).attr("data-listidx")];
  9582. $(list.container).unbind("mousedown", list.grabItem).unbind("dragsort-uninit");
  9583. list.styleDragHandlers(false);
  9584. },
  9585. getItems: function() {
  9586. return $(this.container).children(opts.itemSelector);
  9587. },
  9588. styleDragHandlers: function(cursor) {
  9589. this.getItems().map(function() { return $(this).is(opts.dragSelector) ? this : $(this).find(opts.dragSelector).get(); }).css("cursor", cursor ? "pointer" : "");
  9590. },
  9591. grabItem: function(e) {
  9592. var list = lists[$(this).attr("data-listidx")];
  9593. var item = $(e.target).closest("[data-listidx] > " + opts.tagName).get(0);
  9594. var insideMoveableItem = list.getItems().filter(function() { return this == item; }).size() > 0;
  9595. //if not left click or if clicked on excluded element (e.g. text box) or not a moveable list item return
  9596. if (e.which != 1 || $(e.target).is(opts.dragSelectorExclude) || $(e.target).closest(opts.dragSelectorExclude).size() > 0 || !insideMoveableItem)
  9597. return;
  9598. //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,
  9599. //does also stop being able to click text boxes hence dragging on text boxes by default is disabled in dragSelectorExclude
  9600. //e.preventDefault();
  9601. //change cursor to move while dragging
  9602. var dragHandle = e.target;
  9603. while (!$(dragHandle).is(opts.dragSelector)) {
  9604. if (dragHandle == this) return;
  9605. dragHandle = dragHandle.parentNode;
  9606. }
  9607. $(dragHandle).attr("data-cursor", $(dragHandle).css("cursor"));
  9608. $(dragHandle).css("cursor", "move");
  9609. //on mousedown wait for movement of mouse before triggering dragsort script (dragStart) to allow clicking of hyperlinks to work
  9610. var listElem = this;
  9611. var trigger = function() {
  9612. list.dragStart.call(listElem, e);
  9613. $(list.container).unbind("mousemove", trigger);
  9614. };
  9615. $(list.container).mousemove(trigger).mouseup(function() { $(list.container).unbind("mousemove", trigger); $(dragHandle).css("cursor", $(dragHandle).attr("data-cursor")); });
  9616. },
  9617. dragStart: function(e) {
  9618. if (list != null && list.draggedItem != null)
  9619. list.dropItem();
  9620. list = lists[$(this).attr("data-listidx")];
  9621. list.draggedItem = $(e.target).closest("[data-listidx] > " + opts.tagName)
  9622. //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
  9623. list.draggedItem.attr("data-origpos", $(this).attr("data-listidx") + "-" + $(list.container).children().index(list.draggedItem));
  9624. //calculate mouse offset relative to draggedItem
  9625. var mt = parseInt(list.draggedItem.css("marginTop"));
  9626. var ml = parseInt(list.draggedItem.css("marginLeft"));
  9627. list.offset = list.draggedItem.offset();
  9628. list.offset.top = e.pageY - list.offset.top + (isNaN(mt) ? 0 : mt) - 1;
  9629. list.offset.left = e.pageX - list.offset.left + (isNaN(ml) ? 0 : ml) - 1;
  9630. //calculate box the dragged item can't be dragged outside of
  9631. if (!opts.dragBetween) {
  9632. 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();
  9633. list.offsetLimit = $(list.container).offset();
  9634. list.offsetLimit.right = list.offsetLimit.left + $(list.container).outerWidth() - list.draggedItem.outerWidth();
  9635. list.offsetLimit.bottom = list.offsetLimit.top + containerHeight - list.draggedItem.outerHeight();
  9636. }
  9637. //create placeholder item
  9638. var h = list.draggedItem.height();
  9639. var w = list.draggedItem.width();
  9640. if (opts.tagName == "tr") {
  9641. list.draggedItem.children().each(function() { $(this).width($(this).width()); });
  9642. list.placeHolderItem = list.draggedItem.clone().attr("data-placeholder", true);
  9643. list.draggedItem.after(list.placeHolderItem);
  9644. //list.placeHolderItem.children().each(function() { $(this).css({ borderWidth:0, width: $(this).width() + 1, height: $(this).height() + 1 }).html("&nbsp;"); });
  9645. list.placeHolderItem.children().each(function() { $(this).html("&nbsp;"); });
  9646. } else {
  9647. list.draggedItem.after(opts.placeHolderTemplate);
  9648. list.placeHolderItem = list.draggedItem.next().css({ height: h, width: w }).attr("data-placeholder", true);
  9649. }
  9650. if (opts.tagName == "td") {
  9651. var listTable = list.draggedItem.closest("table").get(0);
  9652. $("<table id='" + listTable.id + "' style='border-width: 0px;' class='dragSortItem " + listTable.className + "'><tr></tr></table>").appendTo("body").children().append(list.draggedItem);
  9653. }
  9654. //style draggedItem while dragging
  9655. var orig = list.draggedItem.attr("style");
  9656. list.draggedItem.attr("data-origstyle", orig ? orig : "");
  9657. list.draggedItem.css({ position: "absolute", opacity: 0.8, "z-index": 999, height: h, width: w });
  9658. //auto-scroll setup
  9659. list.scroll = { moveX: 0, moveY: 0, maxX: $(document).width() - $(window).width(), maxY: $(document).height() - $(window).height() };
  9660. list.scroll.scrollY = window.setInterval(function() {
  9661. if (opts.scrollContainer != window) {
  9662. $(opts.scrollContainer).scrollTop($(opts.scrollContainer).scrollTop() + list.scroll.moveY);
  9663. return;
  9664. }
  9665. var t = $(opts.scrollContainer).scrollTop();
  9666. if (list.scroll.moveY > 0 && t < list.scroll.maxY || list.scroll.moveY < 0 && t > 0) {
  9667. $(opts.scrollContainer).scrollTop(t + list.scroll.moveY);
  9668. list.draggedItem.css("top", list.draggedItem.offset().top + list.scroll.moveY + 1);
  9669. }
  9670. }, 10);
  9671. list.scroll.scrollX = window.setInterval(function() {
  9672. if (opts.scrollContainer != window) {
  9673. $(opts.scrollContainer).scrollLeft($(opts.scrollContainer).scrollLeft() + list.scroll.moveX);
  9674. return;
  9675. }
  9676. var l = $(opts.scrollContainer).scrollLeft();
  9677. if (list.scroll.moveX > 0 && l < list.scroll.maxX || list.scroll.moveX < 0 && l > 0) {
  9678. $(opts.scrollContainer).scrollLeft(l + list.scroll.moveX);
  9679. list.draggedItem.css("left", list.draggedItem.offset().left + list.scroll.moveX + 1);
  9680. }
  9681. }, 10);
  9682. //misc
  9683. $(lists).each(function(i, l) { l.createDropTargets(); l.buildPositionTable(); });
  9684. list.setPos(e.pageX, e.pageY);
  9685. $(document).bind("mousemove", list.swapItems);
  9686. $(document).bind("mouseup", list.dropItem);
  9687. if (opts.scrollContainer != window)
  9688. $(window).bind("wheel", list.wheel);
  9689. },
  9690. //set position of draggedItem
  9691. setPos: function(x, y) {
  9692. //remove mouse offset so mouse cursor remains in same place on draggedItem instead of top left corner
  9693. var top = y - this.offset.top;
  9694. var left = x - this.offset.left;
  9695. //limit top, left to within box draggedItem can't be dragged outside of
  9696. if (!opts.dragBetween) {
  9697. top = Math.min(this.offsetLimit.bottom, Math.max(top, this.offsetLimit.top));
  9698. left = Math.min(this.offsetLimit.right, Math.max(left, this.offsetLimit.left));
  9699. }
  9700. //adjust top & left calculations to parent offset
  9701. var parent = this.draggedItem.offsetParent().not("body").offset(); //offsetParent returns body even when it's static, if not static offset is only factoring margin
  9702. if (parent != null) {
  9703. top -= parent.top;
  9704. left -= parent.left;
  9705. }
  9706. //set x or y auto-scroll amount
  9707. if (opts.scrollContainer == window) {
  9708. y -= $(window).scrollTop();
  9709. x -= $(window).scrollLeft();
  9710. y = Math.max(0, y - $(window).height() + 5) + Math.min(0, y - 5);
  9711. x = Math.max(0, x - $(window).width() + 5) + Math.min(0, x - 5);
  9712. } else {
  9713. var cont = $(opts.scrollContainer);
  9714. var offset = cont.offset();
  9715. y = Math.max(0, y - cont.height() - offset.top) + Math.min(0, y - offset.top);
  9716. x = Math.max(0, x - cont.width() - offset.left) + Math.min(0, x - offset.left);
  9717. }
  9718. list.scroll.moveX = x == 0 ? 0 : x * opts.scrollSpeed / Math.abs(x);
  9719. list.scroll.moveY = y == 0 ? 0 : y * opts.scrollSpeed / Math.abs(y);
  9720. //move draggedItem to new mouse cursor location
  9721. this.draggedItem.css({ top: top, left: left });
  9722. },
  9723. //if scroll container is a div allow mouse wheel to scroll div instead of window when mouse is hovering over
  9724. wheel: function(e) {
  9725. if (list && opts.scrollContainer != window) {
  9726. var cont = $(opts.scrollContainer);
  9727. var offset = cont.offset();
  9728. e = e.originalEvent;
  9729. if (e.clientX > offset.left && e.clientX < offset.left + cont.width() && e.clientY > offset.top && e.clientY < offset.top + cont.height()) {
  9730. var deltaY = (e.deltaMode == 0 ? 1 : 10) * e.deltaY;
  9731. cont.scrollTop(cont.scrollTop() + deltaY);
  9732. e.preventDefault();
  9733. }
  9734. }
  9735. },
  9736. //build a table recording all the positions of the moveable list items
  9737. buildPositionTable: function() {
  9738. var pos = [];
  9739. this.getItems().not([list.draggedItem[0], list.placeHolderItem[0]]).each(function(i) {
  9740. var loc = $(this).offset();
  9741. loc.right = loc.left + $(this).outerWidth();
  9742. loc.bottom = loc.top + $(this).outerHeight();
  9743. loc.elm = this;
  9744. pos[i] = loc;
  9745. });
  9746. this.pos = pos;
  9747. },
  9748. dropItem: function() {
  9749. if (list.draggedItem == null)
  9750. return;
  9751. //list.draggedItem.attr("style", "") doesn't work on IE8 and jQuery 1.5 or lower
  9752. //list.draggedItem.removeAttr("style") doesn't work on chrome and jQuery 1.6 (works jQuery 1.5 or lower)
  9753. var orig = list.draggedItem.attr("data-origstyle");
  9754. list.draggedItem.attr("style", orig);
  9755. if (orig == "")
  9756. list.draggedItem.removeAttr("style");
  9757. list.draggedItem.removeAttr("data-origstyle");
  9758. list.styleDragHandlers(true);
  9759. list.placeHolderItem.before(list.draggedItem);
  9760. list.placeHolderItem.remove();
  9761. $("[data-droptarget], .dragSortItem").remove();
  9762. window.clearInterval(list.scroll.scrollY);
  9763. window.clearInterval(list.scroll.scrollX);
  9764. //if position changed call dragEnd
  9765. if (list.draggedItem.attr("data-origpos") != $(lists).index(list) + "-" + $(list.container).children().index(list.draggedItem))
  9766. if (opts.dragEnd.apply(list.draggedItem) == false) { //if dragEnd returns false revert order
  9767. var pos = list.draggedItem.attr("data-origpos").split('-');
  9768. var nextItem = $(lists[pos[0]].container).children().not(list.draggedItem).eq(pos[1]);
  9769. if (nextItem.size() > 0)
  9770. nextItem.before(list.draggedItem);
  9771. else if (pos[1] == 0) //was the only item in list
  9772. $(lists[pos[0]].container).prepend(list.draggedItem);
  9773. else //was the last item in list
  9774. $(lists[pos[0]].container).append(list.draggedItem);
  9775. }
  9776. list.draggedItem.removeAttr("data-origpos");
  9777. list.draggedItem = null;
  9778. $(document).unbind("mousemove", list.swapItems);
  9779. $(document).unbind("mouseup", list.dropItem);
  9780. if (opts.scrollContainer != window)
  9781. $(window).unbind("wheel", list.wheel);
  9782. return false;
  9783. },
  9784. //swap the draggedItem (represented visually by placeholder) with the list item the it has been dragged on top of
  9785. swapItems: function(e) {
  9786. if (list.draggedItem == null)
  9787. return false;
  9788. //move draggedItem to mouse location
  9789. list.setPos(e.pageX, e.pageY);
  9790. //retrieve list and item position mouse cursor is over
  9791. var ei = list.findPos(e.pageX, e.pageY);
  9792. var nlist = list;
  9793. for (var i = 0; ei == -1 && opts.dragBetween && i < lists.length; i++) {
  9794. ei = lists[i].findPos(e.pageX, e.pageY);
  9795. nlist = lists[i];
  9796. }
  9797. //if not over another moveable list item return
  9798. if (ei == -1)
  9799. return false;
  9800. //save fixed items locations
  9801. var children = function() { return $(nlist.container).children().not(nlist.draggedItem); };
  9802. var fixed = children().not(opts.itemSelector).each(function(i) { this.idx = children().index(this); });
  9803. //if moving draggedItem up or left place placeHolder before list item the dragged item is hovering over otherwise place it after
  9804. if (lastPos == null || lastPos.top > list.draggedItem.offset().top || lastPos.left > list.draggedItem.offset().left)
  9805. $(nlist.pos[ei].elm).before(list.placeHolderItem);
  9806. else
  9807. $(nlist.pos[ei].elm).after(list.placeHolderItem);
  9808. //restore fixed items location
  9809. fixed.each(function() {
  9810. var elm = children().eq(this.idx).get(0);
  9811. if (this != elm && children().index(this) < this.idx)
  9812. $(this).insertAfter(elm);
  9813. else if (this != elm)
  9814. $(this).insertBefore(elm);
  9815. });
  9816. //misc
  9817. $(lists).each(function(i, l) { l.createDropTargets(); l.buildPositionTable(); });
  9818. lastPos = list.draggedItem.offset();
  9819. return false;
  9820. },
  9821. //returns the index of the list item the mouse is over
  9822. findPos: function(x, y) {
  9823. for (var i = 0; i < this.pos.length; i++) {
  9824. if (this.pos[i].left < x && this.pos[i].right > x && this.pos[i].top < y && this.pos[i].bottom > y)
  9825. return i;
  9826. }
  9827. return -1;
  9828. },
  9829. //create drop targets which are placeholders at the end of other lists to allow dragging straight to the last position
  9830. createDropTargets: function() {
  9831. if (!opts.dragBetween)
  9832. return;
  9833. $(lists).each(function() {
  9834. var ph = $(this.container).find("[data-placeholder]");
  9835. var dt = $(this.container).find("[data-droptarget]");
  9836. if (ph.size() > 0 && dt.size() > 0)
  9837. dt.remove();
  9838. else if (ph.size() == 0 && dt.size() == 0) {
  9839. if (opts.tagName == "td")
  9840. $(opts.placeHolderTemplate).attr("data-droptarget", true).appendTo(this.container);
  9841. else
  9842. //list.placeHolderItem.clone().removeAttr("data-placeholder") crashes in IE7 and jquery 1.5.1 (doesn't in jquery 1.4.2 or IE8)
  9843. $(this.container).append(list.placeHolderItem.removeAttr("data-placeholder").clone().attr("data-droptarget", true));
  9844. list.placeHolderItem.attr("data-placeholder", true);
  9845. }
  9846. });
  9847. }
  9848. };
  9849. newList.init();
  9850. lists.push(newList);
  9851. });
  9852. return this;
  9853. };
  9854. $.fn.dragsort.defaults = {
  9855. tagName:"",
  9856. itemSelector: "",
  9857. dragSelector: "",
  9858. dragSelectorExclude: "input, textarea",
  9859. dragEnd: function() { },
  9860. dragBetween: false,
  9861. placeHolderTemplate: "",
  9862. scrollContainer: window,
  9863. scrollSpeed: 5
  9864. };
  9865. })(jQuery);
  9866. define("dragsort", function(){});
  9867. /*!
  9868. * jquery.event.drag - v 2.2
  9869. * Copyright (c) 2010 Three Dub Media - http://threedubmedia.com
  9870. * Open Source MIT License - http://threedubmedia.com/code/license
  9871. */
  9872. ;(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);
  9873. define("drag", function(){});
  9874. /*!
  9875. * jquery.event.drop - v 2.2
  9876. * Copyright (c) 2010 Three Dub Media - http://threedubmedia.com
  9877. * Open Source MIT License - http://threedubmedia.com/code/license
  9878. */
  9879. ;(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);
  9880. define("drop", function(){});
  9881. /**
  9882. * http://git.oschina.net/hbbcs/bootStrap-addTabs
  9883. * Created by joe on 2015-12-19.
  9884. * @param {type} options {
  9885. * content string||html 直接指定内容
  9886. * close bool 是否可以关闭
  9887. * monitor 监视的区域
  9888. * }
  9889. *
  9890. * @returns
  9891. */
  9892. $.fn.addtabs = function (options) {
  9893. var obj = $(this);
  9894. options = $.extend({
  9895. content: '', //直接指定所有页面TABS内容
  9896. close: true, //是否可以关闭
  9897. monitor: 'body', //监视的区域
  9898. nav: '.nav-addtabs',
  9899. tab: '.tab-addtabs',
  9900. iframeUse: true, //使用iframe还是ajax
  9901. iframeHeight: $(window).height() - 50, //固定TAB中IFRAME高度,根据需要自己修改
  9902. callback: function () {
  9903. //关闭后回调函数
  9904. }
  9905. }, options || {});
  9906. var navobj = $(options.nav);
  9907. var tabobj = $(options.tab);
  9908. if (history.pushState) {
  9909. //浏览器前进后退事件
  9910. $(window).on("popstate", function (e) {
  9911. var state = e.originalEvent.state;
  9912. $("a[addtabs=" + state.id + "]", options.monitor).data("pushstate", true).trigger("click");
  9913. });
  9914. }
  9915. $(options.monitor).on('click', '[addtabs]', function (e) {
  9916. if ($(this).attr('url').indexOf("javascript") !== 0) {
  9917. if ($(this).is("a")) {
  9918. e.preventDefault();
  9919. }
  9920. var id = $(this).attr('addtabs');
  9921. var title = $(this).attr('title') ? $(this).attr('title') : $.trim($(this).text());
  9922. var url = $(this).attr('url');
  9923. var content = options.content ? options.content : $(this).attr('content');
  9924. var ajax = $(this).attr('ajax') ? true : false;
  9925. var state = ({
  9926. url: url, title: title, id: id, content: content, ajax: ajax
  9927. });
  9928. document.title = title;
  9929. if (history.pushState && !$(this).data("pushstate")) {
  9930. var pushurl = url.indexOf("ref=addtabs") == -1 ? (url + (url.indexOf("?") > -1 ? "&" : "?") + "ref=addtabs") : url;
  9931. window.history.pushState(state, title, pushurl);
  9932. }
  9933. $(this).data("pushstate", null);
  9934. _add({
  9935. id: id,
  9936. title: $(this).attr('title') ? $(this).attr('title') : $(this).html(),
  9937. content: content,
  9938. url: url,
  9939. ajax: ajax
  9940. });
  9941. }
  9942. });
  9943. navobj.on('click', '.close-tab', function (e) {
  9944. id = $(this).prev("a").attr("aria-controls");
  9945. _close(id);
  9946. return false;
  9947. });
  9948. navobj.on('dblclick', 'li[role=presentation]', function (e) {
  9949. $(this).find(".close-tab").trigger("click");
  9950. });
  9951. navobj.on('click', 'li[role=presentation]', function (e) {
  9952. $("a[addtabs=" + $("a", this).attr("node-id") + "]").trigger("click");
  9953. });
  9954. $(window).resize(function () {
  9955. $("#nav").width($("#header > .navbar").width() - $(".sidebar-toggle").outerWidth() - $(".navbar-custom-menu").outerWidth() - 20);
  9956. _drop();
  9957. });
  9958. _add = function (opts) {
  9959. id = 'tab_' + opts.id;
  9960. url = opts.url;
  9961. url += (opts.url.indexOf("?") > -1 ? "&addtabs=1" : "?addtabs=1");
  9962. navobj.find("[role='presentation']").removeClass('active');
  9963. tabobj.find("[role='tabpanel']").removeClass('active');
  9964. //如果TAB不存在,创建一个新的TAB
  9965. if ($("#" + id).size() == 0) {
  9966. //创建新TAB的title
  9967. title = $('<li role="presentation" id="tab_' + id + '"><a href="#' + id + '" node-id="' + opts.id + '" aria-controls="' + id + '" role="tab" data-toggle="tab">' + opts.title + '</a></li>');
  9968. //是否允许关闭
  9969. if (options.close && $("li", navobj).size() > 0) {
  9970. title.append(' <i class="close-tab fa fa-remove"></i>');
  9971. }
  9972. //创建新TAB的内容
  9973. content = $('<div role="tabpanel" class="tab-pane" id="' + id + '"></div>');
  9974. //是否指定TAB内容
  9975. if (opts.content) {
  9976. content.append(opts.content);
  9977. } else if (options.iframeUse && !opts.ajax) {//没有内容,使用IFRAME打开链接
  9978. var height = options.iframeHeight;
  9979. 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>');
  9980. } else {
  9981. $.get(url, function (data) {
  9982. content.append(data);
  9983. });
  9984. }
  9985. //加入TABS
  9986. if ($('.tabdrop li').size() > 0) {
  9987. $('.tabdrop ul').append(title);
  9988. } else {
  9989. navobj.append(title);
  9990. }
  9991. tabobj.append(content);
  9992. }
  9993. //激活TAB
  9994. $("#tab_" + id).addClass('active');
  9995. $("#" + id).addClass("active");
  9996. _drop();
  9997. };
  9998. _close = function (id) {
  9999. //如果关闭的是当前激活的TAB,激活他的前一个TAB
  10000. if (obj.find("li.active").attr('id') == "tab_" + id) {
  10001. if ($("#tab_" + id).prev().not(".tabdrop").size() > 0) {
  10002. $("#tab_" + id).prev().not(".tabdrop").find("a").trigger("click");
  10003. } else if ($("#tab_" + id).next().size() > 0) {
  10004. $("#tab_" + id).next().trigger("click");
  10005. }
  10006. }
  10007. //关闭TAB
  10008. $("#tab_" + id).remove();
  10009. $("#" + id).remove();
  10010. _drop();
  10011. options.callback();
  10012. };
  10013. _drop = function () {
  10014. //创建下拉标签
  10015. var dropdown = $('<li class="dropdown pull-right hide tabdrop"><a class="dropdown-toggle" data-toggle="dropdown" href="javascript:;">' +
  10016. '<i class="glyphicon glyphicon-align-justify"></i>' +
  10017. ' <b class="caret"></b></a><ul class="dropdown-menu"></ul></li>');
  10018. //检测是否已增加
  10019. if (!$('.tabdrop').html()) {
  10020. dropdown.prependTo(navobj);
  10021. } else {
  10022. dropdown = navobj.find('.tabdrop');
  10023. }
  10024. //检测是否有下拉样式
  10025. if (navobj.parent().is('.tabs-below')) {
  10026. dropdown.addClass('dropup');
  10027. }
  10028. var collection = 0;
  10029. var maxwidth = navobj.width() - 60;
  10030. var liwidth = 0;
  10031. //检查超过一行的标签页
  10032. var litabs = navobj.append(dropdown.find('li')).find('>li').not('.tabdrop');
  10033. var lisize = litabs.size();
  10034. litabs.each(function (i, j) {
  10035. liwidth += $(this).width();
  10036. if (collection == 0 && i == lisize - 1 && liwidth <= navobj.width()) {
  10037. return true;
  10038. }
  10039. if (liwidth > maxwidth) {
  10040. dropdown.find('ul').append($(this));
  10041. collection++;
  10042. }
  10043. });
  10044. //如果有超出的,显示下拉标签
  10045. if (collection > 0) {
  10046. dropdown.removeClass('hide');
  10047. if (dropdown.find('.active').length == 1) {
  10048. dropdown.addClass('active');
  10049. } else {
  10050. dropdown.removeClass('active');
  10051. }
  10052. } else {
  10053. dropdown.addClass('hide');
  10054. }
  10055. };
  10056. };
  10057. define("addtabs", function(){});
  10058. /**
  10059. * @file jQuery Plugin: SelectPage
  10060. * @version 0.1
  10061. * @author TerryZeng
  10062. * @license MIT License
  10063. *
  10064. * 插件的部分功能使用、借鉴了
  10065. * jQuery Plugin: jquery.ajax-combobox
  10066. * 作者:Yuusaku Miyazaki <toumin.m7@gmail.com>(宮崎 雄策)
  10067. *
  10068. */
  10069. ;
  10070. (function (factory) {
  10071. if (typeof define === "function" && define.amd) {
  10072. // AMD模式
  10073. define('selectpage',["jquery"], factory);
  10074. } else {
  10075. // 全局模式
  10076. factory(jQuery);
  10077. }
  10078. }(function ($) {
  10079. "use strict";
  10080. /**
  10081. * 内部使用常量
  10082. */
  10083. var constants = {
  10084. dataKey: 'selectPageObject', //插件缓存内部对象的KEY
  10085. objStatusKey: 'selectPage-self-mark', //全局范围设置当前点击是否为插件自身的标识
  10086. objStatusIndex: 'selectPage-self-index' //全局范围设置当前点击的selectpage的索引下标
  10087. };
  10088. /**
  10089. * @desc 下拉分页查询控件初始化入口
  10090. * @global
  10091. * @memberof jQuery
  10092. * @param {string|Object} source - 数据源(String:Ajax查询的URL|Object:JSON格式的数据源)
  10093. * @param {Object} option - 初始化参数集
  10094. *
  10095. *
  10096. * option参数集内容
  10097. * @param {boolean} [option.instance] - 是否返回插件内部对象(true:返回内部对象,false:返回输入框自身)
  10098. * @param {string} [option.lang='cn'] - 插件显示语言 ('en','cn'等)
  10099. * @param {boolean} [option.multiple] - 是否为多选模式(多选模式下,选中的项目将会以Tag标签的形式展现)
  10100. * @param {string} [option.field='name'] - 结果集中用于显示的属性名
  10101. * @param {string} [option.search_field=option.field] - 使用ajax作为数据源情况下的查询字段指定。 (e.g.: 'id, name, job')
  10102. * @param {string|Array} [option.order_by=option.search_field] - 排序字段指定,若不指定则自动使用查询字段 (e.g.: 'name DESC' or ['name ASC', 'age DESC'])
  10103. * @param {number} [option.per_page=10] - 每页显示的记录数
  10104. * @param {string} [option.init_record=false] - 插件初始值指定,该值会与option.primary_key字段进行匹配,若匹配到,则自动设置选中并高亮
  10105. * @param {string} [option.bind_to] - 指定事件名称,用于在选择项目后进行触发(必须已自行绑定好事件)
  10106. * @param {string} [option.and_or='AND'] - 查询方式 ('AND' or 'OR')
  10107. * @param {boolean} [option.select_only=false] - 仅选择,不能输入查询关键字
  10108. * @param {string} [option.primary_key='id'] - 值字段,通常该字段的内容会自动保存在隐藏域中
  10109. */
  10110. $.fn.selectPage = function (option) {
  10111. var arr = [];
  10112. this.each(function () {
  10113. arr.push(new SelectPage(this, option));
  10114. });
  10115. return (option !== undefined && option.instance !== undefined && option.instance) ? $(arr) : this;
  10116. };
  10117. /**
  10118. * @global
  10119. * @constructor
  10120. * @classdesc 插件初始化
  10121. * @param {Object} combo_input - 插件的初始化输入框元素。
  10122. * @param {string|Object} source - 数据来源
  10123. * string:服务端请求的URL地址
  10124. * Object:JSON格式数组,推荐格式:[{a:1,b:2,c:3},{...}]
  10125. * @param {Object} option - 初始化参数
  10126. */
  10127. function SelectPage(combo_input, option) {
  10128. var option = $.extend({}, option, $(combo_input).data());
  10129. option = this._setCamelcaseToUnderscore(option);
  10130. this._setOption(option);
  10131. this._setLanguage();
  10132. this._setCssClass();
  10133. this._setProp();
  10134. this._setElem(combo_input, option);
  10135. this._setButtonAttrDefault();
  10136. this._setInitRecord();
  10137. this._ehButton();
  10138. this._ehComboInput();
  10139. this._ehWhole();
  10140. //缓存内部对象
  10141. $(this.elem.container).data(constants.dataKey, this);
  10142. }
  10143. /**
  10144. * 内部函数定义
  10145. */
  10146. $.extend(SelectPage.prototype, {
  10147. /**
  10148. * @private
  10149. * @desc 参数初始化
  10150. * @param {string|Object} source - 数据源
  10151. * @param {Object} option - 参数集
  10152. */
  10153. _setOption: function (option) {
  10154. option = this._setOption1st(option);
  10155. option = this._setOption2nd(option);
  10156. this.option = option;
  10157. },
  10158. /**
  10159. * @private
  10160. * @desc 参数使用默认值进行初始化与合并
  10161. * @param {Object} option - 初始化参数
  10162. * @return {Object} - 合并后的参数
  10163. */
  10164. _setOption1st: function (option) {
  10165. option = $.extend({
  10166. lang: 'cn',
  10167. multiple: false,
  10168. init_record: false,
  10169. field: 'name',
  10170. and_or: 'AND',
  10171. per_page: 10,
  10172. primary_key: 'id',
  10173. bind_to: false,
  10174. /**
  10175. * 是否在输入框获得焦点时,展开下拉窗口
  10176. * 默认:true
  10177. */
  10178. focus_drop_list: true,
  10179. /**
  10180. * 是否自动选择列表中的第一项内容(输入关键字查询模式,直接使用鼠标下拉并不触发)
  10181. * 默认:false
  10182. */
  10183. auto_select_first: false,
  10184. /**
  10185. * 是否自动填充内容
  10186. * 若有列表项目被高亮显示,在焦点离开控件后,自动设置该项为选中内容
  10187. * 默认:false
  10188. */
  10189. auto_fill_result: false,
  10190. /**
  10191. * 是否清空输入关键字
  10192. * 在输入框中输入内容进行查询,但没有匹配的内容返回,在焦点离开控件后,自动清空输入框输入的内容
  10193. * 默认:false
  10194. */
  10195. no_result_clean: false,
  10196. /**
  10197. * 列表项目显示内容格式化
  10198. * 参数类型:function
  10199. * 参数1:data,行数据object格式
  10200. * 返回:string
  10201. */
  10202. format_item: false,
  10203. /**
  10204. * 是否使用Formatter的text文本来填充文本框
  10205. */
  10206. format_fill: false,
  10207. /**
  10208. * 只选择模式
  10209. */
  10210. select_only: true,
  10211. }, option);
  10212. //特殊字段处理
  10213. $.each({data: 'source', key_field: 'primary_key', show_field: 'field', init_code: 'init_record', page_size: 'per_page'}, function (i, j) {
  10214. if (typeof option[i] !== 'undefined') {
  10215. option[j] = option[i];
  10216. delete option[i];
  10217. }
  10218. });
  10219. return option;
  10220. },
  10221. /**
  10222. * @private
  10223. * @desc 参数初始化后的调整
  10224. * @param {Object} option - 参数集
  10225. * @return {Object} - 处理后的参数集
  10226. */
  10227. _setOption2nd: function (option) {
  10228. //若没有设置搜索字段,则使用显示字段作为搜索字段
  10229. option.search_field = (option.search_field === undefined) ? option.field : option.search_field;
  10230. //统一大写
  10231. option.and_or = option.and_or.toUpperCase();
  10232. var arr = ['hide_field', 'show_field', 'search_field'];
  10233. for (var i = 0; i < arr.length; i++) {
  10234. option[arr[i]] = this._strToArray(option[arr[i]]);
  10235. }
  10236. //设置排序字段
  10237. option.order_by = (option.order_by === undefined) ? option.search_field : option.order_by;
  10238. //设置多字段排序
  10239. //例: [ ['id', 'ASC'], ['name', 'DESC'] ]
  10240. option.order_by = this._setOrderbyOption(option.order_by, option.field);
  10241. return option;
  10242. },
  10243. /**
  10244. * 设置峰驼至下划线
  10245. * @param {object} option
  10246. * @returns {object}
  10247. */
  10248. _setCamelcaseToUnderscore: function (option) {
  10249. $.each(option, function (i, j) {
  10250. var field = i.replace(/([a-z])([A-Z])/g, '$1_$2').toLowerCase();
  10251. if (field !== i) {
  10252. option[field] = j;
  10253. delete option[i];
  10254. }
  10255. });
  10256. return option;
  10257. },
  10258. /**
  10259. * @private
  10260. * @desc 字符串转换为数组
  10261. * @param {string} str - 字符串
  10262. * @return {Array} - 数组
  10263. */
  10264. _strToArray: function (str) {
  10265. if (!str)
  10266. return '';
  10267. return str.replace(/[\s ]+/g, '').split(',');
  10268. },
  10269. /**
  10270. * @private
  10271. * @desc 设置多字段排序
  10272. * @param {Array} arg_order - 排序顺序
  10273. * @param {string} arg_field - 字段
  10274. * @return {Array} - 处理后的排序字段内容
  10275. */
  10276. _setOrderbyOption: function (arg_order, arg_field) {
  10277. var arr = [], orders = [];
  10278. if (typeof arg_order == 'object') {
  10279. for (var i = 0; i < arg_order.length; i++) {
  10280. orders = $.trim(arg_order[i]).split(' ');
  10281. arr[i] = (orders.length == 2) ? orders : [orders[0], 'ASC'];
  10282. }
  10283. } else {
  10284. orders = $.trim(arg_order).split(' ');
  10285. arr[0] = (orders.length == 2) ? orders : (orders[0].match(/^(ASC|DESC)$/i)) ? [arg_field, orders[0]] : [orders[0], 'ASC'];
  10286. }
  10287. return arr;
  10288. },
  10289. /**
  10290. * @private
  10291. * @desc 界面文字国际化
  10292. */
  10293. _setLanguage: function () {
  10294. var message;
  10295. switch (this.option.lang) {
  10296. // English
  10297. case 'en':
  10298. message = {
  10299. add_btn: 'Add button',
  10300. add_title: 'add a box',
  10301. del_btn: 'Del button',
  10302. del_title: 'delete a box',
  10303. next: 'Next',
  10304. next_title: 'Next' + this.option.per_page + ' (Right key)',
  10305. prev: 'Prev',
  10306. prev_title: 'Prev' + this.option.per_page + ' (Left key)',
  10307. first_title: 'First (Shift + Left key)',
  10308. last_title: 'Last (Shift + Right key)',
  10309. get_all_btn: 'Get All (Down key)',
  10310. get_all_alt: '(button)',
  10311. close_btn: 'Close (Tab key)',
  10312. close_alt: '(button)',
  10313. loading: 'loading...',
  10314. loading_alt: '(loading)',
  10315. page_info: 'num_page_top - num_page_end of cnt_whole',
  10316. select_ng: 'Attention : Please choose from among the list.',
  10317. select_ok: 'OK : Correctly selected.',
  10318. not_found: 'not found',
  10319. ajax_error: 'An error occurred while connecting to server. (ajax-combobox)'
  10320. };
  10321. break;
  10322. // 中文
  10323. case 'cn':
  10324. message = {
  10325. add_btn: '添加按钮',
  10326. add_title: '添加区域',
  10327. del_btn: '删除按钮',
  10328. del_title: '删除区域',
  10329. next: '下一页',
  10330. next_title: '下' + this.option.per_page + ' (→)',
  10331. prev: '上一页',
  10332. prev_title: '上' + this.option.per_page + ' (←)',
  10333. first_title: '首页 (Shift + ←)',
  10334. last_title: '尾页 (Shift + →)',
  10335. get_all_btn: '获得全部 (↓)',
  10336. get_all_alt: '(按钮)',
  10337. close_btn: '关闭 (Tab键)',
  10338. close_alt: '(按钮)',
  10339. loading: '读取中...',
  10340. loading_alt: '(读取中)',
  10341. page_info: 'num_page_top - num_page_end (共 cnt_whole)',
  10342. select_ng: '请注意:请从列表中选择.',
  10343. select_ok: 'OK : 已经选择.',
  10344. not_found: '无查询结果',
  10345. ajax_error: '连接到服务器时发生错误!'
  10346. };
  10347. break;
  10348. }
  10349. this.message = message;
  10350. },
  10351. /**
  10352. * @private
  10353. * @desc CSS样式表名称字义
  10354. */
  10355. _setCssClass: function () {
  10356. var css_class = {
  10357. container: 'sp_container',
  10358. // SelectPage最外层DIV的打开状态
  10359. container_open: 'sp_container_open',
  10360. selected: 'sp_selected',
  10361. re_area: 'sp_result_area',
  10362. //标签及输入框的
  10363. element_box: 'sp_element_box',
  10364. // 分页导航
  10365. navi: 'pagination',
  10366. // 下拉结果列表
  10367. results: 'sp_results',
  10368. re_off: 'sp_results_off',
  10369. select: 'sp_over',
  10370. select_ok: 'sp_select_ok',
  10371. select_ng: 'sp_select_ng',
  10372. input_off: 'sp_input_off',
  10373. button: 'sp_button',
  10374. btn_on: 'sp_btn_on',
  10375. btn_out: 'sp_btn_out',
  10376. input: 'sp_input'
  10377. };
  10378. this.css_class = css_class;
  10379. },
  10380. /**
  10381. * @private
  10382. * @desc 设置属性默认值
  10383. */
  10384. _setProp: function () {
  10385. this.prop = {
  10386. is_suggest: false,
  10387. //当前页
  10388. page_all: 1,
  10389. page_suggest: 1,
  10390. //总页数
  10391. max_all: 1,
  10392. max_suggest: 1,
  10393. //正在分页状态
  10394. is_paging: false,
  10395. //是否正在Ajax请求
  10396. is_loading: false,
  10397. xhr: false,
  10398. //使用键盘进行分页
  10399. key_paging: false,
  10400. //使用键盘进行选择
  10401. key_select: false,
  10402. //上一个选择的项目值
  10403. prev_value: ''
  10404. };
  10405. this.template = {
  10406. tag: {
  10407. content: '<li class="selected_tag" itemvalue="#item_value#">#item_text#<span class="tag_close">&times;</span></li>',
  10408. textKey: '#item_text#',
  10409. valueKey: '#item_value#'
  10410. }
  10411. };
  10412. },
  10413. /**
  10414. * @private
  10415. * @desc 插件HTML结构生成
  10416. * @param {Object} combo_input - 输入框源对象
  10417. */
  10418. _setElem: function (combo_input, option) {
  10419. //如果当前元素有默认值,且init_record为false时自动从元素取
  10420. var value = $(combo_input).val();
  10421. if (value && !option.init_record) {
  10422. this.option.init_record = $.isArray(value) ? value.join(',') : value;
  10423. }
  10424. // 1. 生成、替换DOM对象
  10425. var elem = {};//本体
  10426. //将原始输入框中,用户设置的样式提取,并放到最外层的容器中,'class':''
  10427. var outerWidth = $(combo_input).outerWidth();
  10428. elem.combo_input = $(combo_input).attr({'autocomplete': 'off'}).addClass(this.css_class.input).wrap('<div>'); // This "div" is "container".
  10429. elem.container = $(elem.combo_input).parent().addClass(this.css_class.container);
  10430. elem.button = $('<div>').addClass(this.css_class.button);
  10431. //更换为bootstrap风格的向下三角箭头
  10432. elem.img = $('<span class="bs-caret"><span class="caret"></span></span>');
  10433. //多选模式下带标签显示及文本输入的组合框
  10434. elem.element_box = $('<ul>').addClass(this.css_class.element_box);
  10435. //结果集列表
  10436. elem.result_area = $('<div>').addClass(this.css_class.re_area);
  10437. //分页栏
  10438. elem.navi = $('<ul>').addClass(this.css_class.navi).addClass("hide");
  10439. //elem.navi_info = $('<div>').addClass('info');
  10440. //elem.navi_p = $('<p>');
  10441. elem.results = $('<ul>').addClass(this.css_class.results);
  10442. /**
  10443. * 将原输入框的Name交换到Hidden中,因为具体需要保存传递到后端的是ID,而非Title
  10444. */
  10445. var namePrefix = '_text';
  10446. //将primary_key的值放入"input:hidden"
  10447. var input_id = ($(elem.combo_input).attr('id') !== undefined) ? $(elem.combo_input).attr('id') : $(elem.combo_input).attr('name');
  10448. var input_name = ($(elem.combo_input).attr('name') !== undefined) ? $(elem.combo_input).attr('name') : 'selectPage';
  10449. var hidden_name = input_name,
  10450. hidden_id = input_id;
  10451. if (input_name.match(/\]$/))
  10452. input_name = input_name.replace(/\]?$/, namePrefix);
  10453. else
  10454. input_name += namePrefix;
  10455. if (input_id.match(/\]$/))
  10456. input_id = input_id.replace(/\]?$/, namePrefix);
  10457. else
  10458. input_id += namePrefix;
  10459. if ($(elem.combo_input).is("select")) {
  10460. //将输入框的Name与Hidden的Name进行交换,使得可以将项目的具体ID被保存到后端进行处理
  10461. elem.hidden = $('<select class="hide" />').attr({
  10462. name: hidden_name,
  10463. id: hidden_id
  10464. }).prop("multiple", $(elem.combo_input).prop("multiple")).empty();
  10465. var newinput = $('<input type="text" class="form-control" />').attr({
  10466. name: input_name,
  10467. id: input_id
  10468. }).addClass(this.css_class.input);
  10469. if (!option.source) {
  10470. var source = [];
  10471. $("option", elem.combo_input).each(function (i, j) {
  10472. source.push({id: i, name: $(this).text()});
  10473. });
  10474. this.option.source = source;
  10475. }
  10476. $(elem.combo_input).replaceWith(newinput);
  10477. elem.combo_input = newinput;
  10478. } else {
  10479. //将输入框的Name与Hidden的Name进行交换,使得可以将项目的具体ID被保存到后端进行处理
  10480. elem.hidden = $('<input type="hidden" class="hide" />').attr({
  10481. name: hidden_name,
  10482. id: hidden_id
  10483. }).val('');
  10484. $(elem.combo_input).attr({
  10485. name: input_name,
  10486. id: input_id
  10487. });
  10488. }
  10489. $(elem.hidden).addClass("selectpage-input-hidden");
  10490. // 2. DOM内容放置
  10491. $(elem.container).append(elem.button).append(elem.result_area).append(elem.hidden);
  10492. $(elem.button).append(elem.img);
  10493. $(elem.result_area).append(elem.results).append(elem.navi);
  10494. //多选模式下的特殊处理
  10495. if (option.multiple) {
  10496. $(elem.container).addClass('sp_container_combo');
  10497. $(elem.combo_input).addClass('sp_combo_input').before($(elem.element_box));
  10498. var li = $('<li>').addClass('input_box');
  10499. $(li).append($(elem.combo_input));
  10500. $(elem.element_box).append($(li));
  10501. if ($(elem.combo_input).attr('placeholder'))
  10502. $(elem.combo_input).attr('placeholder_bak', $(elem.combo_input).attr('placeholder'));
  10503. }
  10504. if ($(elem.container).parent().hasClass("input-group")) {
  10505. $(elem.container).height($(elem.container).parent().height());
  10506. }
  10507. this.elem = elem;
  10508. },
  10509. /**
  10510. * @private
  10511. * @desc 将控件的部分内容设置为默认状态
  10512. */
  10513. _setButtonAttrDefault: function () {
  10514. if (this.option.select_only) {
  10515. if ($(this.elem.combo_input).val() !== '') {
  10516. if ($(this.elem.hidden).val()) {
  10517. //选择条件
  10518. $(this.elem.combo_input).prop('title', this.message.select_ok).removeClass(this.css_class.select_ng).addClass(this.css_class.select_ok);
  10519. } else {
  10520. //输入方式
  10521. $(this.elem.combo_input).prop('title', this.message.select_ng).removeClass(this.css_class.select_ok).addClass(this.css_class.select_ng);
  10522. }
  10523. } else {
  10524. $(this.elem.combo_input).prop('title', '').removeClass(this.css_class.select_ng);
  10525. }
  10526. }
  10527. $(this.elem.button).prop('title', this.message.get_all_btn);
  10528. },
  10529. /**
  10530. * @private
  10531. * @desc 为插件设置初始化的选中值(若有指定的话)
  10532. */
  10533. _setInitRecord: function () {
  10534. var self = this;
  10535. //初始化外框宽度
  10536. //$(self.elem.container).width($(self.elem.combo_input).outerWidth());
  10537. if (this.option.init_record === false)
  10538. return;
  10539. // 初始的KEY值放入隐藏域
  10540. self._setHiddenValue(self.option.init_record);
  10541. //将初始值放入控件
  10542. if (typeof self.option.source == 'object') {
  10543. var data = new Array();
  10544. var keyarr = self.option.init_record.split(',');
  10545. $.each(keyarr, function (index, row) {
  10546. for (var i = 0; i < self.option.source.length; i++) {
  10547. if (self.option.source[i][self.option.primary_key] == row) {
  10548. data.push(self.option.source[i]);
  10549. break;
  10550. }
  10551. }
  10552. });
  10553. //在单选模式下,若使用了多选模式的初始化值(“key1,key2,...”多选方式),则不进行初始化选中操作
  10554. if (!self.option.multiple && data.length > 1)
  10555. data = null;
  10556. self._afterInit(self, data);
  10557. } else {
  10558. var _paramsFunc = self.option.params;
  10559. var _params = {};
  10560. //原始参数
  10561. var _orgParams = {
  10562. field: self.option.field,
  10563. order_by: self.option.order_by,
  10564. pkey_name: self.option.primary_key,
  10565. pkey_value: self.option.init_record
  10566. };
  10567. if (_paramsFunc) {
  10568. var result = $.isFunction(_paramsFunc) ? _paramsFunc() : _paramsFunc;
  10569. if (result && $.isPlainObject(result)) {
  10570. _params = $.extend({}, _orgParams, result);
  10571. } else {
  10572. _params = _orgParams;
  10573. }
  10574. } else {
  10575. _params = _orgParams;
  10576. }
  10577. $.ajax({
  10578. dataType: 'json',
  10579. url: self.option.source,
  10580. data: _params,
  10581. success: function (returnData) {
  10582. if (typeof returnData.rows === 'undefined' || !$.isArray(returnData.rows)) {
  10583. self.prop.xhr = null;
  10584. self._notFoundSearch(self);
  10585. return;
  10586. } else {
  10587. returnData.list = returnData.rows;
  10588. }
  10589. self._afterInit(self, returnData.list);
  10590. },
  10591. error: function (jqXHR, textStatus, errorThrown) {
  10592. self._ajaxErrorNotify(self, errorThrown);
  10593. }
  10594. });
  10595. }
  10596. },
  10597. /**
  10598. * @private
  10599. * @desc 初始化后的处理
  10600. * @param {Object} self - 插件的内部对象
  10601. * @param {Object} data - 列表数据
  10602. */
  10603. _afterInit: function (self, data) {
  10604. if (!data)
  10605. return;
  10606. if (!$.isArray(data))
  10607. data = [data];
  10608. if (self.option.multiple) {//多选模式初始化
  10609. $(self.elem.combo_input).val('');
  10610. $.each(data, function (i, row) {
  10611. var item = {text: row[self.option.field], value: row[self.option.primary_key]};
  10612. if (!self._isAlreadySelected(self, item))
  10613. self._addNewTag(self, item);
  10614. });
  10615. self._tagValuesSet(self);
  10616. self._inputResize(self);
  10617. } else {//单选模式初始化
  10618. var row = data[0];
  10619. $(self.elem.combo_input).val(row[self.option.field]);
  10620. self._setHiddenValue(row[self.option.primary_key]);
  10621. self.prop.prev_value = row[self.option.field];
  10622. if (self.option.select_only) {
  10623. $(self.elem.combo_input).attr('title', self.message.select_ok).removeClass(self.css_class.select_ng).addClass(self.css_class.select_ok);
  10624. }
  10625. }
  10626. },
  10627. /**
  10628. * @private
  10629. * @desc 下拉按钮的事件处理
  10630. */
  10631. _ehButton: function () {
  10632. var self = this;
  10633. $(self.elem.button).mouseup(function (ev) {
  10634. if ($(self.elem.result_area).is(':hidden') && !$(self.elem.combo_input).prop('disabled')) {
  10635. //self.prop.is_suggest = false;
  10636. //self._checkValue(self);
  10637. //self._suggest(self);
  10638. $(self.elem.combo_input).focus();
  10639. } else {
  10640. self._hideResults(self);
  10641. }
  10642. ev.stopPropagation();
  10643. }).mouseover(function () {
  10644. $(self.elem.button).addClass(self.css_class.btn_on).removeClass(self.css_class.btn_out);
  10645. }).mouseout(function () {
  10646. $(self.elem.button).addClass(self.css_class.btn_out).removeClass(self.css_class.btn_on);
  10647. }).mouseout(); // default: mouseout
  10648. },
  10649. /**
  10650. * @private
  10651. * @desc 输入框的事件绑定
  10652. */
  10653. _ehComboInput: function () {
  10654. var self = this;
  10655. $(self.elem.combo_input).keyup(function (ev) {
  10656. self._processKey(self, ev);
  10657. }).keydown(function (e) {
  10658. if (e.keyCode === 8 && self.option.multiple && $(self.elem.combo_input).val() == '') {
  10659. $(self.elem.combo_input).parent().prev().find(".tag_close").trigger("click");
  10660. }
  10661. }).focus(function (e) {
  10662. //增加输入框获得焦点后,显示数据列表
  10663. if ($(self.elem.result_area).is(':hidden')) {
  10664. e.stopPropagation();
  10665. self.elem.navi.addClass("hide");
  10666. self.prop.first_show = true;
  10667. self.prop.page_move = false;
  10668. //self._checkValue(self);
  10669. self.prop.is_suggest = false;
  10670. self._suggest(self);
  10671. //self.prop.first_show = false;
  10672. }
  10673. }).click(function () {
  10674. self._setCssFocusedInput(self);
  10675. //该句会去除当前高亮项目的显示,暂时屏蔽
  10676. //$(self.elem.results).children('li').removeClass(self.css_class.select);
  10677. }).blur(function () {
  10678. $(self.elem.hidden).trigger("blur");
  10679. });
  10680. if (self.option.multiple) {
  10681. $(self.elem.element_box).click(function (e) {
  10682. var srcEl = e.target || e.srcElement;
  10683. if ($(srcEl).is('ul'))
  10684. $(self.elem.combo_input).focus();
  10685. });
  10686. //标签关闭操作
  10687. //关闭同时需要将该标签的key从已保存的隐藏域中删除
  10688. $(self.elem.element_box).on('click', 'span.tag_close', function () {
  10689. var li = $(this).closest('li');
  10690. var key = $(li).attr('itemvalue');
  10691. var keys = $(self.elem.hidden).val();
  10692. //从已保存的key列表中删除该标签对应的项目
  10693. if ($.type(key) != 'undefined' && keys) {
  10694. var keyarr = $.isArray(keys) ? keys : (keys ? keys.split(',') : new Array());
  10695. var index = $.inArray(key.toString(), keyarr);
  10696. if (index != -1) {
  10697. keyarr.splice(index, 1);
  10698. self._setHiddenValue(keyarr.toString());
  10699. }
  10700. }
  10701. $(li).remove();
  10702. self._inputResize(self);
  10703. $("li[pkey='" + key + "']", self.elem.results).removeClass(self.css_class.selected);
  10704. });
  10705. self._inputResize(self);
  10706. }
  10707. },
  10708. /**
  10709. * 设置隐藏元素的值
  10710. * @param {type} value
  10711. * @returns {undefined}
  10712. */
  10713. _setHiddenValue: function (value) {
  10714. var self = this;
  10715. if ($(self.elem.hidden).is("select")) {
  10716. $(self.elem.hidden).empty();
  10717. value = $.isArray(value) ? value : ($(self.elem.hidden).prop("multiple") ? (value + "").split(",") : value);
  10718. $.each(value, function (i, j) {
  10719. $(self.elem.hidden).append($("<option />").prop("selected", true).val(j).text(j));
  10720. });
  10721. } else {
  10722. value = $.isArray(value) ? value.join(",") : value;
  10723. $(self.elem.hidden).val(value);
  10724. }
  10725. },
  10726. /**
  10727. * @private
  10728. * @desc 插件整体的事件处理
  10729. */
  10730. _ehWhole: function () {
  10731. var self = this;
  10732. //如果是点击了控件本身则不响应外部鼠标点击事件
  10733. $(self.elem.container).mousedown(function () {
  10734. var thisindex = $('div.sp_container').index(this);
  10735. var lastindex = $(document.body).data(constants.objStatusIndex);
  10736. if (lastindex != undefined && thisindex != lastindex) {
  10737. $(document.body).data(constants.objStatusKey, false);
  10738. } else {
  10739. $(document.body).data(constants.objStatusKey, true);
  10740. }
  10741. $(document.body).data(constants.objStatusIndex, thisindex);
  10742. });
  10743. //控件外部的鼠标点击事件处理
  10744. $(document).off('mousedown.selectPage').on('mousedown.selectPage', function (e) {
  10745. if ($(document.body).data(constants.objStatusKey))
  10746. $(document.body).data(constants.objStatusKey, false);
  10747. else {
  10748. //清除内容
  10749. var cleanContent = function (obj) {
  10750. $(obj.elem.combo_input).val('');
  10751. if (!obj.option.multiple)
  10752. $(obj.elem.hidden).val('');
  10753. };
  10754. $('div.sp_container').each(function () {
  10755. var d = $(this).data(constants.dataKey);
  10756. //列表是打开的状态
  10757. if ($(this).hasClass(d.css_class.container_open)) {
  10758. //若控件已有选中的的项目,而文本输入框中清空了关键字,则清空控件已选中的项目
  10759. if (!$(d.elem.combo_input).val() && $(d.elem.hidden).val() && !d.option.multiple) {
  10760. d.prop.page_all = 1;//重置当前页为1
  10761. cleanContent(d);
  10762. d._hideResults(d);
  10763. return true;
  10764. }
  10765. //匹配项且高亮时,下拉分页控件失去焦点后,自动选择该项目
  10766. if ($('li', $(d.elem.results)).size() > 0) {
  10767. if (d.option.auto_fill_result) {//打开自动内容填充功能
  10768. //若已有选中项目,则直接隐藏列表
  10769. if ($('li.sp_selected', $(d.elem.results)).size() > 0) {
  10770. d._hideResults(d);
  10771. } else if ($('li.sp_over', $(d.elem.results)).size() > 0) {
  10772. //若控件已有选中的值,则忽略高亮的项目
  10773. if ($(d.elem.hidden).val())
  10774. d._hideResults(d);
  10775. //若没有已选中的项目,且列表中有高亮项目时,选中当前高亮的行
  10776. else
  10777. d._selectCurrentLine(d, true);
  10778. } else if (d.option.auto_select_first) {
  10779. //若控件已有选中的值,则忽略自动选择第一项的功能
  10780. if ($(d.elem.hidden).val())
  10781. d._hideResults(d);
  10782. else {
  10783. //对于没有选中,没有高亮的情况,若插件设置了自动选中第一项时,则选中第一项
  10784. d._nextLine(d);
  10785. //self._nextLine(self);
  10786. d._selectCurrentLine(d, true);
  10787. }
  10788. } else {
  10789. d._hideResults(d);
  10790. }
  10791. } else
  10792. d._hideResults(d);
  10793. } else {
  10794. //无匹配项目时,自动清空用户输入的关键词
  10795. if (d.option.no_result_clean)
  10796. cleanContent(d);
  10797. else {
  10798. if (!d.option.multiple)
  10799. $(d.elem.hidden).val('');
  10800. }
  10801. d._hideResults(d);
  10802. }
  10803. }
  10804. });
  10805. }
  10806. });
  10807. },
  10808. /**
  10809. * @private
  10810. * @desc 结果列表的事件处理
  10811. */
  10812. _ehResults: function () {
  10813. var self = this;
  10814. $(self.elem.results).children('li').mouseover(function () {
  10815. if (self.prop.key_select) {
  10816. self.prop.key_select = false;
  10817. return;
  10818. }
  10819. $(self.elem.results).children('li').removeClass(self.css_class.select);
  10820. $(this).addClass(self.css_class.select);
  10821. self._setCssFocusedResults(self);
  10822. }).click(function (e) {
  10823. if (self.prop.key_select) {
  10824. self.prop.key_select = false;
  10825. return;
  10826. }
  10827. e.preventDefault();
  10828. e.stopPropagation();
  10829. self._selectCurrentLine(self, false);
  10830. });
  10831. },
  10832. /**
  10833. * @private
  10834. * @desc 分页导航按钮的事件处理
  10835. * @param {Object} self - 插件内部对象
  10836. */
  10837. _ehNaviPaging: function (self) {
  10838. $('li.csFirstPage', $(self.elem.navi)).off('click').on('click', function (ev) {
  10839. $(self.elem.combo_input).focus();
  10840. ev.preventDefault();
  10841. self._firstPage(self);
  10842. });
  10843. $('li.csPreviousPage', $(self.elem.navi)).off('click').on('click', function (ev) {
  10844. $(self.elem.combo_input).focus();
  10845. ev.preventDefault();
  10846. self._prevPage(self);
  10847. });
  10848. // the number of page
  10849. /*
  10850. $(self.elem.navi).find('.navi_page').mouseup(function(ev) {
  10851. $(self.elem.combo_input).focus();
  10852. ev.preventDefault();
  10853. if (!self.prop.is_suggest) self.prop.page_all = parseInt($(this).text(), 10);
  10854. else self.prop.page_suggest = parseInt($(this).text(), 10);
  10855. self.prop.is_paging = true;
  10856. self._suggest(self);
  10857. });
  10858. */
  10859. $('li.csNextPage', $(self.elem.navi)).off('click').on('click', function (ev) {
  10860. $(self.elem.combo_input).focus();
  10861. ev.preventDefault();
  10862. self._nextPage(self);
  10863. });
  10864. $('li.csLastPage', $(self.elem.navi)).off('click').on('click', function (ev) {
  10865. $(self.elem.combo_input).focus();
  10866. ev.preventDefault();
  10867. self._lastPage(self);
  10868. });
  10869. },
  10870. /**
  10871. * @private
  10872. * @desc Ajax请求失败的处理
  10873. * @param {Object} self - 插件内部对象
  10874. * @errorThrom {string} errorThrown - Ajax的错误输出内容
  10875. */
  10876. _ajaxErrorNotify: function (self, errorThrown) {
  10877. console.log(self.message.ajax_error);
  10878. },
  10879. /**
  10880. * @private
  10881. * @desc 窗口滚动处理
  10882. * @param {Object} self - 插件内部对象
  10883. * @param {boolean} enforce - 是否定位到输入框的位置
  10884. */
  10885. _scrollWindow: function (self, enforce) {
  10886. var current_result = self._getCurrentLine(self);
  10887. var target_top = (current_result && !enforce) ? current_result.offset().top : $(self.elem.container).offset().top;
  10888. var target_size;
  10889. self.prop.size_li = $(self.elem.results).children('li:first').outerHeight();
  10890. target_size = self.prop.size_li;
  10891. var client_height = $(window).height();
  10892. var scroll_top = $(window).scrollTop();
  10893. var scroll_bottom = scroll_top + client_height - target_size;
  10894. // 滚动处理
  10895. var gap;
  10896. if ($(current_result).length) {
  10897. if (target_top < scroll_top || target_size > client_height) {
  10898. //滚动到顶部
  10899. gap = target_top - scroll_top;
  10900. } else if (target_top > scroll_bottom) {
  10901. //向下滚动
  10902. gap = target_top - scroll_bottom;
  10903. } else {
  10904. //不进行滚动
  10905. return;
  10906. }
  10907. } else if (target_top < scroll_top)
  10908. gap = target_top - scroll_top;
  10909. window.scrollBy(0, gap);
  10910. },
  10911. /**
  10912. * @private
  10913. * @desc 输入框获得焦点的样式设置
  10914. * @param {Object} self - 插件内部对象
  10915. */
  10916. _setCssFocusedInput: function (self) {
  10917. $(self.elem.results).addClass(self.css_class.re_off);
  10918. $(self.elem.combo_input).removeClass(self.css_class.input_off);
  10919. },
  10920. /**
  10921. * @private
  10922. * @desc 设置结果列表高亮,输入框失去焦点
  10923. * @param {Object} self - 插件内部对象
  10924. */
  10925. _setCssFocusedResults: function (self) {
  10926. $(self.elem.results).removeClass(self.css_class.re_off);
  10927. $(self.elem.combo_input).addClass(self.css_class.input_off);
  10928. },
  10929. /**
  10930. * @private
  10931. * @desc 输入框输入值的变化监控
  10932. * @param {Object} self - 插件内部对象
  10933. */
  10934. _checkValue: function (self) {
  10935. var now_value = $(self.elem.combo_input).val();
  10936. if (now_value != self.prop.prev_value) {
  10937. self.prop.prev_value = now_value;
  10938. self.prop.first_show = false;
  10939. //原来的设计是在值变化时,都会清空隐藏域的内容,目前去除该功能
  10940. //if (self.option.plugin_type != 'textarea') $(self.elem.hidden).val('');
  10941. if (self.option.select_only)
  10942. self._setButtonAttrDefault();
  10943. //重置页数
  10944. self.prop.page_suggest = 1;
  10945. self.prop.is_suggest = true;
  10946. self._suggest(self);
  10947. }
  10948. },
  10949. /**
  10950. * @private
  10951. * @desc 文本输入框键盘事件处理
  10952. * @param {Object} self - 插件内部对象
  10953. * @param {Object} e - 事件event对象
  10954. */
  10955. _processKey: function (self, e) {
  10956. if (($.inArray(e.keyCode, [27, 38, 40, 9]) > -1 && $(self.elem.result_area).is(':visible')) || ($.inArray(e.keyCode, [37, 39, 13, 9]) > -1 && self._getCurrentLine(self)) || (e.keyCode == 40)) {
  10957. e.preventDefault();
  10958. e.stopPropagation();
  10959. e.cancelBubble = true;
  10960. e.returnValue = false;
  10961. switch (e.keyCode) {
  10962. case 37:
  10963. // left
  10964. if (e.shiftKey)
  10965. self._firstPage(self);
  10966. else
  10967. self._prevPage(self);
  10968. break;
  10969. case 38:
  10970. // up
  10971. self.prop.key_select = true;
  10972. self._prevLine(self);
  10973. break;
  10974. case 39:
  10975. // right
  10976. if (e.shiftKey)
  10977. self._lastPage(self);
  10978. else
  10979. self._nextPage(self);
  10980. break;
  10981. case 40:
  10982. // down
  10983. if ($(self.elem.results).children('li').length) {
  10984. self.prop.key_select = true;
  10985. self._nextLine(self);
  10986. } else {
  10987. self.prop.is_suggest = false;
  10988. self._suggest(self);
  10989. }
  10990. break;
  10991. case 9:
  10992. // tab
  10993. self.prop.key_paging = true;
  10994. self._selectCurrentLine(self, true);
  10995. //self._hideResults(self);
  10996. break;
  10997. case 13:
  10998. // return
  10999. self._selectCurrentLine(self, true);
  11000. break;
  11001. case 27:
  11002. // escape
  11003. self.prop.key_paging = true;
  11004. self._hideResults(self);
  11005. break;
  11006. }
  11007. } else {
  11008. if (e.keyCode != 16)
  11009. self._setCssFocusedInput(self); // except Shift(16)
  11010. self._inputResize(self);
  11011. self._checkValue(self);
  11012. }
  11013. },
  11014. /**
  11015. * @private
  11016. * @desc 中断Ajax请求
  11017. * @param {Object} self - 插件内部对象
  11018. */
  11019. _abortAjax: function (self) {
  11020. if (self.prop.xhr) {
  11021. self.prop.xhr.abort();
  11022. self.prop.xhr = false;
  11023. }
  11024. },
  11025. /**
  11026. * @private
  11027. * @desc 数据查询
  11028. * @param {Object} self - 插件内部对象
  11029. */
  11030. _suggest: function (self) {
  11031. //搜索关键字
  11032. var q_word;
  11033. //q_word = (self.prop.is_suggest) ? $.trim($(self.elem.combo_input).val()) : '';
  11034. //q_word = $.trim($(self.elem.combo_input).val());
  11035. q_word = (self.prop.first_show) ? '' : $.trim($(self.elem.combo_input).val());
  11036. /*
  11037. //取消在输入状态时,判断到输入框里内容为空时,隐藏下拉列表的操作
  11038. if (q_word.length < 1 && self.prop.is_suggest) {
  11039. self._hideResults(self);
  11040. return;
  11041. }
  11042. */
  11043. q_word = q_word.split(/[\s ]+/);
  11044. self._abortAjax(self);
  11045. self._setLoading(self);
  11046. if (self.prop.is_paging) {
  11047. var obj = self._getCurrentLine(self);
  11048. self.prop.is_paging = (obj) ? $(self.elem.results).children('li').index(obj) : -1;
  11049. } else if (!self.prop.is_suggest) {
  11050. self.prop.is_paging = 0;
  11051. }
  11052. //var which_page_num = (self.prop.is_suggest) ? self.prop.page_suggest: self.prop.page_all;
  11053. //var which_page_num = (q_word == '' && !self.prop.page_move) ? 1 : self.prop.page_all;
  11054. //var which_page_num = (self.prop.first_show) ? 1 : self.prop.page_all;
  11055. var which_page_num = self.prop.page_all;
  11056. // 数据查询
  11057. if (typeof self.option.source == 'object')
  11058. self._searchForJson(self, q_word, which_page_num);
  11059. else
  11060. self._searchForDb(self, q_word, which_page_num);
  11061. },
  11062. /**
  11063. * @private
  11064. * @desc 读取中状态显示
  11065. * @param {Object} self - 插件内部对象
  11066. */
  11067. _setLoading: function (self) {
  11068. $(self.elem.navi_info).text(self.message.loading);
  11069. if ($(self.elem.results).html() === '') {
  11070. $(self.elem.navi).children('p').empty();
  11071. self._calcWidthResults(self);
  11072. $(self.elem.container).addClass(self.css_class.container_open);
  11073. }
  11074. },
  11075. /**
  11076. * @private
  11077. * @desc 服务端数据查询
  11078. * @param {Object} self - 插件内部对象
  11079. * @param {Array} q_word - 查询关键字
  11080. * @param {number} which_page_num - 目标页
  11081. */
  11082. _searchForDb: function (self, q_word, which_page_num) {
  11083. /**
  11084. * 增加自定义查询参数
  11085. */
  11086. var _paramsFunc = self.option.params;
  11087. var _params = {};
  11088. //原始参数
  11089. var searchKey = self.option.search_field;
  11090. var _orgParams = {
  11091. q_word: q_word,
  11092. page: which_page_num,
  11093. per_page: self.option.per_page,
  11094. and_or: self.option.and_or,
  11095. order_by: self.option.order_by,
  11096. field: self.option.field,
  11097. pkey_name: self.option.primary_key,
  11098. search_field: searchKey
  11099. };
  11100. _orgParams[searchKey] = q_word[0];
  11101. if (_paramsFunc) {
  11102. var result = $.isFunction(_paramsFunc) ? _paramsFunc() : _paramsFunc;
  11103. if (result && $.isPlainObject(result)) {
  11104. _params = $.extend({}, _orgParams, result);
  11105. } else {
  11106. _params = _orgParams;
  11107. }
  11108. } else {
  11109. _params = _orgParams;
  11110. }
  11111. //增加自定义查询参数End
  11112. self.prop.xhr = $.ajax({
  11113. dataType: 'json',
  11114. url: self.option.source,
  11115. data: _params,
  11116. success: function (returnData) {
  11117. if (typeof returnData.list === 'undefined' || !$.isArray(returnData.list)) {
  11118. if (typeof returnData.rows === 'undefined' || !$.isArray(returnData.rows)) {
  11119. self.prop.xhr = null;
  11120. self._notFoundSearch(self);
  11121. return;
  11122. } else {
  11123. returnData.list = returnData.rows;
  11124. }
  11125. }
  11126. if (typeof returnData.total === 'undefined') {
  11127. returnData.total = returnData.list.length;
  11128. }
  11129. //数据结构处理
  11130. var json = {};
  11131. json.originalResult = returnData.list;
  11132. json.cnt_whole = returnData.total;
  11133. json.candidate = [];
  11134. json.primary_key = [];
  11135. json.cnt_page = json.originalResult.length;
  11136. for (var i = 0; i < json.cnt_page; i++) {
  11137. for (var key in json.originalResult[i]) {
  11138. if (key == self.option.primary_key) {
  11139. json.primary_key.push(json.originalResult[i][key]);
  11140. }
  11141. if (key == self.option.field) {
  11142. json.candidate.push(json.originalResult[i][key]);
  11143. }
  11144. }
  11145. }
  11146. self._prepareResults(self, json, q_word, which_page_num);
  11147. },
  11148. error: function (jqXHR, textStatus, errorThrown) {
  11149. if (textStatus != 'abort') {
  11150. self._hideResults(self);
  11151. self._ajaxErrorNotify(self, errorThrown);
  11152. }
  11153. },
  11154. complete: function () {
  11155. self.prop.xhr = null;
  11156. }
  11157. });
  11158. },
  11159. /**
  11160. * @private
  11161. * @desc 对JSON源数据进行搜索
  11162. * @param {Object} self - 插件内部对象
  11163. * @param {Array} q_word - 搜索关键字
  11164. * @param {number} which_page_num - 目标页数
  11165. */
  11166. _searchForJson: function (self, q_word, which_page_num) {
  11167. var matched = [];
  11168. var esc_q = [];
  11169. var sorted = [];
  11170. var json = {};
  11171. var i = 0;
  11172. var arr_reg = [];
  11173. //查询条件过滤
  11174. do {
  11175. //'/\W/g'正则代表全部不是字母,数字,下划线,汉字的字符
  11176. //将非法字符进行转义
  11177. esc_q[i] = q_word[i].replace(/\W/g, '\\$&').toString();
  11178. arr_reg[i] = new RegExp(esc_q[i], 'gi');
  11179. i++;
  11180. } while (i < q_word.length);
  11181. // SELECT * FROM source WHERE field LIKE q_word;
  11182. for (i = 0; i < self.option.source.length; i++) {
  11183. var flag = false;
  11184. var row = self.option.source[i];
  11185. for (var j = 0; j < arr_reg.length; j++) {
  11186. var itemText = row[self.option.field];//默认获取showField字段的文本
  11187. if (self.option.format_item && $.isFunction(self.option.format_item))
  11188. itemText = self.option.format_item(row);
  11189. if (itemText.match(arr_reg[j])) {
  11190. flag = true;
  11191. if (self.option.and_or == 'OR')
  11192. break;
  11193. } else {
  11194. flag = false;
  11195. if (self.option.and_or == 'AND')
  11196. break;
  11197. }
  11198. }
  11199. if (flag)
  11200. matched.push(row);
  11201. }
  11202. //若没有匹配项目,则结束搜索
  11203. if (matched.length === undefined) {
  11204. self._notFoundSearch(self);
  11205. return;
  11206. }
  11207. json.cnt_whole = matched.length;
  11208. // (CASE WHEN ...) 然后 く order 指定列
  11209. var reg1 = new RegExp('^' + esc_q[0] + '$', 'gi');
  11210. var reg2 = new RegExp('^' + esc_q[0], 'gi');
  11211. var matched1 = [];
  11212. var matched2 = [];
  11213. var matched3 = [];
  11214. for (i = 0; i < matched.length; i++) {
  11215. if (matched[i][self.option.order_by[0][0]].match(reg1)) {
  11216. matched1.push(matched[i]);
  11217. } else if (matched[i][self.option.order_by[0][0]].match(reg2)) {
  11218. matched2.push(matched[i]);
  11219. } else {
  11220. matched3.push(matched[i]);
  11221. }
  11222. }
  11223. if (self.option.order_by[0][1].match(/^asc$/i)) {
  11224. matched1 = self._sortAsc(self, matched1);
  11225. matched2 = self._sortAsc(self, matched2);
  11226. matched3 = self._sortAsc(self, matched3);
  11227. } else {
  11228. matched1 = self._sortDesc(self, matched1);
  11229. matched2 = self._sortDesc(self, matched2);
  11230. matched3 = self._sortDesc(self, matched3);
  11231. }
  11232. sorted = sorted.concat(matched1).concat(matched2).concat(matched3);
  11233. //page_move参数用于区别数据加载是在初始化列表还是在进行分页的翻页操作
  11234. if (!self.prop.page_move) {
  11235. //仅单选模式进行选中项目定位页功能
  11236. if (!self.option.multiple) {
  11237. //若控件当前已有选中值,则获得该项目所在的页数,并跳转到该页进行显示
  11238. var currentValue = $(self.elem.hidden).val();
  11239. if (typeof (currentValue) != 'undefined' && $.trim(currentValue) != '') {
  11240. var index = 0;
  11241. $.each(sorted, function (i, row) {
  11242. if (row[self.option.primary_key] == currentValue) {
  11243. index = i + 1;
  11244. return false;
  11245. }
  11246. });
  11247. which_page_num = Math.ceil(index / self.option.per_page);
  11248. if (which_page_num < 1)
  11249. which_page_num = 1;
  11250. self.prop.page_all = which_page_num;
  11251. }
  11252. }
  11253. } else {
  11254. //过滤后的数据个数不足一页显示的个数时,强制设置页码
  11255. if (sorted.length <= ((which_page_num - 1) * self.option.per_page)) {
  11256. which_page_num = 1;
  11257. self.prop.page_all = 1;
  11258. }
  11259. }
  11260. // LIMIT xx OFFSET xx
  11261. var start = (which_page_num - 1) * self.option.per_page;
  11262. var end = start + self.option.per_page;
  11263. //储存原始行数据,包括所有属性
  11264. json.originalResult = [];
  11265. // 查询后的数据处理
  11266. for (i = start; i < end; i++) {
  11267. if (sorted[i] === undefined)
  11268. break;
  11269. json.originalResult.push(sorted[i]);
  11270. for (var key in sorted[i]) {
  11271. if (key == self.option.primary_key) {
  11272. if (json.primary_key === undefined)
  11273. json.primary_key = [];
  11274. json.primary_key.push(sorted[i][key]);
  11275. }
  11276. if (key == self.option.field) {
  11277. if (json.candidate === undefined)
  11278. json.candidate = [];
  11279. json.candidate.push(sorted[i][key]);
  11280. }
  11281. }
  11282. }
  11283. if (json.candidate === undefined)
  11284. json.candidate = [];
  11285. json.cnt_page = json.candidate.length;
  11286. self._prepareResults(self, json, q_word, which_page_num);
  11287. },
  11288. /**
  11289. * @private
  11290. * @desc 升充排序
  11291. * @param {Object} self - 插件内部对象
  11292. * @param {Array} arr - 结果集数组
  11293. */
  11294. _sortAsc: function (self, arr) {
  11295. arr.sort(function (a, b) {
  11296. return a[self.option.order_by[0][0]].localeCompare(b[self.option.order_by[0][0]]);
  11297. });
  11298. return arr;
  11299. },
  11300. /**
  11301. * @private
  11302. * @desc 降充排序
  11303. * @param {Object} self - 插件内部对象
  11304. * @param {Array} arr - 结果集数组
  11305. */
  11306. _sortDesc: function (self, arr) {
  11307. arr.sort(function (a, b) {
  11308. return b[self.option.order_by[0][0]].localeCompare(a[self.option.order_by[0][0]]);
  11309. });
  11310. return arr;
  11311. },
  11312. /**
  11313. * @private
  11314. * @desc 查询无结果的处理
  11315. * @param {Object} self - 插件内部对象
  11316. */
  11317. _notFoundSearch: function (self) {
  11318. $(self.elem.navi_info).text(self.message.not_found);
  11319. $(self.elem.navi_p).hide();
  11320. $(self.elem.results).empty();
  11321. self._calcWidthResults(self);
  11322. $(self.elem.container).addClass(self.css_class.container_open);
  11323. self._setCssFocusedInput(self);
  11324. },
  11325. /**
  11326. * @private
  11327. * @desc 查询结果处理
  11328. * @param {Object} self - 插件内部对象
  11329. * @param {Object} json - 数据结果
  11330. * @param {Array} q_word - 查询关键字
  11331. * @param {number} which_page_num - 目标页
  11332. */
  11333. _prepareResults: function (self, json, q_word, which_page_num) {
  11334. //处理分页栏
  11335. self._setNavi(self, json.cnt_whole, json.cnt_page, which_page_num);
  11336. if (!json.primary_key)
  11337. json.primary_key = false;
  11338. //仅选择模式
  11339. if (self.option.select_only && json.candidate.length === 1 && json.candidate[0] == q_word[0]) {
  11340. self._setHiddenValue(json.primary_key[0]);
  11341. this._setButtonAttrDefault();
  11342. }
  11343. //是否是输入关键词进行查找
  11344. var is_query = false;
  11345. if (q_word && q_word.length > 0 && q_word[0])
  11346. is_query = true;
  11347. //显示结果列表
  11348. self._displayResults(self, json, is_query);
  11349. if (self.prop.is_paging === false)
  11350. self._setCssFocusedInput(self);
  11351. else {
  11352. //修复单选模式下如果有选择项,则高亮选中项,而不是高亮第一项
  11353. if (!self.option.multiple) {
  11354. var liSelected = $('li.sp_selected', $(self.elem.results));
  11355. if ($(liSelected).size() == 0) {
  11356. var idx = self.prop.is_paging;
  11357. var limit = $(self.elem.results).children('li').length - 1;
  11358. if (idx > limit)
  11359. idx = limit;
  11360. var obj = $(self.elem.results).children('li').eq(idx);
  11361. $(obj).addClass(self.css_class.select);
  11362. } else
  11363. $(liSelected).addClass(self.css_class.select);
  11364. }
  11365. self.prop.is_paging = false; //重置参数,为下次做准备
  11366. self._setCssFocusedResults(self);
  11367. }
  11368. },
  11369. /**
  11370. * @private
  11371. * @desc 生成分页栏
  11372. * @param {Object} self - 插件内部对象
  11373. * @param {number} cnt_whole - 数据总条数
  11374. * @param {number} cnt_page - 页面显示记录数
  11375. * @param {number} page_num - 当前页数
  11376. */
  11377. _setNavi: function (self, cnt_whole, cnt_page, page_num) {
  11378. /**
  11379. * 生成分页条
  11380. */
  11381. var buildPageNav = function (self, pagebar, page_num, last_page) {
  11382. if ($('li', $(pagebar)).size() == 0) {
  11383. $(pagebar).empty();
  11384. //处理当当前页码为1时,首页和上一页按钮不允许点击
  11385. var btnclass = '', isNewFontAwesome = true;
  11386. //判断是否使用了font-awesome3.2.1
  11387. $.each(document.styleSheets, function (i, n) {
  11388. if (n && n.href && n.href.indexOf('font-awesome-3.2.1') != -1) {
  11389. isNewFontAwesome = false;
  11390. return false;
  11391. }
  11392. });
  11393. //为不同版本图标设置样式
  11394. var iconFist = 'fa fa-step-backward', iconPrev = 'fa fa-backward', iconNext = 'fa fa-forward', iconLast = 'fa fa-step-forward';
  11395. if (!isNewFontAwesome) {
  11396. iconFist = 'icon-step-backward';
  11397. iconPrev = 'icon-backward';
  11398. iconNext = 'icon-forward';
  11399. iconLast = 'icon-step-forward';
  11400. }
  11401. if (page_num == 1)
  11402. btnclass = ' disabled ';
  11403. //首页
  11404. $(pagebar).append('<li class="csFirstPage' + btnclass + '" title="' + self.message.first_title + '" ><a href="javascript:void(0);"> <i class="' + iconFist + '"></i> </a></li>');
  11405. //上一页
  11406. $(pagebar).append('<li class="csPreviousPage' + btnclass + '" title="' + self.message.prev_title + '" ><a href="javascript:void(0);"><i class="' + iconPrev + '"></i></a></li>');
  11407. var pageInfo = '第 ' + page_num + ' 页(共' + last_page + '页)';
  11408. //设置分页信息
  11409. $(pagebar).append('<li class="disabled pageInfoBox"><a href="javascript:void(0);"> ' + pageInfo + ' </a></li>');
  11410. if (page_num == last_page)
  11411. btnclass = ' disabled ';
  11412. else
  11413. btnclass = '';
  11414. //首页
  11415. $(pagebar).append('<li class="csNextPage' + btnclass + '" title="' + self.message.next_title + '" ><a href="javascript:void(0);"><i class="' + iconNext + '"></i></a></li>');
  11416. //上一页
  11417. $(pagebar).append('<li class="csLastPage' + btnclass + '" title="' + self.message.last_title + '" ><a href="javascript:void(0);"> <i class="' + iconLast + '"></i> </a></li>');
  11418. }
  11419. };
  11420. var pagebar = $(self.elem.navi);
  11421. pagebar.toggleClass("hide", cnt_whole < self.option.per_page)
  11422. var last_page = Math.ceil(cnt_whole / self.option.per_page); //计算总页数
  11423. if (last_page == 0)
  11424. page_num = 0;
  11425. else {
  11426. if (page_num == 0)
  11427. page_num = 1;
  11428. }
  11429. buildPageNav(self, pagebar, page_num, last_page);
  11430. //刷新分页信息
  11431. var pageInfoBox = $('li.pageInfoBox', $(pagebar));
  11432. var pageInfo = '第 ' + page_num + ' 页(共' + last_page + '页)';
  11433. $(pageInfoBox).html('<a href="javascript:void(0);"> ' + pageInfo + ' </a>');
  11434. //更新分页样式
  11435. var dClass = 'disabled';
  11436. var first = $('li.csFirstPage', $(pagebar));
  11437. var previous = $('li.csPreviousPage', $(pagebar));
  11438. var next = $('li.csNextPage', $(pagebar));
  11439. var last = $('li.csLastPage', $(pagebar));
  11440. //处理首页,上一页按钮样式
  11441. if (page_num == 1 || page_num == 0) {
  11442. if (!$(first).hasClass(dClass))
  11443. $(first).addClass(dClass);
  11444. if (!$(previous).hasClass(dClass))
  11445. $(previous).addClass(dClass);
  11446. } else {
  11447. if ($(first).hasClass(dClass))
  11448. $(first).removeClass(dClass);
  11449. if ($(previous).hasClass(dClass))
  11450. $(previous).removeClass(dClass);
  11451. }
  11452. //处理下一页,最后一页按钮的样式
  11453. if (page_num == last_page || last_page == 0) {
  11454. if (!$(next).hasClass(dClass))
  11455. $(next).addClass(dClass);
  11456. if (!$(last).hasClass(dClass))
  11457. $(last).addClass(dClass);
  11458. } else {
  11459. if ($(next).hasClass(dClass))
  11460. $(next).removeClass(dClass);
  11461. if ($(last).hasClass(dClass))
  11462. $(last).removeClass(dClass);
  11463. }
  11464. if (last_page > 1) {
  11465. if (self.prop.is_suggest)
  11466. self.prop.max_suggest = last_page;
  11467. else
  11468. self.prop.max_all = last_page;
  11469. self._ehNaviPaging(self); // 导航按钮的事件设置
  11470. } else {
  11471. //$(self.elem.navi).hide();
  11472. }
  11473. },
  11474. /**
  11475. * @private
  11476. * @desc 显示结果集列表
  11477. * @param {Object} self - 插件内部对象
  11478. * @param {Object} json 源数据
  11479. * @param {boolean} is_query - 是否是通过关键字搜索(用于区分是鼠标点击下拉还是输入框输入关键字进行查找)
  11480. */
  11481. _displayResults: function (self, json, is_query) {
  11482. $(self.elem.results).empty();
  11483. var arr_candidate = json.candidate;
  11484. var arr_primary_key = json.primary_key;
  11485. var keystr = $(self.elem.hidden).val();
  11486. var keyArr = $.isArray(keystr) ? keystr : (keystr ? keyArr = keystr.split(',') : new Array());
  11487. for (var i = 0; i < arr_candidate.length; i++) {
  11488. var itemText = '';
  11489. if (self.option.format_item && $.isFunction(self.option.format_item)) {
  11490. try {
  11491. itemText = self.option.format_item(json.originalResult[i]);
  11492. } catch (e) {
  11493. console.error('formatItem内容格式化函数内容设置不正确!');
  11494. itemText = arr_candidate[i];
  11495. }
  11496. } else
  11497. itemText = arr_candidate[i];
  11498. //XSS対策
  11499. var list = $('<li>').html(itemText).attr({
  11500. pkey: arr_primary_key[i],
  11501. pvalue: arr_candidate[i],
  11502. title: itemText
  11503. });
  11504. if (typeof arr_primary_key[i] !== 'undefined' && $.inArray(arr_primary_key[i].toString(), keyArr) != -1) {
  11505. $(list).addClass(self.css_class.selected);
  11506. }
  11507. //缓存原始行对象
  11508. $(list).data('dataObj', json.originalResult[i]);
  11509. $(self.elem.results).append(list);
  11510. }
  11511. //显示结果集列表并调整位置
  11512. self._calcWidthResults(self);
  11513. $(self.elem.container).addClass(self.css_class.container_open);
  11514. //结果集列表事件绑定
  11515. self._ehResults();
  11516. //若是键盘输入关键字进行查询且有内容时,列表自动选中第一行(auto_select_first为true时)
  11517. if (is_query && arr_candidate.length > 0 && self.option.auto_select_first)
  11518. self._nextLine(self);
  11519. //按钮的title属性修改
  11520. $(self.elem.button).attr('title', self.message.close_btn);
  11521. },
  11522. /**
  11523. * @private
  11524. * @desc 处理结果列表尺寸及位置
  11525. * @param {Object} self - 插件内部对象
  11526. */
  11527. _calcWidthResults: function (self) {
  11528. //若列表已展现,则不再处理
  11529. //###代码已禁用###若启用,在翻页时,会不计算位置,导致数据量不一致时列表不会自动定位
  11530. //if($(self.elem.result_area).is(":visible")) return;
  11531. //设置下拉列表与输入框同宽
  11532. //###代码已禁用###因为分页栏是固定宽度的原因,列表与输入框宽度同步功能不能再使用
  11533. /*
  11534. $(self.elem.result_area)
  11535. .width(
  11536. $(self.elem.container).width() -
  11537. ($(self.elem.result_area).outerWidth() - $(self.elem.result_area).innerWidth())
  11538. )
  11539. .show();
  11540. */
  11541. $(self.elem.result_area).show(1, function () {
  11542. /*
  11543. //设置外框宽度,只需要初始化时设置即可,不需要在每次展开列表时进行设置,这里暂时屏蔽该功能
  11544. //单选模式下,设置外框与输入框尺寸一致
  11545. if(!self.option.multiple){
  11546. $(self.elem.container).width($(self.elem.combo_input).outerWidth());
  11547. }
  11548. */
  11549. if ($(self.elem.container).css('position') == 'static') {
  11550. // position: static
  11551. var offset = $(self.elem.combo_input).offset();
  11552. $(self.elem.result_area).css({
  11553. top: offset.top + $(self.elem.combo_input).outerHeight() + 'px',
  11554. left: offset.left + 'px'
  11555. });
  11556. } else {
  11557. //在展示下拉列表时,判断默认与输入框左对齐的列表是否会超出屏幕边界,是则右对齐,否则默认左对齐
  11558. var browserWidth = document.body.clientWidth;
  11559. var browserHeight = document.body.clientHeight;
  11560. var offset = $(self.elem.container).offset();
  11561. var listWidth = $(self.elem.result_area).outerWidth();
  11562. //当前状态,列表并未被显示,数据未被填充,列表并未展现最终高度,所以只能使用默认一页显示10条数据的固定高度进行计算
  11563. var listHeight = $(self.elem.result_area).outerHeight();
  11564. //默认方向的坐标,在多选模式下,因为外框架是DIV,所以需要向左靠一个像素
  11565. var defaultLeft = self.option.multiple ? -1 : 0;
  11566. var left = (offset.left + listWidth) > browserWidth ? -(listWidth - $(self.elem.container).outerWidth()) : defaultLeft;
  11567. //控件在当前可视区域中的高度
  11568. var screenTop = offset.top - $(window).scrollTop();
  11569. var top = 0;
  11570. if ((screenTop + $(self.elem.container).outerHeight() + listHeight) > browserHeight) {
  11571. top = -(listHeight + 1);
  11572. $(self.elem.result_area).removeClass('shadowUp shadowDown').addClass('shadowUp');
  11573. } else {
  11574. top = self.option.multiple ? $(self.elem.container).innerHeight() + 1 : $(self.elem.container).outerHeight();
  11575. $(self.elem.result_area).removeClass('shadowUp shadowDown').addClass('shadowDown');
  11576. }
  11577. // position: relative, absolute, fixed
  11578. $(self.elem.result_area).css({
  11579. top: top + 'px',
  11580. left: left + 'px'
  11581. });
  11582. }
  11583. });
  11584. },
  11585. /**
  11586. * @private
  11587. * @desc 隐藏结果列表
  11588. * @param {Object} self - 插件内部对象
  11589. */
  11590. _hideResults: function (self) {
  11591. if (self.prop.key_paging) {
  11592. self._scrollWindow(self, true);
  11593. self.prop.key_paging = false;
  11594. }
  11595. self._setCssFocusedInput(self);
  11596. if (self.option.auto_fill_result) {
  11597. //self._selectCurrentLine(self, true);
  11598. }
  11599. $(self.elem.results).empty();
  11600. $(self.elem.result_area).hide();
  11601. $(self.elem.container).removeClass(self.css_class.container_open);
  11602. self._abortAjax(self);
  11603. self._setButtonAttrDefault(); // 按钮title属性初期化
  11604. },
  11605. /**
  11606. * @private
  11607. * @desc 跳转到首页
  11608. * @param {Object} self - 插件内部对象
  11609. */
  11610. _firstPage: function (self) {
  11611. if (self.prop.page_all > 1) {
  11612. self.prop.page_all = 1;
  11613. self.prop.is_paging = true;
  11614. self.prop.page_move = true;
  11615. self._suggest(self);
  11616. }
  11617. /*
  11618. if (!self.prop.is_suggest) {
  11619. if (self.prop.page_all > 1) {
  11620. self.prop.page_all = 1;
  11621. self.prop.is_paging = true;
  11622. self.prop.page_move = true;
  11623. self._suggest(self);
  11624. }
  11625. } else {
  11626. if (self.prop.page_suggest > 1) {
  11627. self.prop.page_suggest = 1;
  11628. self.prop.is_paging = true;
  11629. self._suggest(self);
  11630. }
  11631. }
  11632. */
  11633. },
  11634. /**
  11635. * @private
  11636. * @desc 跳转到上一页
  11637. * @param {Object} self - 插件内部对象
  11638. */
  11639. _prevPage: function (self) {
  11640. if (self.prop.page_all > 1) {
  11641. self.prop.page_all--;
  11642. self.prop.is_paging = true;
  11643. self.prop.page_move = true;
  11644. self._suggest(self);
  11645. }
  11646. /*
  11647. if (!self.prop.is_suggest) {
  11648. if (self.prop.page_all > 1) {
  11649. self.prop.page_all--;
  11650. self.prop.is_paging = true;
  11651. self.prop.page_move = true;
  11652. self._suggest(self);
  11653. }
  11654. } else {
  11655. if (self.prop.page_suggest > 1) {
  11656. self.prop.page_suggest--;
  11657. self.prop.is_paging = true;
  11658. self._suggest(self);
  11659. }
  11660. }
  11661. */
  11662. },
  11663. /**
  11664. * @private
  11665. * @desc 跳转到下一页
  11666. * @param {Object} self - 插件内部对象
  11667. */
  11668. _nextPage: function (self) {
  11669. if (self.prop.page_all < self.prop.max_all) {
  11670. self.prop.page_all++;
  11671. self.prop.is_paging = true;
  11672. self.prop.page_move = true;
  11673. self._suggest(self);
  11674. }
  11675. /*
  11676. if (self.prop.is_suggest) {
  11677. if (self.prop.page_suggest < self.prop.max_suggest) {
  11678. self.prop.page_suggest++;
  11679. self.prop.is_paging = true;
  11680. self._suggest(self);
  11681. }
  11682. } else {
  11683. if (self.prop.page_all < self.prop.max_all) {
  11684. self.prop.page_all++;
  11685. self.prop.is_paging = true;
  11686. self.prop.page_move = true;
  11687. self._suggest(self);
  11688. }
  11689. }
  11690. */
  11691. },
  11692. /**
  11693. * @private
  11694. * @desc 跳转到尾页
  11695. * @param {Object} self - 插件内部对象
  11696. */
  11697. _lastPage: function (self) {
  11698. if (self.prop.page_all < self.prop.max_all) {
  11699. self.prop.page_all = self.prop.max_all;
  11700. self.prop.is_paging = true;
  11701. self.prop.page_move = true;
  11702. self._suggest(self);
  11703. }
  11704. /*
  11705. if (!self.prop.is_suggest) {
  11706. if (self.prop.page_all < self.prop.max_all) {
  11707. self.prop.page_all = self.prop.max_all;
  11708. self.prop.is_paging = true;
  11709. self.prop.page_move = true;
  11710. self._suggest(self);
  11711. }
  11712. } else {
  11713. if (self.prop.page_suggest < self.prop.max_suggest) {
  11714. self.prop.page_suggest = self.prop.max_suggest;
  11715. self.prop.is_paging = true;
  11716. self._suggest(self);
  11717. }
  11718. }
  11719. */
  11720. },
  11721. /**
  11722. * @private
  11723. * @desc 跳转到指定页
  11724. * @param {Object} self
  11725. * @param {number} page 目标页数
  11726. */
  11727. _goPage: function (self, page) {
  11728. if (typeof (page) == 'undefined')
  11729. page = 1;
  11730. if (self.prop.page_all < self.prop.max_all) {
  11731. self.prop.page_all = page;
  11732. self.prop.is_paging = true;
  11733. self.prop.page_move = true;
  11734. self._suggest(self);
  11735. }
  11736. /*
  11737. if (self.prop.is_suggest) {
  11738. if (self.prop.page_suggest < self.prop.max_suggest) {
  11739. self.prop.page_suggest = page;
  11740. self.prop.is_paging = true;
  11741. self._suggest(self);
  11742. }
  11743. } else {
  11744. if (self.prop.page_all < self.prop.max_all) {
  11745. self.prop.page_all = page;
  11746. self.prop.is_paging = true;
  11747. self.prop.page_move = true;
  11748. self._suggest(self);
  11749. }
  11750. }
  11751. */
  11752. },
  11753. /**
  11754. * @private
  11755. * @desc 选择当前行
  11756. * @param {Object} self - 插件内部对象
  11757. * @param {boolean} is_enter_key - 是否为回车键
  11758. */
  11759. _selectCurrentLine: function (self, is_enter_key) {
  11760. self._scrollWindow(self, true);
  11761. var current = self._getCurrentLine(self);
  11762. if (current) {
  11763. var pkey = $(current).attr('pkey');
  11764. var text = self.option.format_fill ? $(current).text() : $(current).attr("pvalue");
  11765. if (!self.option.multiple) {
  11766. $(self.elem.combo_input).val(text);
  11767. self._setHiddenValue(pkey);
  11768. } else {
  11769. //多选模式的项目选择处理
  11770. $(self.elem.combo_input).val('');
  11771. var item = {text: text, value: pkey};
  11772. if (!self._isAlreadySelected(self, item)) {
  11773. self._addNewTag(self, item);
  11774. self._tagValuesSet(self);
  11775. }
  11776. }
  11777. if (self.option.select_only)
  11778. self._setButtonAttrDefault();
  11779. //触发元素的事件
  11780. $(self.elem.hidden).trigger("change");
  11781. //回调函数触发
  11782. if (typeof self.option.callback === 'function') {
  11783. self.option.callback.call(self, $(current).data('dataObj'));
  11784. }
  11785. //触发指定事件
  11786. if (self.option.bind_to) {
  11787. $(self.elem.combo_input).trigger(self.option.bind_to, $(current).data('dataObj'));
  11788. }
  11789. self.prop.prev_value = $(self.elem.combo_input).val();
  11790. self._hideResults(self);
  11791. }
  11792. //$(self.elem.combo_input).focus();
  11793. $(self.elem.combo_input).trigger("change");
  11794. $(self.elem.combo_input).trigger("blur");
  11795. self._setCssFocusedInput(self);
  11796. self._inputResize(self);
  11797. },
  11798. /**
  11799. * @private
  11800. * @desc 获得当前行对象
  11801. * @param {Object} self - 插件内部对象
  11802. */
  11803. _getCurrentLine: function (self) {
  11804. if ($(self.elem.result_area).is(':hidden'))
  11805. return false;
  11806. var obj = $(self.elem.results).children('li.' + self.css_class.select);
  11807. if ($(obj).length)
  11808. return obj;
  11809. else
  11810. return false;
  11811. },
  11812. /**
  11813. * @private
  11814. * @desc 多选模式下判断当前选中项目是否已经存在已选中列表中
  11815. * @param {Object} self - 插件内部对象
  11816. * @param {Object} item - 选中行对象
  11817. */
  11818. _isAlreadySelected: function (self, item) {
  11819. var isExist = false;
  11820. if (item.value) {
  11821. var keys = $(self.elem.hidden).val();
  11822. if (keys) {
  11823. var karr = $.isArray(keys) ? keys : (keys ? keys.split(',') : new Array());
  11824. if (karr && karr.length > 0 && $.inArray(item.value, karr) != -1)
  11825. isExist = true;
  11826. }
  11827. }
  11828. return isExist;
  11829. },
  11830. /**
  11831. * @private
  11832. * @desc 多选模式下增加一个标签
  11833. * @param {Object} self - 插件内部对象
  11834. * @param {Object} item - 选中行对象
  11835. */
  11836. _addNewTag: function (self, item) {
  11837. if (!self.option.multiple || !item)
  11838. return;
  11839. var tmp = self.template.tag.content;
  11840. tmp = tmp.replace(self.template.tag.textKey, item.text);
  11841. tmp = tmp.replace(self.template.tag.valueKey, item.value);
  11842. $(self.elem.combo_input).closest('li').before($(tmp));
  11843. },
  11844. /**
  11845. * @private
  11846. * @desc 多选模式下标签结果值放入隐藏域
  11847. * @param {Object} self - 插件内部对象
  11848. */
  11849. _tagValuesSet: function (self) {
  11850. if (!self.option.multiple)
  11851. return;
  11852. var tags = $('li.selected_tag', $(self.elem.element_box));
  11853. if (tags && $(tags).size() > 0) {
  11854. var result = new Array();
  11855. $.each(tags, function (i, li) {
  11856. var v = $(li).attr('itemvalue');
  11857. if ($.type(v) != 'undefined')
  11858. result.push(v);
  11859. });
  11860. if (result.length > 0) {
  11861. self._setHiddenValue(result);
  11862. }
  11863. }
  11864. },
  11865. /**
  11866. * @private
  11867. * @desc 多选模式下输入框根据输入内容调整输入框宽度
  11868. * @param {Object} self - 插件内部对象
  11869. */
  11870. _inputResize: function (self) {
  11871. if (!self.option.multiple)
  11872. return;
  11873. var width = '';
  11874. var inputLi = self.elem.combo_input.closest('li');
  11875. //设置默认宽度
  11876. var setDefaultSize = function (self, inputLi) {
  11877. inputLi.removeClass('full_width');
  11878. var minimumWidth = self.elem.combo_input.val().length + 1;
  11879. var width = (minimumWidth * 0.75) + 'em';
  11880. self.elem.combo_input.css('width', width);
  11881. self.elem.combo_input.removeAttr('placeholder');
  11882. };
  11883. if ($('li.selected_tag', $(self.elem.element_box)).size() == 0) {
  11884. if (self.elem.combo_input.attr('placeholder_bak')) {
  11885. if (!inputLi.hasClass('full_width'))
  11886. inputLi.addClass('full_width');
  11887. self.elem.combo_input.attr('placeholder', self.elem.combo_input.attr('placeholder_bak'));
  11888. } else
  11889. setDefaultSize(self, inputLi);
  11890. } else
  11891. setDefaultSize(self, inputLi);
  11892. },
  11893. /**
  11894. * @private
  11895. * @desc 选择下一行
  11896. * @param {Object} self - 插件内部对象
  11897. */
  11898. _nextLine: function (self) {
  11899. var obj = self._getCurrentLine(self);
  11900. var idx;
  11901. if (!obj)
  11902. idx = -1;
  11903. else {
  11904. idx = $(self.elem.results).children('li').index(obj);
  11905. $(obj).removeClass(self.css_class.select);
  11906. }
  11907. idx++;
  11908. if (idx < $(self.elem.results).children('li').length) {
  11909. var next = $(self.elem.results).children('li').eq(idx);
  11910. $(next).addClass(self.css_class.select);
  11911. self._setCssFocusedResults(self);
  11912. } else
  11913. self._setCssFocusedInput(self);
  11914. self._scrollWindow(self, false);
  11915. },
  11916. /**
  11917. * @private
  11918. * @desc 选择上一行
  11919. * @param {Object} self - 插件内部对象
  11920. */
  11921. _prevLine: function (self) {
  11922. var obj = self._getCurrentLine(self);
  11923. var idx;
  11924. if (!obj)
  11925. idx = $(self.elem.results).children('li').length;
  11926. else {
  11927. idx = $(self.elem.results).children('li').index(obj);
  11928. $(obj).removeClass(self.css_class.select);
  11929. }
  11930. idx--;
  11931. if (idx > -1) {
  11932. var prev = $(self.elem.results).children('li').eq(idx);
  11933. $(prev).addClass(self.css_class.select);
  11934. self._setCssFocusedResults(self);
  11935. } else
  11936. self._setCssFocusedInput(self);
  11937. self._scrollWindow(self, false);
  11938. }
  11939. });
  11940. return SelectPage;
  11941. }));