Skip to content

Instantly share code, notes, and snippets.

@jjhop
Created February 19, 2012 21:22
Show Gist options
  • Save jjhop/1865863 to your computer and use it in GitHub Desktop.
Save jjhop/1865863 to your computer and use it in GitHub Desktop.
render({request.xhr? ? :file : :partial => 'catalog/product_view'})
# jest zamiast tego
if request.xhr?
render :partial => 'catalog/product_view'
else
render 'catalog/product_view'
end
# co jak się dobrze zastanowić skraca się do
render request.xhr? ? :file : :partial => 'catalog/product_view'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment