Can I prevent angular watcher creation for element attributes using bind-once or angular-once directive?
I am using Angular Once directive.
How to use in following
<div contentKey={{conKey}}></div>
This working fine
Before Angular Once
<div>{{conKey}}</div>
After Angular Once
<div><any once-text="conKey"></any></div>