mewben / ember-cli-icheck

iCheck add-on for ember-cli
2 stars 8 forks source link

ember-cli-icheck

ember-cli addon component for iCheck

Update: Not maintained anymore.

Installation

Usage

Configuration

The default configuration does only import square theme with blue tone, if you want to use a diferent color or theme you can import the files on your own or just configure the plugin to do so. The configuration should be done in your config/enviroment.js file, for example if you want to use flat green theme you should add this:

module.exports = function(environment) {
  var ENV = {
    // ... 
    emberCliIcheck: {
      colors: ['green'],
      skins: ['flat']
    }
  };
}