I'm currently in the process of learning AngularJS and attempting to recreate something I saw in a tutorial video. However, I've run into a bit of trouble with two errors popping up:
Uncaught Error: No module: ui.directives
Uncaught Error: No module: ui.directives.sortable
In my app.js file, I have followed the instructions provided on GitHub:
angular.module('507917App', ['ui.directives.sortable'])
Additionally, I made sure to add this line of code:
<script type="text/javascript" src="modules/directives/sortable/src/sortable.js"></script>
After checking the file path, it seems that the definition for ui.directives is included:
angular.module('ui.directives').directive('uiSortable', [...
Question
I am just wondering if there's anything obvious that I may have missed or done incorrectly. Why am I encountering these errors?