An open API service indexing awesome lists of open source software.

https://github.com/apiko-dev/icheck


https://github.com/apiko-dev/icheck

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

          

# meteor reactive icheck

Provide a reactive template for creating iCheck checkboxes.

## Example

`test.html`

```

{{> iCheck onChanged=onChangedCallback}}

```

`test.js`

```js
Template.test.helpers({
onChangedCallback() {
return isChecked => {
// do something...
}
}
});
```