mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 21:06:06 +00:00
21cb7d5e96
- Create new folder for publications have been integrated. - Adicional touch to display the data in a more friendly way added.
29 lines
570 B
TypeScript
29 lines
570 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
import { ModalController, NavParams } from '@ionic/angular';
|
|
|
|
@Component({
|
|
selector: 'app-image-modal',
|
|
templateUrl: './image-modal.page.html',
|
|
styleUrls: ['./image-modal.page.scss'],
|
|
})
|
|
export class ImageModalPage implements OnInit {
|
|
imageUrl:string;
|
|
|
|
constructor(private modalController: ModalController,
|
|
private navParams: NavParams) {
|
|
this.imageUrl = this.navParams.get('imageUrl');
|
|
}
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
zoom(zoomIn:boolean){
|
|
|
|
}
|
|
|
|
close(){
|
|
this.modalController.dismiss();
|
|
}
|
|
|
|
}
|