Is it possible to import all files in a directory with just one call working with JSP ?
Today I have the following:
<script src="../resources/js/angular/directive/layout/mensagem.js"
charset="utf-8"></script>
<script src="../resources/js/angular/directive/layout/cabecalho-interno.js"
charset="utf-8"></script>
I want something of the genre:
<script src="../resources/js/angular/directive/layout/*.js"
charset="utf-8"></script>