Skip to content

Instantly share code, notes, and snippets.

@fivetwentysix
Created November 25, 2010 08:41
Show Gist options
  • Save fivetwentysix/715092 to your computer and use it in GitHub Desktop.
Save fivetwentysix/715092 to your computer and use it in GitHub Desktop.
# GET /replies/1
def show
if request.xhr?
@reply = Reply.find(params[:id])
render :partial => 'instruction_items/reply', :locals => {:reply => @reply}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment