From ee34f87563705f42fdf9e8f2ab011a40237196fe Mon Sep 17 00:00:00 2001 From: Martin Green Date: Wed, 7 Jun 2023 23:20:51 +0100 Subject: [PATCH] Replaced cave viewer link to 3d file with the working orginal --- templates/cave.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/cave.html b/templates/cave.html index 36bc4bd..862bdbe 100644 --- a/templates/cave.html +++ b/templates/cave.html @@ -25,8 +25,8 @@ // Note the special code in views.caves.py to do this. The appropriate .svx/.3d file may not be simply the cave name +.3d const ui = new CV2.CaveViewUI( viewer ); - //ui.loadCave('{{svx3d}}.3d'); - ui.loadCave('{% url "cave3d" cave %}'); + ui.loadCave('{{svx3d}}.3d'); + //ui.loadCave('{% url "cave3d" cave %}'); } window.onload = onLoad;