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 Apr 12, 2024. It is now read-only.
Do you want to request a feature or report a bug?
Bug report.
What is the current behavior?
We're seeing an internal Angular error:
TypeError: Cannot read property 'split' of undefined
when trying to use ng-attr-srcset, where the expression can be potentially undefined. To reproduce,:
<img data-ng-attr-srcset="{{undefined}}">
What is the expected behavior?
Normally, ng-attr-defined attributes are supposed to be ignored if the associated value is undefined, but in this case, we're hitting an error:
// split srcset into tuple of uri and descriptor except for the last item
var rawUris = trimmedSrcset.split(pattern);
where trimmedSrcset is undefined under the above situation.
What is the motivation / use case for changing the behavior?
ng-attr is breaking with regards to "srcset". It should be consistent with ng-attr's behavior of undefined for other attribute names. What's happening is an internal error that should be fixed, since it's in the framework rather than application code.
Which versions of Angular, and which browser / OS are affected by this issue? Did this work in previous versions of Angular? Please also test with the latest stable and snapshot (https://code.angularjs.org/snapshot/) versions.
Angular 1.5.
The text was updated successfully, but these errors were encountered:
Previously, calling `Attributes#$set('srcset', value)` on an `<img>` element would throw if `value`
were undefined, as it assumed `value` is always a string.
This commit fixes the issue, by skipping the unnecessary string manipulation when `value` is not
defined.
Closes#14470Closes#14493
Previously, calling `Attributes#$set('srcset', value)` on an `<img>` element would throw if `value`
were undefined, as it assumed `value` is always a string.
This commit fixes the issue, by skipping the unnecessary string manipulation when `value` is not
defined.
Closes#14470Closes#14493
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Do you want to request a feature or report a bug?
Bug report.
What is the current behavior?
We're seeing an internal Angular error:
when trying to use ng-attr-srcset, where the expression can be potentially undefined. To reproduce,:
What is the expected behavior?
Normally, ng-attr-defined attributes are supposed to be ignored if the associated value is undefined, but in this case, we're hitting an error:
where trimmedSrcset is undefined under the above situation.
What is the motivation / use case for changing the behavior?
ng-attr is breaking with regards to "srcset". It should be consistent with ng-attr's behavior of undefined for other attribute names. What's happening is an internal error that should be fixed, since it's in the framework rather than application code.
Which versions of Angular, and which browser / OS are affected by this issue? Did this work in previous versions of Angular? Please also test with the latest stable and snapshot (https://code.angularjs.org/snapshot/) versions.
Angular 1.5.
The text was updated successfully, but these errors were encountered: