From 6ef105ab08e8d08a44b462173353a4356cf2f662 Mon Sep 17 00:00:00 2001 From: Rob Rix Date: Wed, 21 Oct 2015 16:27:08 -0400 Subject: [PATCH] Stub in handling of leaf nodes. --- prototype/UI/index.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/prototype/UI/index.html b/prototype/UI/index.html index 5e4c91d89..ec5a8f3c7 100644 --- a/prototype/UI/index.html +++ b/prototype/UI/index.html @@ -82,6 +82,8 @@ for (k in model.syntax) { element.appendChild(toDOM(model.syntax[k])); } + } else if (model.syntax instanceof Leaf) { + // ? } return element;