Remove Layouts from Ajax Requests


/ Published in: Rails
Save to your folder(s)



Copy this code and paste it in your HTML
  1. def render(*args)
  2. args.first[:layout] = false if request.xhr? and args.first[:layout].nil?
  3. super
  4. end

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.