From c8dafee1cd4fc5b93ae267d4dccd78d656043bdd Mon Sep 17 00:00:00 2001 From: David Vazgenovich Shakaryan Date: Wed, 27 Apr 2022 16:50:08 -0700 Subject: web: no need to expose horizontal and vertical stdevs individually --- web/static/dartboat.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'web/static') diff --git a/web/static/dartboat.js b/web/static/dartboat.js index 23c7a8d..a97e8bb 100644 --- a/web/static/dartboat.js +++ b/web/static/dartboat.js @@ -147,10 +147,8 @@ function updateStdev(val) { function setOpt(opt, val, update_opts = true) { if (update_opts) localStorage.setItem(`dartboat_${opt}`, val); - if (opt === 'delay') - _set_delay(Number(val)); - else if (opt === 'stdev') - _set_stdev(Number(val), Number(val)); + if (opt === 'delay' || opt === 'stdev') + Module[`_set_${opt}`](Number(val)); } function readOpts() { -- cgit v1.2.3-70-g09d2