mirror of
https://gitlab.com/walljm/dynamicbible.git
synced 2025-07-27 09:29:59 -04:00
22 lines
537 B
TypeScript
22 lines
537 B
TypeScript
![]() |
import {Component} from "@angular/core";
|
||
|
import { ModalController, Platform, NavParams, ViewController } from 'ionic-angular';
|
||
|
|
||
|
@Component({
|
||
|
selector: "strongs-modal",
|
||
|
templateUrl: "strongs-modal.html"
|
||
|
})
|
||
|
export class StrongsModal {
|
||
|
item: StrongsResult;
|
||
|
|
||
|
constructor(
|
||
|
public platform: Platform,
|
||
|
public params: NavParams,
|
||
|
public viewCtrl: ViewController
|
||
|
) {
|
||
|
this.item = this.params.get('strongsid') as StrongsResult;
|
||
|
}
|
||
|
|
||
|
dismiss() {
|
||
|
this.viewCtrl.dismiss();
|
||
|
}
|
||
|
}
|