Slick Carousel for Rails 3.1+ asset pipeline
Add this line to your application's Gemfile:
gem 'slick_rails'
And then execute:
$ bundle
Or install it yourself as:
$ gem install slick_rails
add to js manifests
//= require slick
and to css manifest
*= require slick
Note: This plugin has custom fonts for dots and arrows and such. These are provided in /fonts (from the original repo) and are referred in the css.
If you want them make sure the asset pipeline will handle them with something like
config.assets.precompile += %w( .js .css *.css.scss .svg .eot .woff .ttf)
if you don't want them - ignore what I just wrote, and overwrite .slick-prev:before .slick-next:before .slick-dots li a:before
see instruction and full info in https://github.com/kenwheeler/slick
- Fork it ( http://github.com/guyisra/slick_rails/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request