Question

Is it possible for 2 directives to use the same linking function? They have different templates but are otherwise the same. They don't require each other so I don't want to use transcluded / require. Any ideas?

Was it helpful?

Solution

Create a factory/service which implements your logic and inject it in both directives. Call it in both link functions. Done.

OTHER TIPS

you really don't want to do this as directives create their own scope once isolated. also they have their own element, attrs values to pass on.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top