Created
February 1, 2013 09:10
-
-
Save maylogger/4690240 to your computer and use it in GitHub Desktop.
nav link has current status
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module ViewHelpers | |
| def nav_link_to(name, href, options={}) | |
| if href == request.path | |
| active = "active" | |
| end | |
| content_tag(:li, link_to(name, href, options), :class => active ) | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment