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.
AngularJS 1.5 directive link execution order #13884
Open
Description
Hello,
Does AngularJS 1.5 change the directive link execution order?
Suppose that you have
- ParentDirective
- ChildDirective
In 1.4.8 the execution would be
- ParentDirective: pre-link
- ChildDirective: controller
- ChildDirective: pre-link
- ChildDirective: post-link
- ParentDirective: post-link
in 1.5.0 the execution of ParentDirective's postlink was done before ChildDirective's postlink