I deployed an upgrade package on a test site to the latest version of dnn. Now whenever I login as a non-admin all my angularjs doesn't function because "jQuery is not defined". There must be a flag somewhere that got changed to exclude it when non-admins visit the page. Is there a simple fix? I've read to add it to my skin object like so:
<%@ Register TagPrefix="dnn" TagName="JQUERY" Src="~/Admin/Skins/jQuery.ascx" %> <dnn:JQUERY ID="dnnjQuery" runat="server" />
I've added these lines to my Home.ascx then recompiled and installed but that did nothing. I do notice in my SkinBase.cs I have
public class SkinBase : Skin
{
protected void Page_Load(object sender, EventArgs e)
{
JavaScript.RequestRegistration(CommonJs.jQuery);
}
}
Shouldn't this force jQuery regardless? I'm not sure why this and only this install isn't working for non-admins...