sebastyuiop / bootstrap_helperized

A work in progress on various helper methods for easily creating Bootstrap html.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bootstrap Helperized

Code Climate

Some (one so far) helper methods for creating Bootstrap HTML.

Installation

Add this line to your application's Gemfile:

gem 'bootstrap_helperized'

And then execute:

$ bundle

Or install it yourself as:

$ gem install bootstrap_helperized

Modal box

If you're using Ajax to send in the form:

= standard_modal_box(:id => 'new_user', :title => 'New user')

If you want to add the form beforehand you can pass as a block:

= standard_modal_box(:id => 'new_user', :title => 'New user') do
  = YOUR FORM HERE

To trigger the modal box:

= link_to 'New user', '#new_user', :class => 'btn', 'data-toggle' => 'modal'

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

About

A work in progress on various helper methods for easily creating Bootstrap html.

License:MIT License


Languages

Language:Ruby 100.0%