Newer
Older
HoteleriaAdmin / src / app / authentication / 404 / not-found.component.ts
James Cuadrado on 26 May 2021 350 bytes init
import { Component, AfterViewInit } from '@angular/core';

@Component({
  selector: 'app-not-found',
  templateUrl: './not-found.component.html',
  styleUrls: ['not-found.component.css']
})
export class NotFoundComponent implements AfterViewInit {
  ngAfterViewInit() {
    $(function() {
      $('.preloader').fadeOut();
    });
  }
}