Sha256: fbd5610916481836d0e06be52f619c114cf81f432d90e241f53e61ca73686558

Contents?: true

Size: 990 Bytes

Versions: 7

Compression:

Stored size: 990 Bytes

Contents

# Stable::Rails

Scrollable table with fixed first row and column.

## Installation

Add this line to your application's Gemfile:

    gem 'stable-rails'

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install stable-rails

## Usage

In application.js include

    //= require stable

In application.css include

    *= require stable

To render a sample scrollable table

    - stable do
      - tr do
        - td 'L\N'
        - td 'Title 1'
        - td 'Title 2'
        - td 'Title 3'
        - td 'Title 4'
        - td 'Title 5'
      - ('a'..'z').each do |c|
        - tr do
          - td "Title #{c}"
          - td "#{c}1"
          - td "#{c}2"
          - td "#{c}3"
          - td "#{c}4"
          - td "#{c}5"

## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
stable-rails-0.0.7 README.md
stable-rails-0.0.6 README.md
stable-rails-0.0.5 README.md
stable-rails-0.0.4 README.md
stable-rails-0.0.3 README.md
stable-rails-0.0.2 README.md
stable-rails-0.0.1 README.md