Skip to content

Instantly share code, notes, and snippets.

@vangberg
Created May 30, 2009 22:17
Show Gist options
  • Save vangberg/120663 to your computer and use it in GitHub Desktop.
Save vangberg/120663 to your computer and use it in GitHub Desktop.
get '/:foo' do
if request.xhr?
...
else
...
end
end
get '/:foo' do
pass if request.xhr
...
end
get '/:foo' do
...
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment