An app I'm doing creates a browser and provides the functionality for the webpage that that browser displays.
The page makes use of AngularJS
to work, and has absolutely no problem with the project, it works normally.
The problem is that Eclipse returns errors that do not exist in the project.
The JavaScript import snippet is this here:
<script type="text/javascript" src="js/jquery-2.0.3.min.js"></script>
<script type="text/javascript" src="js/angular.min.js"></script>
<script type="text/javascript" src="js/angular-route.min.js"></script>
<script type="text/javascript" src="js/app/app.js"></script> <!-- Erro acusado aqui -->
<script type="text/javascript" src="js/app/app.services.js"></script> <!-- Erro acusado aqui -->
<script type="text/javascript" src="js/app/app.directives.js"></script> <!-- Erro acusado aqui -->
<script type="text/javascript" src="js/app/app.controllers.js"></script> <!-- Erro acusado aqui -->
<script type="text/javascript" src="js/hopscotch.min.js"></script>
<script type="text/javascript" src="js/jqGrid/jquery.jqGrid.min.js"></script> <!-- Erro acusado aqui -->
I can solve this problem by moving and returning the files to their normal position. But how do you fix this once and for all?
EDIT
I tried to change the JavaScript build path of the project, but to no avail.