mirror of
https://gitlab.com/walljm/dynamicbible.git
synced 2025-07-27 17:39:49 -04:00
FIX: missed a couple references in the templates when i simplified componend data passing
This commit is contained in:
parent
d21186be53
commit
979f9d3010
@ -1,24 +1,5 @@
|
|||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
<widget id="com.walljm.dynamicbible" version="3.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
|
<widget id="com.walljm.dynamicbible" version="3.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
|
||||||
<feature name="Keyboard">
|
|
||||||
<param name="android-package" value="io.ionic.keyboard.IonicKeyboard" />
|
|
||||||
<param name="onload" value="true" />
|
|
||||||
</feature>
|
|
||||||
<feature name="Whitelist">
|
|
||||||
<param name="android-package" value="org.apache.cordova.whitelist.WhitelistPlugin" />
|
|
||||||
<param name="onload" value="true" />
|
|
||||||
</feature>
|
|
||||||
<feature name="StatusBar">
|
|
||||||
<param name="android-package" value="org.apache.cordova.statusbar.StatusBar" />
|
|
||||||
<param name="onload" value="true" />
|
|
||||||
</feature>
|
|
||||||
<feature name="Device">
|
|
||||||
<param name="android-package" value="org.apache.cordova.device.Device" />
|
|
||||||
</feature>
|
|
||||||
<feature name="SplashScreen">
|
|
||||||
<param name="android-package" value="org.apache.cordova.splashscreen.SplashScreen" />
|
|
||||||
<param name="onload" value="true" />
|
|
||||||
</feature>
|
|
||||||
<name>Dynamic Bible</name>
|
<name>Dynamic Bible</name>
|
||||||
<description>A bible app designed for bible study</description>
|
<description>A bible app designed for bible study</description>
|
||||||
<author email="jason@walljm.com" href="http://dynamicbible.com/">Jason Wall</author>
|
<author email="jason@walljm.com" href="http://dynamicbible.com/">Jason Wall</author>
|
||||||
@ -51,12 +32,6 @@
|
|||||||
<splash density="port-xxhdpi" src="resources\android\splash\drawable-port-xxhdpi-screen.png" />
|
<splash density="port-xxhdpi" src="resources\android\splash\drawable-port-xxhdpi-screen.png" />
|
||||||
<splash density="port-xxxhdpi" src="resources\android\splash\drawable-port-xxxhdpi-screen.png" />
|
<splash density="port-xxxhdpi" src="resources\android\splash\drawable-port-xxxhdpi-screen.png" />
|
||||||
<preference name="loglevel" value="DEBUG" />
|
<preference name="loglevel" value="DEBUG" />
|
||||||
<preference name="webView" value="org.crosswalk.engine.XWalkWebViewEngine" />
|
|
||||||
<preference name="xwalkVersion" value="22+" />
|
|
||||||
<preference name="xwalkLiteVersion" value="xwalk_core_library_canary:17+" />
|
|
||||||
<preference name="xwalkCommandLine" value="--disable-pull-to-refresh-effect" />
|
|
||||||
<preference name="xwalkMode" value="embedded" />
|
|
||||||
<preference name="xwalkMultipleApk" value="true" />
|
|
||||||
<preference name="webviewbounce" value="false" />
|
<preference name="webviewbounce" value="false" />
|
||||||
<preference name="UIWebViewBounce" value="false" />
|
<preference name="UIWebViewBounce" value="false" />
|
||||||
<preference name="DisallowOverscroll" value="true" />
|
<preference name="DisallowOverscroll" value="true" />
|
||||||
@ -65,9 +40,9 @@
|
|||||||
<preference name="SplashMaintainAspectRatio" value="true" />
|
<preference name="SplashMaintainAspectRatio" value="true" />
|
||||||
<preference name="FadeSplashScreenDuration" value="300" />
|
<preference name="FadeSplashScreenDuration" value="300" />
|
||||||
<preference name="SplashScreen" value="screen" />
|
<preference name="SplashScreen" value="screen" />
|
||||||
<preference name="SplashScreenDelay" value="3000" />
|
<preference name="SplashScreenDelay" value="12000" />
|
||||||
<preference name="ShowSplashScreen" value="true" />
|
<preference name="ShowSplashScreen" value="true" />
|
||||||
<preference name="AutoHideSplashScreen" value="true" />
|
<preference name="AutoHideSplashScreen" value="false" />
|
||||||
<preference name="SplashShowOnlyFirstTime" value="false" />
|
<preference name="SplashShowOnlyFirstTime" value="false" />
|
||||||
<preference name="FadeSplashScreen" value="false" />
|
<preference name="FadeSplashScreen" value="false" />
|
||||||
</widget>
|
</widget>
|
||||||
|
@ -2,7 +2,6 @@ import { Component, ViewChild } from '@angular/core';
|
|||||||
import { Platform, MenuController, Nav } from 'ionic-angular';
|
import { Platform, MenuController, Nav } from 'ionic-angular';
|
||||||
import { StatusBar, Splashscreen } from 'ionic-native';
|
import { StatusBar, Splashscreen } from 'ionic-native';
|
||||||
import { SearchPage } from "../pages/search/search";
|
import { SearchPage } from "../pages/search/search";
|
||||||
import { SettingsPage } from "../pages/settings/settings";
|
|
||||||
import { PagesService } from "../services/pages-service";
|
import { PagesService } from "../services/pages-service";
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
import { Component, EventEmitter, Output, Input } from "@angular/core";
|
import { Component, EventEmitter, Output, Input } from "@angular/core";
|
||||||
import { BiblePassageResult } from "../../services/bible-service";
|
|
||||||
import { OpenData, CardItem } from "../../pages/search/search";
|
import { OpenData, CardItem } from "../../pages/search/search";
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<ion-item class="title strongs-title" padding>
|
<ion-item class="title strongs-title" padding>
|
||||||
<ion-icon name="paper" item-left></ion-icon> {{item.prefix}}{{cardItem.data.sn}}
|
<ion-icon name="paper" item-left></ion-icon> {{cardItem.data.prefix}}{{cardItem.data.sn}}
|
||||||
<button ion-button icon-only item-right large clear (click)="close()">
|
<button ion-button icon-only item-right large clear (click)="close()">
|
||||||
<ion-icon name="close-circle"></ion-icon>
|
<ion-icon name="close-circle"></ion-icon>
|
||||||
</button>
|
</button>
|
||||||
@ -15,7 +15,7 @@
|
|||||||
</p>
|
</p>
|
||||||
<template [ngIf]="cardItem.data.rmac !== null">
|
<template [ngIf]="cardItem.data.rmac !== null">
|
||||||
<h2>RMAC</h2>
|
<h2>RMAC</h2>
|
||||||
<b>{{item.rmac.id}}</b>
|
<b>{{cardItem.data.rmac.id}}</b>
|
||||||
<br>
|
<br>
|
||||||
<ul>
|
<ul>
|
||||||
<li *ngFor="let c of cardItem.data.rmac.d">
|
<li *ngFor="let c of cardItem.data.rmac.d">
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
import { EventEmitter, Component, Input, Output } from "@angular/core";
|
import { EventEmitter, Component, Input, Output } from "@angular/core";
|
||||||
import { Reference } from '../../libs/Reference';
|
import { Reference } from '../../libs/Reference';
|
||||||
import { OpenData, CardItem } from "../../pages/search/search";
|
import { OpenData, CardItem } from "../../pages/search/search";
|
||||||
import { StrongsResult } from "../../services/strongs-service";
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: "strongs",
|
selector: "strongs",
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
import { EventEmitter, Component, Input, Output } from "@angular/core";
|
import { EventEmitter, Component, Input, Output } from "@angular/core";
|
||||||
import { Reference } from '../../libs/Reference';
|
import { Reference } from '../../libs/Reference';
|
||||||
import { OpenData, CardItem } from "../../pages/search/search";
|
import { OpenData, CardItem } from "../../pages/search/search";
|
||||||
import { WordLookupResult } from "../../services/word-service"
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: "words",
|
selector: "words",
|
||||||
|
@ -58,7 +58,7 @@ export class UserProfile
|
|||||||
{
|
{
|
||||||
return {
|
return {
|
||||||
strongs_modal: true,
|
strongs_modal: true,
|
||||||
clear_search_after_query: true,
|
clear_search_after_query: false,
|
||||||
items: [],
|
items: [],
|
||||||
append_to_bottom: false,
|
append_to_bottom: false,
|
||||||
insert_next_to_item: false,
|
insert_next_to_item: false,
|
||||||
|
@ -4,14 +4,13 @@ import { Storage } from '@ionic/storage';
|
|||||||
|
|
||||||
import { StrongsModal } from '../../components/strongs-modal/strongs-modal';
|
import { StrongsModal } from '../../components/strongs-modal/strongs-modal';
|
||||||
|
|
||||||
import { BiblePassageResult, BibleService } from '../../services/bible-service';
|
import { BibleService } from '../../services/bible-service';
|
||||||
import { StrongsResult, StrongsService } from '../../services/strongs-service';
|
import { StrongsResult, StrongsService } from '../../services/strongs-service';
|
||||||
import { WordService } from '../../services/word-service';
|
import { WordService } from '../../services/word-service';
|
||||||
import { PagesService } from "../../services/pages-service";
|
import { PagesService } from "../../services/pages-service";
|
||||||
|
|
||||||
import { UserProfile } from '../../libs/UserProfile';
|
import { UserProfile } from '../../libs/UserProfile';
|
||||||
import { Reference } from '../../libs/Reference';
|
import { Reference } from '../../libs/Reference';
|
||||||
import { MyApp } from '../../app/app.component';
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
templateUrl: 'search.html',
|
templateUrl: 'search.html',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user