If I specify a layout in a controller:
class MyController < ApplicationController
layout “some_layout”
end
Any JS request will use the some_layout. I thought certain requests
types were exempt from layouts? When I remove the layout call everything
works perfect, the problem is that it uses the application layout.
Any ideas why this is or how I can fix this?
thanks!