From 65c480de58f47bc3368d5f018fe957b15de17beb Mon Sep 17 00:00:00 2001 From: Brian Peiris Date: Tue, 15 Nov 2016 02:12:24 -0800 Subject: [PATCH] Add behaviors test to index --- examples/tests/index.html | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/examples/tests/index.html b/examples/tests/index.html index c5589b6a..b6786508 100644 --- a/examples/tests/index.html +++ b/examples/tests/index.html @@ -17,6 +17,7 @@ '..', 'cloning.html', 'renderer-tests.html', + 'behaviors.html', 'gamepad-and-focus.html', 'visibility.html', 'disable-hitbox-collider.html', @@ -29,11 +30,11 @@ 'texture-batching.html', 'texture-reuse.html', ].forEach(function (example) { - var li = document.createElement('li'); - var a = document.createElement('a'); - a.href = a.textContent = example; - li.appendChild(a); - list.appendChild(li); + var li = document.createElement('li'); + var a = document.createElement('a'); + a.href = a.textContent = example; + li.appendChild(a); + list.appendChild(li); });