Add gradient_jungle sketch

This commit is contained in:
Joshua Seigler 2019-11-06 17:24:17 -05:00
parent 7c824da05e
commit bae99d6acb
8 changed files with 226 additions and 16 deletions

View file

@ -1,3 +1,6 @@
document.addEventListener('DOMContentLoaded', function() {
require('sketches/1');
let path = document.location.pathname.split('/');
if (path.length > 1) {
require('./sketches/' + path[path.length - 2]);
}
});