Sha256: 00cf3736d71e93dc47ca948987964d5744dc19aad8b00a5e5ec9dc6acd94bada
Contents?: true
Size: 1.57 KB
Versions: 3
Compression:
Stored size: 1.57 KB
Contents
# Holder.js for Rails [![Build Status](https://img.shields.io/travis/NARKOZ/holder_rails.svg?style=flat)](https://travis-ci.org/NARKOZ/holder_rails) [![Gem Version](https://img.shields.io/gem/v/holder_rails.svg?style=flat)](https://rubygems.org/gems/holder_rails) Provides Holder.js to render image placeholders entirely on the client side. ## Installation Add to your Gemfile: ```ruby gem 'holder_rails' ``` and run: ```sh bundle install ``` ## Usage Add to your JavaScript manifest file: ```js //= require holder ``` For versions **less than 2.3.2**, if you're using [turbolinks](https://github.com/rails/turbolinks) don't forget to run `Holder` after `page:change` event: ```coffee $(document).bind 'page:change', -> Holder.run() ``` You can use `holder_tag` helper in your views: ```ruby holder_tag 100 # => <img data-src="holder.js/100x100/text:100x100/" src="" /> holder_tag '200x300' # => <img data-src="holder.js/200x300/text:200x300/" src="" /> holder_tag '200x300', 'Lorem ipsum' # => <img data-src="holder.js/200x300/text:Lorem ipsum/" src="" /> holder_tag '200x300', 'Lorem ipsum', 'social' # => <img data-src="holder.js/200x300/text:Lorem ipsum/social" src="" /> holder_tag '500x800', 'Example text', 'gray', :id => 'new', :class => 'special' # => <img class="special" data-src="holder.js/500x800/text:Example text/gray" id="new" src="" /> ``` For more information, check out [holder readme](https://github.com/imsky/holder#readme). ## Versioning holder_rails X.Y.Z == Holder.js X.Y.Z ## License Released under the BSD 2-clause license. See LICENSE.txt for details.
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
holder_rails-2.6.0 | README.md |
holder_rails-2.5.2 | README.md |
holder_rails-2.5.0 | README.md |