Hi,
I am testing SP6 and I'm having an issue loading a resource file that contains a JavaScript library.
I have tried loading the resource file globally:
/* globals window */
window.Shared_Library = session.utils.include("123456789012345", false);
and locally:
var Shared_Library = session.utils.include("123456789012345", true);
Either method works fine in the traditional rendering engine, but if I switch to Slipstream, the library does not load and Shared_Library errors out as 'undefined'.
Has anyone else ran into this issue? Is there something special that needs to be done with resource files in Slipstream?
Thanks for your help!