This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit 1de88a089f4b29a3b997569afa8a9dfc1398efd9
tree 95ec794f75a7778265895e41584e7e780273cfc7
parent fc3e9213c6cbe1573f0932be44d775b1f874412c
tree 95ec794f75a7778265895e41584e7e780273cfc7
parent fc3e9213c6cbe1573f0932be44d775b1f874412c
| name | age | message | |
|---|---|---|---|
| |
MIT-LICENSE | ||
| |
README | ||
| |
Rakefile | ||
| |
init.rb | ||
| |
install.rb | ||
| |
lib/ | ||
| |
tasks/ | ||
| |
test/ | ||
| |
uninstall.rb |
README
== class_inputs This is a super-simple view extension for Rails. It just adds helpful class names to all Rails-generated +input+ tags to make it easier to style them. So, by default Rails gives you: text_field_tag(:foo, :class => 'something') # => <input class="something" id="foo" name="foo" type="text" /> f.check_box(:bar) # => <input id="record_bar" name="record[bar]" type="checkbox" value="1" /> With classy_inputs installed, you get: text_field_tag(:foo, :class => 'something') # => <input class="something text" id="foo" name="foo" type="text" /> f.check_box(:bar) # => <input class="checkbox" id="record_bar" name="record[bar]" type="checkbox" value="1" /> Copyright (c) 2008 James Coglan, released under the MIT license








