We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90aa935 commit 426627fCopy full SHA for 426627f
1 file changed
pages/common.js
@@ -27,6 +27,7 @@ function preload() {
27
if (par != null) {
28
let inp = createInput();
29
inp.attribute('type', 'number');
30
+ inp.attribute('min', '0');
31
inp.parent(par);
32
inp.changed(updateResults);
33
dim[e] = inp;
@@ -37,6 +38,7 @@ function preload() {
37
38
39
40
41
42
43
44
mat[e] = inp;
@@ -55,11 +57,6 @@ function preload() {
55
57
Wb: document.getElementById('resistanceB'),
56
58
F: document.getElementById('traction')
59
}
- // for (let p in res) {
- // if (res[p] == null) {
60
- // delete res[p];
61
- // }
62
63
64
65
function setup() {
0 commit comments