From d1c1f4f651a79e184b0d6047964ba24366ff8a0a Mon Sep 17 00:00:00 2001 From: Arne Morken Date: Sun, 10 Dec 2023 12:26:15 +0100 Subject: [PATCH] No longer need to specify "list" mode in data (it is default) --- examples/hello_world/hello_default.html | 2 -- examples/hello_world/hello_list.html | 1 - 2 files changed, 3 deletions(-) diff --git a/examples/hello_world/hello_default.html b/examples/hello_world/hello_default.html index 093a982..2db48b0 100644 --- a/examples/hello_world/hello_default.html +++ b/examples/hello_world/hello_default.html @@ -35,12 +35,10 @@ // Data to display let my_data = { 0: { - list: "foo", foo_name: "Hello world 1", foo_desc: "A simple hello to the world", }, 1: { - list: "foo", foo_name: "Hello world 2", foo_desc: "Another hello to the world", }, diff --git a/examples/hello_world/hello_list.html b/examples/hello_world/hello_list.html index 52a9608..e2c4173 100644 --- a/examples/hello_world/hello_list.html +++ b/examples/hello_world/hello_list.html @@ -35,7 +35,6 @@ // Data to display let my_data = { 0: { - list: "foo", foo_name: "Hello world 1", foo_desc: "A simple hello to the world", },