├── .gitattributes ├── .gitignore ├── Images ├── sloth.png ├── sloth.svg └── uploadBCF.gif ├── LICENSE.md ├── README.md ├── Sloth.sln └── Sloth ├── .bowerrc ├── Controllers ├── AccountController.cs ├── HomeController.cs └── ManageController.cs ├── Data ├── ApplicationDbContext.cs └── Migrations │ ├── 00000000000000_CreateIdentitySchema.Designer.cs │ ├── 00000000000000_CreateIdentitySchema.cs │ ├── 20170603135355_InitialCreate.Designer.cs │ ├── 20170603135355_InitialCreate.cs │ └── ApplicationDbContextModelSnapshot.cs ├── Models ├── AccountViewModels │ ├── ExternalLoginConfirmationViewModel.cs │ ├── ForgotPasswordViewModel.cs │ ├── LoginViewModel.cs │ ├── RegisterViewModel.cs │ ├── ResetPasswordViewModel.cs │ ├── SendCodeViewModel.cs │ └── VerifyCodeViewModel.cs ├── ApplicationTopic.cs ├── ApplicationUser.cs ├── FilePath.cs └── ManageViewModels │ ├── AddPhoneNumberViewModel.cs │ ├── ChangePasswordViewModel.cs │ ├── ConfigureTwoFactorViewModel.cs │ ├── FactorViewModel.cs │ ├── IndexViewModel.cs │ ├── ManageLoginsViewModel.cs │ ├── RemoveLoginViewModel.cs │ ├── SetPasswordViewModel.cs │ └── VerifyPhoneNumberViewModel.cs ├── Program.cs ├── Properties ├── PublishProfiles │ └── SlothBCF - Web Deploy.pubxml └── launchSettings.json ├── Services ├── IEmailSender.cs ├── ISmsSender.cs ├── MessageServices.cs └── SessionServices.cs ├── Sloth.csproj ├── Startup.cs ├── Views ├── Account │ ├── AccessDenied.cshtml │ ├── ConfirmEmail.cshtml │ ├── ExternalLoginConfirmation.cshtml │ ├── ExternalLoginFailure.cshtml │ ├── ForgotPassword.cshtml │ ├── ForgotPasswordConfirmation.cshtml │ ├── Lockout.cshtml │ ├── Login.cshtml │ ├── Register.cshtml │ ├── ResetPassword.cshtml │ ├── ResetPasswordConfirmation.cshtml │ ├── SendCode.cshtml │ └── VerifyCode.cshtml ├── Home │ ├── About.cshtml │ ├── Contact.cshtml │ └── Index.cshtml ├── Manage │ ├── AddPhoneNumber.cshtml │ ├── ChangePassword.cshtml │ ├── Index.cshtml │ ├── ManageLogins.cshtml │ ├── SetPassword.cshtml │ └── VerifyPhoneNumber.cshtml ├── Shared │ ├── Error.cshtml │ ├── _Commands.cshtml │ ├── _Layout.cshtml │ ├── _LoginPartial.cshtml │ └── _ValidationScriptsPartial.cshtml ├── _ViewImports.cshtml └── _ViewStart.cshtml ├── app.config ├── appsettings.Development.json ├── appsettings.json ├── bower.json ├── bundleconfig.json └── wwwroot ├── css ├── site.css └── site.min.css ├── favicon.ico ├── images ├── GitHub.svg ├── apple-touch-icon-120x120-precomposed.png ├── apple-touch-icon-152x152-precomposed.png ├── apple-touch-icon-72x72-precomposed.png ├── apple.jpg ├── banner1.svg ├── banner2.svg ├── banner3.svg ├── banner4.svg ├── doc.svg ├── favicon-coast.png ├── favicon.png ├── logo.png ├── pdf.svg ├── pinned.png ├── sloth.svg └── xls.svg ├── js ├── site.js └── site.min.js └── lib ├── jquery-validation-unobtrusive ├── .bower.json ├── jquery.validate.unobtrusive.js └── jquery.validate.unobtrusive.min.js ├── jquery-validation ├── .bower.json ├── CONTRIBUTING.md ├── Gruntfile.js ├── LICENSE.md ├── README.md ├── bower.json ├── build │ └── release.js ├── changelog.md ├── dist │ ├── additional-methods.js │ ├── additional-methods.min.js │ ├── jquery.validate.js │ └── jquery.validate.min.js ├── package.json ├── src │ ├── additional │ │ ├── accept.js │ │ ├── additional.js │ │ ├── alphanumeric.js │ │ ├── bankaccountNL.js │ │ ├── bankorgiroaccountNL.js │ │ ├── bic.js │ │ ├── cifES.js │ │ ├── cpfBR.js │ │ ├── creditcard.js │ │ ├── creditcardtypes.js │ │ ├── currency.js │ │ ├── dateFA.js │ │ ├── dateITA.js │ │ ├── dateNL.js │ │ ├── extension.js │ │ ├── giroaccountNL.js │ │ ├── iban.js │ │ ├── integer.js │ │ ├── ipv4.js │ │ ├── ipv6.js │ │ ├── lettersonly.js │ │ ├── letterswithbasicpunc.js │ │ ├── mobileNL.js │ │ ├── mobileUK.js │ │ ├── nieES.js │ │ ├── nifES.js │ │ ├── notEqualTo.js │ │ ├── nowhitespace.js │ │ ├── pattern.js │ │ ├── phoneNL.js │ │ ├── phoneUK.js │ │ ├── phoneUS.js │ │ ├── phonesUK.js │ │ ├── postalCodeCA.js │ │ ├── postalcodeBR.js │ │ ├── postalcodeIT.js │ │ ├── postalcodeNL.js │ │ ├── postcodeUK.js │ │ ├── require_from_group.js │ │ ├── skip_or_fill_minimum.js │ │ ├── statesUS.js │ │ ├── strippedminlength.js │ │ ├── time.js │ │ ├── time12h.js │ │ ├── url2.js │ │ ├── vinUS.js │ │ ├── zipcodeUS.js │ │ └── ziprange.js │ ├── ajax.js │ ├── core.js │ └── localization │ │ ├── messages_ar.js │ │ ├── messages_az.js │ │ ├── messages_bg.js │ │ ├── messages_bn_BD.js │ │ ├── messages_ca.js │ │ ├── messages_cs.js │ │ ├── messages_da.js │ │ ├── messages_de.js │ │ ├── messages_el.js │ │ ├── messages_es.js │ │ ├── messages_es_AR.js │ │ ├── messages_es_PE.js │ │ ├── messages_et.js │ │ ├── messages_eu.js │ │ ├── messages_fa.js │ │ ├── messages_fi.js │ │ ├── messages_fr.js │ │ ├── messages_ge.js │ │ ├── messages_gl.js │ │ ├── messages_he.js │ │ ├── messages_hr.js │ │ ├── messages_hu.js │ │ ├── messages_hy_AM.js │ │ ├── messages_id.js │ │ ├── messages_is.js │ │ ├── messages_it.js │ │ ├── messages_ja.js │ │ ├── messages_ka.js │ │ ├── messages_kk.js │ │ ├── messages_ko.js │ │ ├── messages_lt.js │ │ ├── messages_lv.js │ │ ├── messages_mk.js │ │ ├── messages_my.js │ │ ├── messages_nl.js │ │ ├── messages_no.js │ │ ├── messages_pl.js │ │ ├── messages_pt_BR.js │ │ ├── messages_pt_PT.js │ │ ├── messages_ro.js │ │ ├── messages_ru.js │ │ ├── messages_si.js │ │ ├── messages_sk.js │ │ ├── messages_sl.js │ │ ├── messages_sr.js │ │ ├── messages_sr_lat.js │ │ ├── messages_sv.js │ │ ├── messages_th.js │ │ ├── messages_tj.js │ │ ├── messages_tr.js │ │ ├── messages_uk.js │ │ ├── messages_ur.js │ │ ├── messages_vi.js │ │ ├── messages_zh.js │ │ ├── messages_zh_TW.js │ │ ├── methods_de.js │ │ ├── methods_es_CL.js │ │ ├── methods_fi.js │ │ ├── methods_nl.js │ │ └── methods_pt.js └── validation.jquery.json ├── jquery ├── .bower.json ├── AUTHORS.txt ├── LICENSE.txt ├── README.md ├── bower.json ├── dist │ ├── core.js │ ├── jquery.js │ ├── jquery.min.js │ ├── jquery.min.map │ ├── jquery.slim.js │ ├── jquery.slim.min.js │ └── jquery.slim.min.map ├── external │ └── sizzle │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── sizzle.js │ │ ├── sizzle.min.js │ │ └── sizzle.min.map └── src │ ├── .eslintrc.json │ ├── ajax.js │ ├── ajax │ ├── jsonp.js │ ├── load.js │ ├── parseXML.js │ ├── script.js │ ├── var │ │ ├── location.js │ │ ├── nonce.js │ │ └── rquery.js │ └── xhr.js │ ├── attributes.js │ ├── attributes │ ├── attr.js │ ├── classes.js │ ├── prop.js │ ├── support.js │ └── val.js │ ├── callbacks.js │ ├── core.js │ ├── core │ ├── DOMEval.js │ ├── access.js │ ├── init.js │ ├── parseHTML.js │ ├── ready-no-deferred.js │ ├── ready.js │ ├── readyException.js │ ├── stripAndCollapse.js │ ├── support.js │ └── var │ │ └── rsingleTag.js │ ├── css.js │ ├── css │ ├── addGetHookIf.js │ ├── adjustCSS.js │ ├── curCSS.js │ ├── hiddenVisibleSelectors.js │ ├── showHide.js │ ├── support.js │ └── var │ │ ├── cssExpand.js │ │ ├── getStyles.js │ │ ├── isHiddenWithinTree.js │ │ ├── rmargin.js │ │ ├── rnumnonpx.js │ │ └── swap.js │ ├── data.js │ ├── data │ ├── Data.js │ └── var │ │ ├── acceptData.js │ │ ├── dataPriv.js │ │ └── dataUser.js │ ├── deferred.js │ ├── deferred │ └── exceptionHook.js │ ├── deprecated.js │ ├── dimensions.js │ ├── effects.js │ ├── effects │ ├── Tween.js │ └── animatedSelector.js │ ├── event.js │ ├── event │ ├── ajax.js │ ├── alias.js │ ├── focusin.js │ ├── support.js │ └── trigger.js │ ├── exports │ ├── amd.js │ └── global.js │ ├── jquery.js │ ├── manipulation.js │ ├── manipulation │ ├── _evalUrl.js │ ├── buildFragment.js │ ├── getAll.js │ ├── setGlobalEval.js │ ├── support.js │ ├── var │ │ ├── rcheckableType.js │ │ ├── rscriptType.js │ │ └── rtagName.js │ └── wrapMap.js │ ├── offset.js │ ├── queue.js │ ├── queue │ └── delay.js │ ├── selector-native.js │ ├── selector-sizzle.js │ ├── selector.js │ ├── serialize.js │ ├── traversing.js │ ├── traversing │ ├── findFilter.js │ └── var │ │ ├── dir.js │ │ ├── rneedsContext.js │ │ └── siblings.js │ ├── var │ ├── ObjectFunctionString.js │ ├── arr.js │ ├── class2type.js │ ├── concat.js │ ├── document.js │ ├── documentElement.js │ ├── fnToString.js │ ├── getProto.js │ ├── hasOwn.js │ ├── indexOf.js │ ├── pnum.js │ ├── push.js │ ├── rcssNum.js │ ├── rnothtmlwhite.js │ ├── slice.js │ ├── support.js │ └── toString.js │ └── wrap.js └── material-design-lite ├── .bower.json ├── LICENSE ├── README.md ├── bower.json ├── gulpfile.babel.js ├── material.css ├── material.js ├── material.min.css ├── material.min.css.map ├── material.min.js ├── material.min.js.map ├── package.json ├── src ├── INTRODUCTION.md ├── _color-definitions.scss ├── _functions.scss ├── _mixins.scss ├── _variables.scss ├── animation │ ├── _animation.scss │ ├── demo.css │ ├── demo.html │ └── demo.js ├── badge │ ├── README.md │ ├── _badge.scss │ └── snippets │ │ ├── badge-on-icon-icon-demo.html │ │ ├── badge-on-icon-icon.html │ │ ├── badge-on-icon-text-demo.html │ │ ├── badge-on-icon-text.html │ │ ├── badge-on-text-icon-demo.html │ │ ├── badge-on-text-icon.html │ │ ├── badge-on-text-text-demo.html │ │ └── badge-on-text-text.html ├── button │ ├── README.md │ ├── _button.scss │ ├── button.js │ └── snippets │ │ ├── fab-colored-ripple.html │ │ ├── fab-colored.html │ │ ├── fab-disabled.html │ │ ├── fab-mini-colored.html │ │ ├── fab-mini.html │ │ ├── fab-ripple.html │ │ ├── fab.html │ │ ├── flat-accent.html │ │ ├── flat-disabled.html │ │ ├── flat-primary.html │ │ ├── flat-ripple.html │ │ ├── flat.html │ │ ├── icon-colored.html │ │ ├── icon.html │ │ ├── raised-accent.html │ │ ├── raised-colored.html │ │ ├── raised-disabled.html │ │ ├── raised-ripple-accent.html │ │ ├── raised-ripple.html │ │ └── raised.html ├── card │ ├── README.md │ ├── _card.scss │ └── snippets │ │ ├── event.html │ │ ├── image.html │ │ ├── square.html │ │ └── wide.html ├── checkbox │ ├── README.md │ ├── _checkbox.scss │ ├── checkbox.js │ └── snippets │ │ ├── check-off.html │ │ └── check-on.html ├── chip │ ├── README.md │ ├── _chip.scss │ └── snippets │ │ ├── basic.html │ │ ├── button.html │ │ ├── contact.html │ │ ├── deletable-contact.html │ │ └── deletable.html ├── data-table │ ├── README.md │ ├── _data-table.scss │ ├── data-table.js │ └── snippets │ │ └── data-table.html ├── demos.css ├── dialog │ ├── README.md │ └── _dialog.scss ├── footer │ ├── README.md │ ├── _mega_footer.scss │ ├── _mini_footer.scss │ └── snippets │ │ ├── mega-footer.html │ │ └── mini-footer.html ├── grid │ ├── README.md │ ├── _grid.scss │ └── snippets │ │ ├── codepen-grid.css │ │ ├── grid-demo.html │ │ └── grid.html ├── icon-toggle │ ├── README.md │ ├── _icon-toggle.scss │ ├── icon-toggle.js │ └── snippets │ │ ├── icon-off.html │ │ └── icon-on.html ├── images │ ├── buffer.svg │ ├── tick-mask.svg │ └── tick.svg ├── index.html ├── layout │ ├── README.md │ ├── _layout.scss │ ├── layout.js │ └── snippets │ │ ├── fixed-drawer-demo.html │ │ ├── fixed-drawer.html │ │ ├── fixed-header-demo.html │ │ ├── fixed-header-drawer-demo.html │ │ ├── fixed-header-drawer.html │ │ ├── fixed-header.html │ │ ├── fixed-tabs-demo.html │ │ ├── fixed-tabs.html │ │ ├── scrollable-tabs-demo.html │ │ ├── scrollable-tabs.html │ │ ├── scrolling-header-demo.html │ │ ├── scrolling-header.html │ │ ├── transparent-demo.html │ │ ├── transparent.html │ │ ├── waterfall-header-demo.html │ │ └── waterfall-header.html ├── list │ ├── README.md │ ├── _list.scss │ └── snippets │ │ ├── action.html │ │ ├── icon.html │ │ ├── list-control.html │ │ ├── list-item.html │ │ ├── three-line.html │ │ └── two-line.html ├── material-design-lite-grid.scss ├── material-design-lite.scss ├── mdlComponentHandler.js ├── menu │ ├── README.md │ ├── _menu.scss │ ├── menu.js │ └── snippets │ │ ├── codepen-lower-buttons.css │ │ ├── codepen-top-buttons.css │ │ ├── lower-left-demo.html │ │ ├── lower-left.html │ │ ├── lower-right-demo.html │ │ ├── lower-right.html │ │ ├── top-left-demo.html │ │ ├── top-left.html │ │ ├── top-right-demo.html │ │ └── top-right.html ├── palette │ ├── _palette.scss │ ├── demo.css │ └── demo.html ├── progress │ ├── README.md │ ├── _progress.scss │ ├── progress.js │ └── snippets │ │ ├── progress-buffering-demo.html │ │ ├── progress-buffering.html │ │ ├── progress-default-demo.html │ │ ├── progress-default.html │ │ ├── progress-indeterminate-demo.html │ │ └── progress-indeterminate.html ├── radio │ ├── README.md │ ├── _radio.scss │ ├── radio.js │ └── snippets │ │ ├── radio-off.html │ │ └── radio-on.html ├── resets │ ├── _h5bp.scss │ ├── _mobile.scss │ └── _resets.scss ├── ripple │ ├── _ripple.scss │ └── ripple.js ├── shadow │ ├── README.md │ ├── _shadow.scss │ ├── demo.css │ └── demo.html ├── slider │ ├── README.md │ ├── _slider.scss │ ├── slider.js │ └── snippets │ │ ├── demo.html │ │ ├── slider-default-demo.html │ │ ├── slider-default.html │ │ ├── slider-starting-value-demo.html │ │ └── slider-starting-value.html ├── snackbar │ ├── README.md │ ├── _snackbar.scss │ ├── snackbar.js │ └── snippets │ │ ├── snackbar.html │ │ └── toast.html ├── spinner │ ├── README.md │ ├── _spinner.scss │ ├── snippets │ │ ├── spinner-default.html │ │ └── spinner-single-color.html │ └── spinner.js ├── styleguide.scss ├── switch │ ├── README.md │ ├── _switch.scss │ ├── snippets │ │ ├── switch-off.html │ │ └── switch-on.html │ └── switch.js ├── tabs │ ├── README.md │ ├── _tabs.scss │ ├── snippets │ │ └── tabs.html │ └── tabs.js ├── template.scss ├── textfield │ ├── README.md │ ├── _textfield.scss │ ├── snippets │ │ ├── textfield-expanding-demo.html │ │ ├── textfield-expanding.html │ │ ├── textfield-floating-numeric-demo.html │ │ ├── textfield-floating-numeric.html │ │ ├── textfield-floating-text-demo.html │ │ ├── textfield-floating-text.html │ │ ├── textfield-multi-line-demo.html │ │ ├── textfield-multi-line.html │ │ ├── textfield-numeric-demo.html │ │ ├── textfield-numeric.html │ │ ├── textfield-text-demo.html │ │ └── textfield-text.html │ └── textfield.js ├── third_party │ └── rAF.js ├── tooltip │ ├── README.md │ ├── _tooltip.scss │ ├── snippets │ │ ├── tooltip-large.html │ │ ├── tooltip-multiline.html │ │ ├── tooltip-rich.html │ │ └── tooltip-simple.html │ └── tooltip.js └── typography │ ├── README.md │ ├── _typography.scss │ ├── demo.css │ └── demo.html └── utils └── uniffe.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/sloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Images/sloth.png -------------------------------------------------------------------------------- /Images/sloth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Images/sloth.svg -------------------------------------------------------------------------------- /Images/uploadBCF.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Images/uploadBCF.gif -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/README.md -------------------------------------------------------------------------------- /Sloth.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth.sln -------------------------------------------------------------------------------- /Sloth/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /Sloth/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Controllers/AccountController.cs -------------------------------------------------------------------------------- /Sloth/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Sloth/Controllers/ManageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Controllers/ManageController.cs -------------------------------------------------------------------------------- /Sloth/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /Sloth/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs -------------------------------------------------------------------------------- /Sloth/Data/Migrations/00000000000000_CreateIdentitySchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Data/Migrations/00000000000000_CreateIdentitySchema.cs -------------------------------------------------------------------------------- /Sloth/Data/Migrations/20170603135355_InitialCreate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Data/Migrations/20170603135355_InitialCreate.Designer.cs -------------------------------------------------------------------------------- /Sloth/Data/Migrations/20170603135355_InitialCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Data/Migrations/20170603135355_InitialCreate.cs -------------------------------------------------------------------------------- /Sloth/Data/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Data/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /Sloth/Models/AccountViewModels/ExternalLoginConfirmationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Models/AccountViewModels/ExternalLoginConfirmationViewModel.cs -------------------------------------------------------------------------------- /Sloth/Models/AccountViewModels/ForgotPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Models/AccountViewModels/ForgotPasswordViewModel.cs -------------------------------------------------------------------------------- /Sloth/Models/AccountViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Models/AccountViewModels/LoginViewModel.cs -------------------------------------------------------------------------------- /Sloth/Models/AccountViewModels/RegisterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Models/AccountViewModels/RegisterViewModel.cs -------------------------------------------------------------------------------- /Sloth/Models/AccountViewModels/ResetPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Models/AccountViewModels/ResetPasswordViewModel.cs -------------------------------------------------------------------------------- /Sloth/Models/AccountViewModels/SendCodeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Models/AccountViewModels/SendCodeViewModel.cs -------------------------------------------------------------------------------- /Sloth/Models/AccountViewModels/VerifyCodeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Models/AccountViewModels/VerifyCodeViewModel.cs -------------------------------------------------------------------------------- /Sloth/Models/ApplicationTopic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Models/ApplicationTopic.cs -------------------------------------------------------------------------------- /Sloth/Models/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Models/ApplicationUser.cs -------------------------------------------------------------------------------- /Sloth/Models/FilePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Models/FilePath.cs -------------------------------------------------------------------------------- /Sloth/Models/ManageViewModels/AddPhoneNumberViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Models/ManageViewModels/AddPhoneNumberViewModel.cs -------------------------------------------------------------------------------- /Sloth/Models/ManageViewModels/ChangePasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Models/ManageViewModels/ChangePasswordViewModel.cs -------------------------------------------------------------------------------- /Sloth/Models/ManageViewModels/ConfigureTwoFactorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Models/ManageViewModels/ConfigureTwoFactorViewModel.cs -------------------------------------------------------------------------------- /Sloth/Models/ManageViewModels/FactorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Models/ManageViewModels/FactorViewModel.cs -------------------------------------------------------------------------------- /Sloth/Models/ManageViewModels/IndexViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Models/ManageViewModels/IndexViewModel.cs -------------------------------------------------------------------------------- /Sloth/Models/ManageViewModels/ManageLoginsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Models/ManageViewModels/ManageLoginsViewModel.cs -------------------------------------------------------------------------------- /Sloth/Models/ManageViewModels/RemoveLoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Models/ManageViewModels/RemoveLoginViewModel.cs -------------------------------------------------------------------------------- /Sloth/Models/ManageViewModels/SetPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Models/ManageViewModels/SetPasswordViewModel.cs -------------------------------------------------------------------------------- /Sloth/Models/ManageViewModels/VerifyPhoneNumberViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Models/ManageViewModels/VerifyPhoneNumberViewModel.cs -------------------------------------------------------------------------------- /Sloth/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Program.cs -------------------------------------------------------------------------------- /Sloth/Properties/PublishProfiles/SlothBCF - Web Deploy.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Properties/PublishProfiles/SlothBCF - Web Deploy.pubxml -------------------------------------------------------------------------------- /Sloth/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Properties/launchSettings.json -------------------------------------------------------------------------------- /Sloth/Services/IEmailSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Services/IEmailSender.cs -------------------------------------------------------------------------------- /Sloth/Services/ISmsSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Services/ISmsSender.cs -------------------------------------------------------------------------------- /Sloth/Services/MessageServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Services/MessageServices.cs -------------------------------------------------------------------------------- /Sloth/Services/SessionServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Services/SessionServices.cs -------------------------------------------------------------------------------- /Sloth/Sloth.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Sloth.csproj -------------------------------------------------------------------------------- /Sloth/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Startup.cs -------------------------------------------------------------------------------- /Sloth/Views/Account/AccessDenied.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Views/Account/AccessDenied.cshtml -------------------------------------------------------------------------------- /Sloth/Views/Account/ConfirmEmail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Views/Account/ConfirmEmail.cshtml -------------------------------------------------------------------------------- /Sloth/Views/Account/ExternalLoginConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Views/Account/ExternalLoginConfirmation.cshtml -------------------------------------------------------------------------------- /Sloth/Views/Account/ExternalLoginFailure.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Views/Account/ExternalLoginFailure.cshtml -------------------------------------------------------------------------------- /Sloth/Views/Account/ForgotPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Views/Account/ForgotPassword.cshtml -------------------------------------------------------------------------------- /Sloth/Views/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Views/Account/ForgotPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /Sloth/Views/Account/Lockout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Views/Account/Lockout.cshtml -------------------------------------------------------------------------------- /Sloth/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /Sloth/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /Sloth/Views/Account/ResetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Views/Account/ResetPassword.cshtml -------------------------------------------------------------------------------- /Sloth/Views/Account/ResetPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Views/Account/ResetPasswordConfirmation.cshtml -------------------------------------------------------------------------------- /Sloth/Views/Account/SendCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Views/Account/SendCode.cshtml -------------------------------------------------------------------------------- /Sloth/Views/Account/VerifyCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Views/Account/VerifyCode.cshtml -------------------------------------------------------------------------------- /Sloth/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Views/Home/About.cshtml -------------------------------------------------------------------------------- /Sloth/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /Sloth/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Sloth/Views/Manage/AddPhoneNumber.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Views/Manage/AddPhoneNumber.cshtml -------------------------------------------------------------------------------- /Sloth/Views/Manage/ChangePassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Views/Manage/ChangePassword.cshtml -------------------------------------------------------------------------------- /Sloth/Views/Manage/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Views/Manage/Index.cshtml -------------------------------------------------------------------------------- /Sloth/Views/Manage/ManageLogins.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Views/Manage/ManageLogins.cshtml -------------------------------------------------------------------------------- /Sloth/Views/Manage/SetPassword.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Views/Manage/SetPassword.cshtml -------------------------------------------------------------------------------- /Sloth/Views/Manage/VerifyPhoneNumber.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Views/Manage/VerifyPhoneNumber.cshtml -------------------------------------------------------------------------------- /Sloth/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Sloth/Views/Shared/_Commands.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Views/Shared/_Commands.cshtml -------------------------------------------------------------------------------- /Sloth/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Sloth/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /Sloth/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Sloth/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Sloth/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Sloth/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/app.config -------------------------------------------------------------------------------- /Sloth/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/appsettings.Development.json -------------------------------------------------------------------------------- /Sloth/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/appsettings.json -------------------------------------------------------------------------------- /Sloth/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/bower.json -------------------------------------------------------------------------------- /Sloth/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/bundleconfig.json -------------------------------------------------------------------------------- /Sloth/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/css/site.css -------------------------------------------------------------------------------- /Sloth/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /Sloth/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Sloth/wwwroot/images/GitHub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/images/GitHub.svg -------------------------------------------------------------------------------- /Sloth/wwwroot/images/apple-touch-icon-120x120-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/images/apple-touch-icon-120x120-precomposed.png -------------------------------------------------------------------------------- /Sloth/wwwroot/images/apple-touch-icon-152x152-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/images/apple-touch-icon-152x152-precomposed.png -------------------------------------------------------------------------------- /Sloth/wwwroot/images/apple-touch-icon-72x72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/images/apple-touch-icon-72x72-precomposed.png -------------------------------------------------------------------------------- /Sloth/wwwroot/images/apple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/images/apple.jpg -------------------------------------------------------------------------------- /Sloth/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /Sloth/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /Sloth/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /Sloth/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /Sloth/wwwroot/images/doc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/images/doc.svg -------------------------------------------------------------------------------- /Sloth/wwwroot/images/favicon-coast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/images/favicon-coast.png -------------------------------------------------------------------------------- /Sloth/wwwroot/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/images/favicon.png -------------------------------------------------------------------------------- /Sloth/wwwroot/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/images/logo.png -------------------------------------------------------------------------------- /Sloth/wwwroot/images/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/images/pdf.svg -------------------------------------------------------------------------------- /Sloth/wwwroot/images/pinned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/images/pinned.png -------------------------------------------------------------------------------- /Sloth/wwwroot/images/sloth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/images/sloth.svg -------------------------------------------------------------------------------- /Sloth/wwwroot/images/xls.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/images/xls.svg -------------------------------------------------------------------------------- /Sloth/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/js/site.js -------------------------------------------------------------------------------- /Sloth/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/js/site.min.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/CONTRIBUTING.md -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/Gruntfile.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/README.md -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/bower.json -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/build/release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/build/release.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/changelog.md -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/package.json -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/accept.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/accept.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/additional.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/additional.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/alphanumeric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/alphanumeric.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/bankaccountNL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/bankaccountNL.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/bankorgiroaccountNL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/bankorgiroaccountNL.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/bic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/bic.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/cifES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/cifES.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/cpfBR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/cpfBR.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/creditcard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/creditcard.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/creditcardtypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/creditcardtypes.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/currency.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/dateFA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/dateFA.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/dateITA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/dateITA.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/dateNL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/dateNL.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/extension.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/giroaccountNL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/giroaccountNL.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/iban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/iban.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/integer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/integer.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/ipv4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/ipv4.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/ipv6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/ipv6.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/lettersonly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/lettersonly.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/letterswithbasicpunc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/letterswithbasicpunc.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/mobileNL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/mobileNL.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/mobileUK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/mobileUK.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/nieES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/nieES.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/nifES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/nifES.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/notEqualTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/notEqualTo.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/nowhitespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/nowhitespace.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/pattern.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/phoneNL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/phoneNL.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/phoneUK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/phoneUK.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/phoneUS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/phoneUS.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/phonesUK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/phonesUK.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/postalCodeCA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/postalCodeCA.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/postalcodeBR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/postalcodeBR.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/postalcodeIT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/postalcodeIT.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/postalcodeNL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/postalcodeNL.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/postcodeUK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/postcodeUK.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/require_from_group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/require_from_group.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/skip_or_fill_minimum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/skip_or_fill_minimum.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/statesUS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/statesUS.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/strippedminlength.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/strippedminlength.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/time.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/time12h.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/time12h.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/url2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/url2.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/vinUS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/vinUS.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/zipcodeUS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/zipcodeUS.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/additional/ziprange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/additional/ziprange.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/ajax.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/core.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_ar.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_az.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_bg.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_bn_BD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_bn_BD.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_ca.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_cs.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_da.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_de.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_el.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_es.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_es_AR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_es_AR.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_es_PE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_es_PE.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_et.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_eu.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_fa.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_fi.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_fr.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_ge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_ge.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_gl.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_he.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_hr.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_hu.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_hy_AM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_hy_AM.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_id.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_is.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_it.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_ja.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_ka.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_kk.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_ko.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_lt.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_lv.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_mk.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_my.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_nl.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_no.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_pl.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_pt_BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_pt_BR.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_pt_PT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_pt_PT.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_ro.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_ru.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_si.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_sk.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_sl.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_sr.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_sr_lat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_sr_lat.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_sv.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_th.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_tj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_tj.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_tr.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_uk.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_ur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_ur.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_vi.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_zh.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/messages_zh_TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/messages_zh_TW.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/methods_de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/methods_de.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/methods_es_CL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/methods_es_CL.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/methods_fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/methods_fi.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/methods_nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/methods_nl.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/src/localization/methods_pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/src/localization/methods_pt.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery-validation/validation.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery-validation/validation.jquery.json -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/AUTHORS.txt -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/README.md -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/bower.json -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/dist/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/dist/core.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/dist/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/dist/jquery.slim.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/dist/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/dist/jquery.slim.min.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/dist/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/dist/jquery.slim.min.map -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/external/sizzle/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/external/sizzle/LICENSE.txt -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/external/sizzle/dist/sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/external/sizzle/dist/sizzle.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/external/sizzle/dist/sizzle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/external/sizzle/dist/sizzle.min.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/external/sizzle/dist/sizzle.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/external/sizzle/dist/sizzle.min.map -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/.eslintrc.json -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/ajax.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/ajax/jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/ajax/jsonp.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/ajax/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/ajax/load.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/ajax/parseXML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/ajax/parseXML.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/ajax/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/ajax/script.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return window.location; 5 | } ); 6 | -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/ajax/var/nonce.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/ajax/var/rquery.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/ajax/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/ajax/xhr.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/attributes.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/attributes/attr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/attributes/attr.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/attributes/classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/attributes/classes.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/attributes/prop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/attributes/prop.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/attributes/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/attributes/support.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/attributes/val.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/attributes/val.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/callbacks.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/core.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/core/DOMEval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/core/DOMEval.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/core/access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/core/access.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/core/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/core/init.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/core/parseHTML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/core/parseHTML.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/core/ready-no-deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/core/ready-no-deferred.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/core/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/core/ready.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/core/readyException.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/core/readyException.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/core/stripAndCollapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/core/stripAndCollapse.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/core/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/core/support.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/core/var/rsingleTag.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/css.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/css/addGetHookIf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/css/addGetHookIf.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/css/adjustCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/css/adjustCSS.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/css/curCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/css/curCSS.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/css/hiddenVisibleSelectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/css/hiddenVisibleSelectors.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/css/showHide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/css/showHide.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/css/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/css/support.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/css/var/cssExpand.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/css/var/getStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/css/var/getStyles.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/css/var/isHiddenWithinTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/css/var/isHiddenWithinTree.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/css/var/rmargin.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/css/var/rnumnonpx.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/css/var/swap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/css/var/swap.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/data.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/data/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/data/Data.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/data/var/acceptData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/data/var/acceptData.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/data/var/dataPriv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/data/var/dataPriv.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/data/var/dataUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/data/var/dataUser.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/deferred.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/deferred/exceptionHook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/deferred/exceptionHook.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/deprecated.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/dimensions.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/effects.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/effects/Tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/effects/Tween.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/effects/animatedSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/effects/animatedSelector.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/event.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/event/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/event/ajax.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/event/alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/event/alias.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/event/focusin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/event/focusin.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/event/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/event/support.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/event/trigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/event/trigger.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/exports/amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/exports/amd.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/exports/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/exports/global.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/jquery.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/manipulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/manipulation.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/manipulation/_evalUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/manipulation/_evalUrl.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/manipulation/buildFragment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/manipulation/buildFragment.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/manipulation/getAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/manipulation/getAll.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/manipulation/setGlobalEval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/manipulation/setGlobalEval.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/manipulation/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/manipulation/support.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/manipulation/var/rcheckableType.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/manipulation/var/rscriptType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/manipulation/var/rscriptType.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/manipulation/var/rtagName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/manipulation/var/rtagName.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/manipulation/wrapMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/manipulation/wrapMap.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/offset.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/queue.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/queue/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/queue/delay.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/selector-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/selector-native.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/selector-sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/selector-sizzle.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() { 2 | "use strict"; 3 | } ); 4 | -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/serialize.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/traversing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/traversing.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/traversing/findFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/traversing/findFilter.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/traversing/var/dir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/traversing/var/dir.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/traversing/var/rneedsContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/traversing/var/rneedsContext.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/traversing/var/siblings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/traversing/var/siblings.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/var/ObjectFunctionString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/var/ObjectFunctionString.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return []; 5 | } ); 6 | -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | // [[Class]] -> type pairs 5 | return {}; 6 | } ); 7 | -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/var/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/var/concat.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/var/document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/var/document.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/var/documentElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/var/documentElement.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/var/fnToString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/var/fnToString.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/var/getProto.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return Object.getPrototypeOf; 5 | } ); 6 | -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/var/hasOwn.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/var/indexOf.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/var/pnum.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/var/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/var/push.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/var/rcssNum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/var/rcssNum.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/var/rnothtmlwhite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/var/rnothtmlwhite.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/var/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/var/slice.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/var/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/var/support.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/var/toString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/var/toString.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/jquery/src/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/jquery/src/wrap.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/.bower.json -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/LICENSE -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/README.md -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/bower.json -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/gulpfile.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/gulpfile.babel.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/material.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/material.css -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/material.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/material.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/material.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/material.min.css -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/material.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/material.min.css.map -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/material.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/material.min.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/material.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/material.min.js.map -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/package.json -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/INTRODUCTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/INTRODUCTION.md -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/_color-definitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/_color-definitions.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/_functions.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/_mixins.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/_variables.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/animation/_animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/animation/_animation.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/animation/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/animation/demo.css -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/animation/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/animation/demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/animation/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/animation/demo.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/badge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/badge/README.md -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/badge/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/badge/_badge.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/badge/snippets/badge-on-icon-icon-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/badge/snippets/badge-on-icon-icon-demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/badge/snippets/badge-on-icon-icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/badge/snippets/badge-on-icon-icon.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/badge/snippets/badge-on-icon-text-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/badge/snippets/badge-on-icon-text-demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/badge/snippets/badge-on-icon-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/badge/snippets/badge-on-icon-text.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/badge/snippets/badge-on-text-icon-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/badge/snippets/badge-on-text-icon-demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/badge/snippets/badge-on-text-icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/badge/snippets/badge-on-text-icon.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/badge/snippets/badge-on-text-text-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/badge/snippets/badge-on-text-text-demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/badge/snippets/badge-on-text-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/badge/snippets/badge-on-text-text.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/button/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/button/README.md -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/button/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/button/_button.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/button/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/button/button.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/button/snippets/fab-colored-ripple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/button/snippets/fab-colored-ripple.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/button/snippets/fab-colored.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/button/snippets/fab-colored.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/button/snippets/fab-disabled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/button/snippets/fab-disabled.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/button/snippets/fab-mini-colored.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/button/snippets/fab-mini-colored.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/button/snippets/fab-mini.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/button/snippets/fab-mini.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/button/snippets/fab-ripple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/button/snippets/fab-ripple.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/button/snippets/fab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/button/snippets/fab.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/button/snippets/flat-accent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/button/snippets/flat-accent.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/button/snippets/flat-disabled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/button/snippets/flat-disabled.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/button/snippets/flat-primary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/button/snippets/flat-primary.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/button/snippets/flat-ripple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/button/snippets/flat-ripple.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/button/snippets/flat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/button/snippets/flat.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/button/snippets/icon-colored.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/button/snippets/icon-colored.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/button/snippets/icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/button/snippets/icon.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/button/snippets/raised-accent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/button/snippets/raised-accent.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/button/snippets/raised-colored.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/button/snippets/raised-colored.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/button/snippets/raised-disabled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/button/snippets/raised-disabled.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/button/snippets/raised-ripple-accent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/button/snippets/raised-ripple-accent.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/button/snippets/raised-ripple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/button/snippets/raised-ripple.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/button/snippets/raised.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/button/snippets/raised.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/card/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/card/README.md -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/card/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/card/_card.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/card/snippets/event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/card/snippets/event.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/card/snippets/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/card/snippets/image.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/card/snippets/square.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/card/snippets/square.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/card/snippets/wide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/card/snippets/wide.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/checkbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/checkbox/README.md -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/checkbox/_checkbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/checkbox/_checkbox.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/checkbox/checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/checkbox/checkbox.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/checkbox/snippets/check-off.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/checkbox/snippets/check-off.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/checkbox/snippets/check-on.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/checkbox/snippets/check-on.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/chip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/chip/README.md -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/chip/_chip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/chip/_chip.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/chip/snippets/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/chip/snippets/basic.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/chip/snippets/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/chip/snippets/button.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/chip/snippets/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/chip/snippets/contact.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/chip/snippets/deletable-contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/chip/snippets/deletable-contact.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/chip/snippets/deletable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/chip/snippets/deletable.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/data-table/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/data-table/README.md -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/data-table/_data-table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/data-table/_data-table.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/data-table/data-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/data-table/data-table.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/data-table/snippets/data-table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/data-table/snippets/data-table.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/demos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/demos.css -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/dialog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/dialog/README.md -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/dialog/_dialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/dialog/_dialog.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/footer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/footer/README.md -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/footer/_mega_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/footer/_mega_footer.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/footer/_mini_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/footer/_mini_footer.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/footer/snippets/mega-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/footer/snippets/mega-footer.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/footer/snippets/mini-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/footer/snippets/mini-footer.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/grid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/grid/README.md -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/grid/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/grid/_grid.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/grid/snippets/codepen-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/grid/snippets/codepen-grid.css -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/grid/snippets/grid-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/grid/snippets/grid-demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/grid/snippets/grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/grid/snippets/grid.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/icon-toggle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/icon-toggle/README.md -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/icon-toggle/_icon-toggle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/icon-toggle/_icon-toggle.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/icon-toggle/icon-toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/icon-toggle/icon-toggle.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/icon-toggle/snippets/icon-off.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/icon-toggle/snippets/icon-off.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/icon-toggle/snippets/icon-on.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/icon-toggle/snippets/icon-on.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/images/buffer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/images/buffer.svg -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/images/tick-mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/images/tick-mask.svg -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/images/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/images/tick.svg -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/index.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/layout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/layout/README.md -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/layout/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/layout/_layout.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/layout/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/layout/layout.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/fixed-drawer-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/fixed-drawer-demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/fixed-drawer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/fixed-drawer.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/fixed-header-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/fixed-header-demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/fixed-header-drawer-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/fixed-header-drawer-demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/fixed-header-drawer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/fixed-header-drawer.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/fixed-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/fixed-header.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/fixed-tabs-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/fixed-tabs-demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/fixed-tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/fixed-tabs.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/scrollable-tabs-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/scrollable-tabs-demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/scrollable-tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/scrollable-tabs.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/scrolling-header-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/scrolling-header-demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/scrolling-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/scrolling-header.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/transparent-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/transparent-demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/transparent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/transparent.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/waterfall-header-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/waterfall-header-demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/waterfall-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/layout/snippets/waterfall-header.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/list/README.md -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/list/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/list/_list.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/list/snippets/action.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/list/snippets/action.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/list/snippets/icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/list/snippets/icon.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/list/snippets/list-control.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/list/snippets/list-control.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/list/snippets/list-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/list/snippets/list-item.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/list/snippets/three-line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/list/snippets/three-line.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/list/snippets/two-line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/list/snippets/two-line.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/material-design-lite-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/material-design-lite-grid.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/material-design-lite.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/material-design-lite.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/mdlComponentHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/mdlComponentHandler.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/menu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/menu/README.md -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/menu/_menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/menu/_menu.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/menu/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/menu/menu.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/menu/snippets/codepen-lower-buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/menu/snippets/codepen-lower-buttons.css -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/menu/snippets/codepen-top-buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/menu/snippets/codepen-top-buttons.css -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/menu/snippets/lower-left-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/menu/snippets/lower-left-demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/menu/snippets/lower-left.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/menu/snippets/lower-left.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/menu/snippets/lower-right-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/menu/snippets/lower-right-demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/menu/snippets/lower-right.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/menu/snippets/lower-right.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/menu/snippets/top-left-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/menu/snippets/top-left-demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/menu/snippets/top-left.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/menu/snippets/top-left.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/menu/snippets/top-right-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/menu/snippets/top-right-demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/menu/snippets/top-right.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/menu/snippets/top-right.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/palette/_palette.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/palette/_palette.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/palette/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/palette/demo.css -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/palette/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/palette/demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/progress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/progress/README.md -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/progress/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/progress/_progress.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/progress/progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/progress/progress.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/progress/snippets/progress-buffering-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/progress/snippets/progress-buffering-demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/progress/snippets/progress-buffering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/progress/snippets/progress-buffering.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/progress/snippets/progress-default-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/progress/snippets/progress-default-demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/progress/snippets/progress-default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/progress/snippets/progress-default.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/progress/snippets/progress-indeterminate-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/progress/snippets/progress-indeterminate-demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/progress/snippets/progress-indeterminate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/progress/snippets/progress-indeterminate.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/radio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/radio/README.md -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/radio/_radio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/radio/_radio.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/radio/radio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/radio/radio.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/radio/snippets/radio-off.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/radio/snippets/radio-off.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/radio/snippets/radio-on.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/radio/snippets/radio-on.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/resets/_h5bp.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/resets/_h5bp.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/resets/_mobile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/resets/_mobile.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/resets/_resets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/resets/_resets.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/ripple/_ripple.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/ripple/_ripple.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/ripple/ripple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/ripple/ripple.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/shadow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/shadow/README.md -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/shadow/_shadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/shadow/_shadow.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/shadow/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/shadow/demo.css -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/shadow/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/shadow/demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/slider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/slider/README.md -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/slider/_slider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/slider/_slider.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/slider/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/slider/slider.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/slider/snippets/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/slider/snippets/demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/slider/snippets/slider-default-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/slider/snippets/slider-default-demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/slider/snippets/slider-default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/slider/snippets/slider-default.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/slider/snippets/slider-starting-value-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/slider/snippets/slider-starting-value-demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/slider/snippets/slider-starting-value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/slider/snippets/slider-starting-value.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/snackbar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/snackbar/README.md -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/snackbar/_snackbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/snackbar/_snackbar.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/snackbar/snackbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/snackbar/snackbar.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/snackbar/snippets/snackbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/snackbar/snippets/snackbar.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/snackbar/snippets/toast.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/snackbar/snippets/toast.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/spinner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/spinner/README.md -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/spinner/_spinner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/spinner/_spinner.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/spinner/snippets/spinner-default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/spinner/snippets/spinner-default.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/spinner/snippets/spinner-single-color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/spinner/snippets/spinner-single-color.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/spinner/spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/spinner/spinner.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/styleguide.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/styleguide.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/switch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/switch/README.md -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/switch/_switch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/switch/_switch.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/switch/snippets/switch-off.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/switch/snippets/switch-off.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/switch/snippets/switch-on.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/switch/snippets/switch-on.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/switch/switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/switch/switch.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/tabs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/tabs/README.md -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/tabs/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/tabs/_tabs.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/tabs/snippets/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/tabs/snippets/tabs.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/tabs/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/tabs/tabs.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/template.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/template.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/textfield/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/textfield/README.md -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/textfield/_textfield.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/textfield/_textfield.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/textfield/snippets/textfield-expanding-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/textfield/snippets/textfield-expanding-demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/textfield/snippets/textfield-expanding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/textfield/snippets/textfield-expanding.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/textfield/snippets/textfield-floating-numeric-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/textfield/snippets/textfield-floating-numeric-demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/textfield/snippets/textfield-floating-numeric.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/textfield/snippets/textfield-floating-numeric.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/textfield/snippets/textfield-floating-text-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/textfield/snippets/textfield-floating-text-demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/textfield/snippets/textfield-floating-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/textfield/snippets/textfield-floating-text.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/textfield/snippets/textfield-multi-line-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/textfield/snippets/textfield-multi-line-demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/textfield/snippets/textfield-multi-line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/textfield/snippets/textfield-multi-line.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/textfield/snippets/textfield-numeric-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/textfield/snippets/textfield-numeric-demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/textfield/snippets/textfield-numeric.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/textfield/snippets/textfield-numeric.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/textfield/snippets/textfield-text-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/textfield/snippets/textfield-text-demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/textfield/snippets/textfield-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/textfield/snippets/textfield-text.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/textfield/textfield.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/textfield/textfield.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/third_party/rAF.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/third_party/rAF.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/tooltip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/tooltip/README.md -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/tooltip/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/tooltip/_tooltip.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/tooltip/snippets/tooltip-large.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/tooltip/snippets/tooltip-large.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/tooltip/snippets/tooltip-multiline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/tooltip/snippets/tooltip-multiline.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/tooltip/snippets/tooltip-rich.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/tooltip/snippets/tooltip-rich.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/tooltip/snippets/tooltip-simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/tooltip/snippets/tooltip-simple.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/tooltip/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/tooltip/tooltip.js -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/typography/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/typography/README.md -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/typography/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/typography/_typography.scss -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/typography/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/typography/demo.css -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/src/typography/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/src/typography/demo.html -------------------------------------------------------------------------------- /Sloth/wwwroot/lib/material-design-lite/utils/uniffe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonmoreau/Sloth/HEAD/Sloth/wwwroot/lib/material-design-lite/utils/uniffe.js --------------------------------------------------------------------------------