Skip to content

Instantly share code, notes, and snippets.

@dbollinger
dbollinger / app-theme.scss
Last active October 12, 2019 15:48
ember modifier for material design ripple
$primary: blue;
$secondary: yellow; // 👹
@dbollinger
dbollinger / ember-form.hbs
Last active March 3, 2020 19:16
ember form component with yup validation
<div role="form" class="ember-form">
{{yield (hash
errors=this.formErrors
formset=formset
updateField=(action "updateField")
validateField=(action "validateField")
validateForm=(action "validateForm")
clearField=(action "clearField")
submit=(action "submitForm")
cancel=(action "revertForm")