Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 353 Bytes

File metadata and controls

25 lines (19 loc) · 353 Bytes

meteor reactive icheck

Provide a reactive template for creating iCheck checkboxes.

Example

test.html

<template name="test">
    {{> iCheck onChanged=onChangedCallback}}
</template>

test.js

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