From 19984e11e3bfd793188fd84c621a304330f4a303 Mon Sep 17 00:00:00 2001 From: Terry Truong Date: Mon, 23 May 2022 07:02:16 +1000 Subject: Display 'compound images' Adjust genLinkedImgs.py to associate multiple images to compound-nodes. Adjust server to send multiple image filenames for such nodes. Adjust Tile and TileInfoModal to display those compound-images. --- src/tol.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/tol.ts') diff --git a/src/tol.ts b/src/tol.ts index 41ace2c..15f1a94 100644 --- a/src/tol.ts +++ b/src/tol.ts @@ -10,8 +10,8 @@ export class TolNode { parent: string | null; tips: number; pSupport: boolean; - imgName: null | string; commonName: null | string; + imgName: null | string | [string, string]; constructor(children: string[] = [], parent = null, tips = 0, pSupport = false){ this.children = children; this.parent = parent; -- cgit v1.2.3