Skip to content

Instantly share code, notes, and snippets.

@StephenFluin
Created September 11, 2019 06:35
Show Gist options
  • Save StephenFluin/aa108d66553b70377fb425185db6c5d7 to your computer and use it in GitHub Desktop.
Save StephenFluin/aa108d66553b70377fb425185db6c5d7 to your computer and use it in GitHub Desktop.
import { Directive, ElementRef } from '@angular/core';
@Directive({
selector: 'img'
})
export class LazyImagesDirective {
constructor(ref: ElementRef) {
ref.nativeElement.loading = 'lazy';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment