Skip to content

Instantly share code, notes, and snippets.

@jordandobson
Forked from pat/application_controller.rb
Created June 15, 2009 22:37
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 jordandobson/130394 to your computer and use it in GitHub Desktop.
Save jordandobson/130394 to your computer and use it in GitHub Desktop.
# Three things to add:
# * before_filter call
# * action_has_layout? method (if you have one, combine them)
# * adjust_for_inline
#
class ApplicationController < ActionController::Base
# ...
before_filter :adjust_for_inline
# ...
private
# We don't want no stinking layout if it's an AJAX request.
def action_has_layout?
request.format != :inline && super
end
def adjust_for_inline
request.format = :inline if request.xhr?
end
# ...
end
# Add this line to your existing file.
# Jury's out on the best name for the pseudo-mimetype though.
Mime::Type.register_alias "text/html", :inline
# A long time ago, in an action far far away
def index
# ...
respond_to do |wants|
wants.inline {
# ideally use your own view (index.inline.erb)
render :text => 'success!'
}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment