I'm in the process of creating an application that utilizes both dirPagination and AngularJS material. Unfortunately, I'm facing issues when trying to add the ngMaterial dependency to my application. While the angularUtils.directives.dirPagination dependency functions correctly, introducing ngMaterial causes my AngularJS app to crash.
Here's an example on Plunker (https://plnkr.co/edit/7N7i9TnMc77Nz6xlNhuk?p=preview) showcasing the problem. In the app.js file where I define the module, both dependencies are included. If the line is:
angular.module('myApp', ['angularUtils.directives.dirPagination', 'ngMaterial']);
The AngularJS app crashes and the page displays {{hello}}. However, if I modify the line in the controller to:
angular.module('myApp', ['angularUtils.directives.dirPagination']);
The page shows "Hello Plunker!" as expected since $scope.hello is set to "Hello Plunker!" in the controller.
Can you help me troubleshoot this issue?
Thank you for your assistance!