Created
September 9, 2013 07:58
-
-
Save zillou/6492675 to your computer and use it in GitHub Desktop.
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
def nav_link_to(link_text, link_path) | |
class_name = current_page?(link_path) ? 'selected' : '' | |
content_tag(:li, class: class_name) do | |
link_to link_text, link_path | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
link_to_unless_current
maybe a better choice