Skip to content

Instantly share code, notes, and snippets.

@Bondifrench
Created January 30, 2016 20:05
Show Gist options
  • Save Bondifrench/f4bce3795722c5d50a21 to your computer and use it in GitHub Desktop.
Save Bondifrench/f4bce3795722c5d50a21 to your computer and use it in GitHub Desktop.
A checkbox for Mithril by @JAForbes
var checkbox = function checkbox(label, prop) {
return m("label.checkbox-inline", m("input[type=checkbox]", {
checked: prop(),
onclick: m.withAttr("checked", prop)
}), _.capitalize(label));
};
@Bondifrench
Copy link
Author

A bootstrap checkbox. Receives a label string and an m.prop() for persistence

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment