Created
December 3, 2012 19:12
-
-
Save doombongo/4197199 to your computer and use it in GitHub Desktop.
current is a red arrow sitting next to the nav link
This file contains 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
<li> <%= link_to "About Us", about_path, class: "#{cp(about_path)} link" %></li> |
This file contains 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 ApplicationHelper | |
def cp(*paths) | |
paths.each do |path| | |
"current" if current_page?(path) | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment