This repository was archived by the owner on Oct 2, 2019. It is now read-only.
This repository was archived by the owner on Oct 2, 2019. It is now read-only.
Angular 1.5.x with ngAnimate still do multiple $digest #1502
Open
Description
Hi,
after updating angular 1.5.1 with ngAnimate is still there bug with multiple triggering $digest.
Problem - Multiple opening same uiSelect triggering duplicity $digest`s.
This bug was ignored with reference to bug on ngAnimate 1.5.0.
Im updated uiSelect 0.16.0 but still its not working propertly.
For now i changed code like this:
ctrl.$animate = (function () {
try {
// return $injector.get('$animate');
return null;
} catch (err) {
// $animate does not exist
return null;
}
})();