indicaciones-pago-tarjeta.component.ts 511 Bytes
import { Component, OnInit, OnChanges } from '@angular/core';

@Component({
  selector: 'app-indicaciones-pago-tarjeta',
  templateUrl: './indicaciones-pago-tarjeta.component.html',
  styleUrls: ['./indicaciones-pago-tarjeta.component.scss']
})
export class IndicacionesPagoTarjetaComponent implements OnInit {
  constructor() { }

  ngOnInit() {
    this.mediaPantalla();
  }

  mediaPantalla() {
    if ($('body').hasClass('media-pantalla')) {
     $('.reduce-card-1').addClass('media-pantalla');
    }
  }
}