mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-21 05:45:50 +00:00
23 lines
453 B
TypeScript
23 lines
453 B
TypeScript
|
|
import { Component, OnInit } from '@angular/core';
|
||
|
|
import { PopoverController } from '@ionic/angular';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'app-messages-options',
|
||
|
|
templateUrl: './messages-options.page.html',
|
||
|
|
styleUrls: ['./messages-options.page.scss'],
|
||
|
|
})
|
||
|
|
export class MessagesOptionsPage implements OnInit {
|
||
|
|
|
||
|
|
constructor(
|
||
|
|
private popoverController: PopoverController
|
||
|
|
) { }
|
||
|
|
|
||
|
|
ngOnInit() {
|
||
|
|
}
|
||
|
|
|
||
|
|
close(){
|
||
|
|
this.popoverController.dismiss();
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|