Skip to content

Instantly share code, notes, and snippets.

@sshkarupa
Forked from aaronmoodie/gist:1308100
Last active August 29, 2015 14:26
Show Gist options
  • Save sshkarupa/a2085fb286833aedaed6 to your computer and use it in GitHub Desktop.
Save sshkarupa/a2085fb286833aedaed6 to your computer and use it in GitHub Desktop.
Sinatra: render template partial without layout when requested va Ajax
if request.xhr?
# renders :template_partial without layout.html
slim :template_partial, :layout => false
else
# renders as normal inside layout.html
slim :template_partial
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment