In my current project, I am utilizing version 0.3.1
of ui-router
.
Within my custom directive, there is a <ui-view></ui-view>
tag present.
<div >
<button type="button" class="btn btn-primary btn-circle btn-lg pull-left" ui-sref="users.adduser"><i class="fa fa-plus"></i></button>
</div>
<ui-view></ui-view>
The console displays the following error:
angular.js:13708 TypeError: Cannot read property '$$animLeave' of undefined
at angular-ui-router.min.js:7
at angular.js:16170
at m.$eval (angular.js:17444)
at m.$digest (angular.js:17257)
at angular.js:17483
at e (angular.js:5955)
at angular.js:6234
I am concerned about the functionality of ui-router
. Could this issue be attributed to a bug
within version 0.3.1
?
If not, what could possibly be causing this error in my implementation?