MOBILE-3074 format-text: No magnifying glasses for images inside links
parent
90f340aaa5
commit
7507e93068
|
@ -168,6 +168,11 @@ export class CoreFormatTextDirective implements OnChanges {
|
||||||
const elWidth = this.getElementWidth(this.element) || window.innerWidth;
|
const elWidth = this.getElementWidth(this.element) || window.innerWidth;
|
||||||
|
|
||||||
imgs.forEach((img: HTMLImageElement) => {
|
imgs.forEach((img: HTMLImageElement) => {
|
||||||
|
// Skip image if it's inside a link.
|
||||||
|
if (img.closest('a')) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
let imgWidth = parseInt(img.getAttribute('width'));
|
let imgWidth = parseInt(img.getAttribute('width'));
|
||||||
if (!imgWidth) {
|
if (!imgWidth) {
|
||||||
// No width attribute, use real size.
|
// No width attribute, use real size.
|
||||||
|
|
Loading…
Reference in New Issue