Skip to content

Commit

Permalink
Add behaviors test to index
Browse files Browse the repository at this point in the history
  • Loading branch information
brianpeiris committed Nov 15, 2016
1 parent 32625c9 commit 65c480d
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions examples/tests/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
'..',
'cloning.html',
'renderer-tests.html',
'behaviors.html',
'gamepad-and-focus.html',
'visibility.html',
'disable-hitbox-collider.html',
Expand All @@ -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);
});
</script>
</body>
Expand Down

0 comments on commit 65c480d

Please sign in to comment.