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
We had some issues with svg's who's data-src values were dynamic
e.g.
<svg data-src="{{$ctrl.path_to_svg"">
The main issue is that the directive was updating prior to the digest cycle completing, and because there was no $watch setup to listen for subsequent changes....
Feel free to copy the function link function below into the main code, and for everybody else who wants to run the fix in the interim you can use the following decorator...
We had some issues with svg's who's data-src values were dynamic
e.g.
<svg data-src="{{$ctrl.path_to_svg"">
The main issue is that the directive was updating prior to the digest cycle completing, and because there was no $watch setup to listen for subsequent changes....
Feel free to copy the function link function below into the main code, and for everybody else who wants to run the fix in the interim you can use the following decorator...
The text was updated successfully, but these errors were encountered: