I'm developing a project, but even though it imports all the CDNs, the angular and the materialize, the materialize JavaScript does not want to work along with the angular, is there some kind of conflict?
Importing files:
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular.min.js"/><scriptsrc="js/lib/angular-route.js"/>
<script src="js/lib/angular-resource.js"/>
<script src="js/main.js"></script>
<script src="js/controllers/contatos-controller.js"/>
<script src="js/controllers/contato-controller.js"/>
<script src="js/directives/minhas-diretivas.js"/>
<script src="js/services/meus-servicos.js"/>
<script src="https://code.jquery.com/jquery-2.1.1.min.js"/><scriptsrc="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.6/js/materialize.min.js"/>
On the console it only displays the error:
Uncaught ReferenceError: $ is not defined(anonymous function) @materialize.min.js:6',..
Note: I already imported the jquery cdn!