Skip to content

Instantly share code, notes, and snippets.

@snelson
Created December 19, 2015 04:51
Show Gist options
  • Save snelson/e1c763c3660071a0a641 to your computer and use it in GitHub Desktop.
Save snelson/e1c763c3660071a0a641 to your computer and use it in GitHub Desktop.
class ApplicationController < ActionController::Base
layout :determine_layout
private
def determine_layout
request.headers['X-PJAX'] ? false : "application"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment