This repository was archived by the owner on May 29, 2019. It is now read-only.
This repository was archived by the owner on May 29, 2019. It is now read-only.
Bug with accordion-group and ng-class #4172
Closed
Description
Hi,
since 0.13.3 I am getting parse errors when using accordion-group in combination with ng-class. This is being caused by this change ead15e3 .
You can test this with following example:
... <accordion-group ng-class="{'test' : isTest}"> ....
This results in following generated code:
... <accordion-group ng-class="{'test' : isTest} {'panel-open': isOpen}"> ....