Open
Description
Maybe, I'm missing something, but I have view that I need to disable xray on. In the controller, I've passed render xray: false
, and it does prevent it from rendering.
I've tried a bunch of combinations. This particular controller action has no other functionality. Here's everything that I've tried:
def show
render xray: false
end
def show
render 'show', xray: false
end
def show
respond_to do |format|
format.html{ render 'show', xray: false }
end
end
Any thoughts? Is this only not working for me? I've tried it on several different actions and controllers, but it initiates every time.
I'm running Rails 3.2.21 and I just updated to xray-rails 0.1.21. I am also using Turbolinks, but have tried by refreshing the page each time and it still stays enabled.