I added the resources plug-in in a grails 1.3.7 application and everything works fine except javascript that is loaded asynchronously.
So if I have a template that conta
A better approach would be to have a dedicated layout for your AJAX responses:
If you're using Grails 2.0, you can specify the layout in the render method (render template: "...", layout: "ajax"). Otherwise, use layout by convention.
render template: "...", layout: "ajax"