Created
July 8, 2009 09:07
-
-
Save sprite2005/142710 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 call_from_site_index | |
call_logic | |
get_additional_homepage_data | |
respond_to do |format| | |
format.js | |
end | |
end | |
def call_from_profile | |
call_logic | |
respond_to do |format| | |
format.js | |
end | |
end | |
def call_from_listings | |
call_logic | |
@selected_tags = cookies[:selected_tags].to_s.split(',') | |
@selected_tags.sort! | |
get_listings_and_tags | |
respond_to do |format| | |
format.js | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment