1
An application I am making creates a browser and provides the functionality by the web page that this 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 missing errors in the project.
The Javascript Imports excerpt is this one:
<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 moving the files back to their normal position. But how to fix it once and for all?
EDIT
I tried to change the Javascript build path of the project, but without success.