Hi guys, i have two .js files that i'm registering with an ussual script tag at the top of the login page.
The thing is when i change the IsPublic web.config parameter to false, the js is not working. while i keep it to true, it works perfect.
Web.config
<add key="Scope" value="Global"/>
<!-- Private or Global -->
<add key="IsPublic" value="false"/>
js Registration
<script type="text/javascript" src="JavaScript/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="JavaScript/Login.js"></script>
I'm totally lost, any help will be appreciatted!