mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 21:06:06 +00:00
26 lines
504 B
TypeScript
26 lines
504 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-video-allowed',
|
|
templateUrl: './video-allowed.page.html',
|
|
styleUrls: ['./video-allowed.page.scss'],
|
|
})
|
|
export class VideoAllowedPage implements OnInit {
|
|
modalController: any;
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
dismiss() {
|
|
// using the injected ModalController this page
|
|
// can "dismiss" itself and optionally pass back data
|
|
this.modalController.dismiss({
|
|
'dismissed': true
|
|
});
|
|
}
|
|
}
|
|
|
|
|