I am currently attempting to run the official example of the angular-calendar component found at http://angular-ui.github.io/ui-calendar/
Unfortunately, I am encountering an error that states: TypeError: undefined is not a function - it seems that the function scope.calendar.fullCalendar is undefined
Below are the JS files that I have included:
<script src="../public/components/angular/angular.js"></script>
<script src="../public/components/angular-bootstrap/ui-bootstrap-tpls.min.js"></script>
<script src="../public/components/jquery/jquery.min.js"></script>
<script src="../public/components/jquery-ui/ui/minified/jquery-ui.min.js"></script>
<script src="../public/components/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="../public/components/fullcalendar/fullcalendar.js"></script>
<script src="../public/components/fullcalendar/gcal.js"></script>
<script src="../public/components/angular-ui-calendar/src/calendar.js"></script>
<script src="../public/components/fullcalendar/gcal.js"></script>
If anyone could provide assistance in identifying and resolving this issue, it would be greatly appreciated. Thank you!