meteor-autoform-materialize
Version:
Materialize theme for Autoform
11 lines (10 loc) • 328 B
HTML
<template name="afSwitch">
<div class="switch">
<label for="{{atts.id}}">
{{#with atts.falseLabel}}{{this}}{{else}}Off{{/with}}
<input type="checkbox" value="{{this.value}}" {{atts}}>
<span class="lever"></span>
{{#with atts.trueLabel}}{{this}}{{else}}On{{/with}}
</label>
</div>
</template>