You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
feat($compile): remove the preAssignBindingsEnabled flag
BREAKING CHANGE:
Previously, the $compileProvider.preAssignBindingsEnabled flag was supported.
To migrate your code:
1) If you specified `$compileProvider.preAssignBindingsEnabled(true)`, you
can remove that statement - since AngularJS 1.6.0 this is the default so your
app should still work even in AngularJS 1.6 after such removal. Afterwards,
migrating to AngularJS 1.7.0 shouldn't require any further action.
2) If you specified `$compileProvider.preAssignBindingsEnabled(true)`, first
migrate your code so that the flag can be flipped to `false`. The instructions
on how to do that are available in the "Migrating from 1.5 to 1.6" guide:
https://docs.angularjs.org/guide/migration#migrating-from-1-5-to-1-6
0 commit comments