targetj 1.0.20 → 1.0.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "targetj",
3
- "version": "1.0.20",
3
+ "version": "1.0.22",
4
4
  "keywords": [
5
5
  "targetj"
6
6
  ],
package/src/App.js CHANGED
@@ -10,8 +10,8 @@ import { TModelManager } from "./TModelManager.js";
10
10
  import { TUtil } from "./TUtil.js";
11
11
  import { TargetManager } from "./TargetManager.js";
12
12
 
13
-
14
13
  var tapp;
14
+
15
15
  function App(uiFn, rootId) {
16
16
 
17
17
  function my() {}
package/src/Bracket.js CHANGED
@@ -1,5 +1,6 @@
1
1
  import { TModel } from "./TModel.js";
2
2
  import { TUtil } from "./TUtil.js";
3
+ import { tapp } from "./App.js";
3
4
 
4
5
  function Bracket(parent) {
5
6
 
@@ -2,6 +2,8 @@ import { $Dom } from "./$Dom.js";
2
2
  import { browser } from "./Browser.js";
3
3
  import { SearchUtil } from "./SearchUtil.js";
4
4
  import { TUtil } from "./TUtil.js";
5
+ import { tapp } from "./App.js";
6
+
5
7
 
6
8
  function EventListener() {
7
9
 
@@ -1,6 +1,7 @@
1
1
  import { $Dom } from "./$Dom.js";
2
2
  import { browser } from "./Browser.js";
3
3
  import { TUtil } from "./TUtil.js";
4
+ import { tapp } from "./App.js";
4
5
 
5
6
  function LoadingManager() {
6
7
 
@@ -1,6 +1,8 @@
1
1
  import { Bracket } from "./Bracket.js";
2
2
  import { TUtil } from "./TUtil.js";
3
3
  import { TargetUtil } from "./TargetUtil.js";
4
+ import { tapp } from "./App.js";
5
+ import { browser } from "./Browser.js";
4
6
 
5
7
  function LocationManager() {
6
8
  this.hasLocationList = [];
@@ -1,5 +1,6 @@
1
1
  import { $Dom } from "./$Dom.js";
2
2
  import { TUtil } from "./TUtil.js";
3
+ import { tapp } from "./App.js";
3
4
 
4
5
  function PageManager() {
5
6
  this.lastLink = document.URL;
package/src/SearchUtil.js CHANGED
@@ -1,4 +1,5 @@
1
1
  import { TUtil } from "./TUtil.js";
2
+ import { tapp } from "./App.js";
2
3
 
3
4
  function SearchUtil() {}
4
5
 
package/src/TModel.js CHANGED
@@ -1,3 +1,4 @@
1
+ import { tapp } from "./App.js";
1
2
  import { browser } from "./Browser.js";
2
3
  import { SearchUtil } from "./SearchUtil.js";
3
4
  import { TUtil } from "./TUtil.js";
@@ -1,6 +1,7 @@
1
1
  import { $Dom } from "./$Dom.js";
2
2
  import { browser } from "./Browser.js";
3
3
  import { TUtil } from "./TUtil.js";
4
+ import { tapp } from "./App.js";
4
5
 
5
6
  function TModelManager() {
6
7
  this.init();
@@ -1,6 +1,7 @@
1
1
  import { browser } from "./Browser.js";
2
2
  import { TUtil } from "./TUtil.js";
3
3
  import { TargetUtil } from "./TargetUtil.js";
4
+ import { tapp } from "./App.js";
4
5
 
5
6
  function TargetManager() {
6
7
  this.doneTargets = [];
package/src/Viewport.js CHANGED
@@ -1,5 +1,6 @@
1
1
  import { browser } from "./Browser.js";
2
2
  import { TUtil } from "./TUtil.js";
3
+ import { tapp } from "./App.js";
3
4
 
4
5
  function Viewport(tmodel) {
5
6