From bfaee545820d11ac0025318af1835802667d2052 Mon Sep 17 00:00:00 2001 From: Fred Bergman Date: Tue, 22 Jan 2019 11:51:03 +0100 Subject: [PATCH] Fix steps parameter --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 36f9067..0a2445c 100644 --- a/index.html +++ b/index.html @@ -227,7 +227,7 @@ _.each(vars, function(v) { var v = v.split('='), key = v[0], val = v[1]; - if (key == 'steps') $('#steps,#steps-div').val(val); + if (key == 'steps') $('#steps,#steps-div,#steps-seq').val(val); else if (key == 'colors') $('#colors').val(val); else if (key == 'c0') $('#colors-left').val(val); else if (key == 'c1') $('#colors-right').val(val);