From 33338704395b93ab7dc8f8bbf566f9d48074285d Mon Sep 17 00:00:00 2001 From: kovacsv Date: Wed, 14 Dec 2022 21:38:42 +0100 Subject: [PATCH] Minor modification. --- sandbox/embed_selfhost_code_binary.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sandbox/embed_selfhost_code_binary.html b/sandbox/embed_selfhost_code_binary.html index 21846c6..77988be 100644 --- a/sandbox/embed_selfhost_code_binary.html +++ b/sandbox/embed_selfhost_code_binary.html @@ -31,7 +31,7 @@ .then (response => response.arrayBuffer ()) .then ((arrayBuffer) => { let fileList = [ - new File ([arrayBuffer], "file.obj") + new File ([arrayBuffer], 'file.obj') ]; viewer.LoadModelFromFileList (fileList); });