1
Is there any way we can find out which directives are being used on a page ?
Below follows an example
<div>
algumas coisas ...
<minhadiretiva></minhadiretiva>
<minhadiretiva1></minhadiretiva1>
<minhadiretiva2></minhadiretiva2>
outras coisas ...
</div>
And here’s the html from "my friend"
<div>
<minhadiretivafilha></minhadiretivafilha>
<minhadiretivafilha1></minhadiretivafilha1>
<minhadiretivafilha2></minhadiretivafilha2>
</div>
Question 1: How can I view the list of directives that have been used on this page ? (for example on the console or somewhere else)
The answer to this question should be
minhadiretiva, minhadiretivafilha, minhadiretivafilha1, minhadiretivafilha2, minhadiretiva1, minhadiretiva2
Question 2: If there is an answer to question 1, is there a way to "discover" the directives used using only the browser console ? Or do I need my directives to follow some kind of pattern ? (e.g., some attribute or something like that)
NOTE: I asked this same question in the gringo stackoverflow, but I did not get much interest from the community in answering this question. The idea is to bring that doubt here and see if our community is more interested in answering it.
If you by
console.log('Nome da diretiva');
it will display their name on the console.– celsomtrindade