This repository was archived by the owner on Apr 12, 2024. It is now read-only.
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
Breaking change introduced by assertValidDirectiveName in 1.3.16 #12169
Closed
Description
Hi,
I've found that my application fails to initialize after angular updated from 1.3.15 to 1.3.16 due to a new assertion in
https://github.com/angular/angular.js/blob/v1.3.16/src/ng/compile.js#L786
which requires directive name to start from a small letter.
I'm using a directive bounded to a class name and named with the first capital letter to initialize a 3d party plugin which originally requires an html like: <div class="Plugin"></div>
I've already fixed this from my side but I think minor update is not a place for such change.
Thank you.