>How are you referring to the assets in the template?In `interactive/index.html`, in the `<head>` tag, I have `<script src="scripts/main.js"></script>`
On Friday 03 March 2017 20:37:29 Tom Tanner wrote:
> When the iframe requests
> `/interactive`, it loads `interactive-1/index.html`.
But the iframe still loads /interactive. So it's base url is /interactive and a request for scripts/main.js is /interactive/scripts/main.js.
Unless you either:
1/ Do a redirect, which is the simplest
2/ Request your resources incorporating the session id
I still would go for 1/, simply because that fixes the disconnect between template path / view path and requested url.
--
Melvyn Sopacua