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 May 29, 2019. It is now read-only.
Just discovered that our carousels won't work when deploying to production.
Problem found was in beforeRemoveClass function:
if (className == 'active' && element.parent() &&
!element.parent().scope().noTransition)
where .scope() and .isolateScope() is undefined with debugInfoEnabled = false as per angular/angular.js#9515.
Setting it to true is a fix but not a good option for deployment.
Just discovered that our carousels won't work when deploying to production.
Problem found was in beforeRemoveClass function:
where .scope() and .isolateScope() is undefined with debugInfoEnabled = false as per angular/angular.js#9515.
Setting it to true is a fix but not a good option for deployment.
check http://plnkr.co/edit/g4zOqw
The text was updated successfully, but these errors were encountered: