Created
May 17, 2011 15:43
-
-
Save Fonsan/976718 to your computer and use it in GitHub Desktop.
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 MetaSearch | |
module Helpers | |
module UrlHelper | |
def order_indicator_for(order) | |
if order == 'asc' | |
'▲' # replace this with a string or nil | |
elsif order == 'desc' | |
'▼' # replace this with a string or nil | |
else | |
nil | |
end | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment