diff --git a/modules/directive-duplications.md b/modules/directive-duplications.md index 78da565c..850d5077 100644 --- a/modules/directive-duplications.md +++ b/modules/directive-duplications.md @@ -4,8 +4,6 @@ Because we no longer define every component and directive directly in every comp Let's assume for a moment that by mistake, we have created two directives that target the same property: -> This example is a variation of the code found in the [official documentation](https://angular.io/docs/ts/latest/guide/ngmodule.html#!#resolve-conflicts). - _blue-highlight.directive.ts_ ```javascript @@ -74,8 +72,6 @@ We can see that in the template of our component, we are using the directive `ap The answer is: the text is going to be gray and the background yellow. -[View Example](https://plnkr.co/edit/yY3RRPDxf6urDfsMVNik?p=preview) - We are allowed to define multiple directives that target the same elements in the same module. What's going to happen is that Angular is going to do every transformation **in order**. ```javascript