Skip to content

Instantly share code, notes, and snippets.

@nateberkopec
Created June 11, 2012 14:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nateberkopec/2910474 to your computer and use it in GitHub Desktop.
Save nateberkopec/2910474 to your computer and use it in GitHub Desktop.
# in ApplicationController
layout :set_layout
def set_layout
# If this is a PJAX request, don't render a layout.
request.headers['X-PJAX'] ? false : 'application'
end
# in PagesController
layout :pages
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment