mirror of
https://gitlab.com/walljm/dynamicbible.git
synced 2025-07-26 17:10:11 -04:00

* added jasmine and karma (they don't work yet...) * fixed bug in strongs display (hebrews failed because of no rmac) * added option to append to bottom of list instead of top * fixed duplicate es6 shim reference * added function to automatically upgrade user profile
35 lines
1.1 KiB
HTML
35 lines
1.1 KiB
HTML
<ion-header>
|
|
<ion-toolbar>
|
|
<ion-title>
|
|
Strongs: {{item.prefix}}{{item.sn}}
|
|
</ion-title>
|
|
<ion-buttons start>
|
|
<button ion-button (click)="dismiss()" large>
|
|
<ion-icon name="md-close"></ion-icon>
|
|
</button>
|
|
</ion-buttons>
|
|
</ion-toolbar>
|
|
</ion-header>
|
|
<ion-content padding>
|
|
<br>
|
|
<h2>Strongs Definitition</h2>
|
|
<p>
|
|
<b>{{item.def.tr}} ({{item.def.sn}})</b> - {{item.def.p}} - {{item.def.lemma}} - <span [innerHTML]="item.def.de"></span><br>
|
|
</p>
|
|
<template [ngIf]="item.rmac !== null">
|
|
<h2>Robinsons Morphalogical Analysis Code</h2>
|
|
<b>{{item.rmac.id}}</b>
|
|
<br>
|
|
<ul>
|
|
<li *ngFor="let c of item.rmac.d">
|
|
{{c}}
|
|
</li>
|
|
</ul>
|
|
</template>
|
|
<h2>Cross References</h2>
|
|
<dl>
|
|
<dd *ngFor="let wrd of item.crossrefs.ss">
|
|
{{wrd.w}}: <span *ngFor="let p of wrd.rs"><a (click)="openPassage(p.r)">{{makePassage(p.r)}}</a>, </span>
|
|
</dd>
|
|
</dl>
|
|
</ion-content> |