Skip to content

Instantly share code, notes, and snippets.

@sprite2005
Created July 8, 2009 09:07
Show Gist options
  • Save sprite2005/142710 to your computer and use it in GitHub Desktop.
Save sprite2005/142710 to your computer and use it in GitHub Desktop.
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