Here is the content of my view:
<headers>
<h1>My Page</h1>
</headers>
<link rel="stylesheet" href="css/some.css"/>
<script ng-src="js/my-view-script.js"></script>
After loading the view, I noticed that the script file is not being fetched. I even tried using
<script src="js/my-view-script.js"></script>
but encountered the same issue.
Can anyone guide me on how to load a script file for a single view only?
Thanks in advance!
Michael