Hey there, I've got a question for the experts. How can I prevent conflicts with directive names when using external modules? Right now, I'm utilizing the angular bootstrap module, but I also downloaded another module specifically for its carousel feature. The issue is that both modules have directives named carousel
, which is causing headaches when included in my module.
var app = angular.module('text', ['fundoo.directives', 'ui.bootstrap']);
Any suggestions on how to tackle this dilemma?