info-formas-pago.component.ts
457 Bytes
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-formas-pago',
templateUrl: './info-formas-pago.component.html',
styleUrls: ['./info-formas-pago.component.scss']
})
export class InfoFormasPagoComponent implements OnInit {
constructor() {}
ngOnInit() {
this.mediaPantalla();
}
mediaPantalla() {
if ($('body').hasClass('media-pantalla')) {
$('#card1,#card2').addClass('media-pantalla');
}
}
}