Merge pull request #3501 from dpalou/MOBILE-4081
MOBILE-4081 external-content: Set attribute for untreated urlsmain
commit
db0b5ecb95
|
@ -210,6 +210,9 @@ export class CoreExternalContentDirective implements AfterViewInit, OnChanges, O
|
|||
if (tagName === 'SOURCE') {
|
||||
// Restoring original src.
|
||||
this.addSource(url);
|
||||
} else if (url && !this.element.getAttribute(targetAttr)) {
|
||||
// By default, Angular inputs aren't added as DOM attributes. Add it now.
|
||||
this.element.setAttribute(targetAttr, url);
|
||||
}
|
||||
|
||||
throw new CoreError('Non-downloadable URL');
|
||||
|
|
Loading…
Reference in New Issue