I have two class-restricted directives, named fooThing and barThing.
I have a variable, baz, in my template scope that is set to either foo or bar.
How can I use that scope variable in the name of the directive for an element?
When I do <div class="{{baz}}-thing"></div>, {{baz}} is replaced properly, but the directive is not loaded.
When I do <div class="foo-thing"></div>, the directive is loaded properly.
I have a hunch that this has something to do with Angular's digest/compile cycle, but I'm afraid I don't know how to work around it.
How can I get Angular to compile that part of the template first so that my expression is evaluated, and then have it compile again so it recognizes it as a directive?
priorityproperty of the directive definition. – tosh shimayama Feb 14 at 5:54priorityonly applies to the order in which directives are compiled. My problem is that my directive is never recognized in the first place. – jingman Feb 14 at 6:05