Add input listener back for spinner buttons
This commit is contained in:
parent
e819c374e4
commit
c1f11184af
|
|
@ -752,6 +752,11 @@
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Also trigger on spinner button clicks
|
||||||
|
document.getElementById("fundamentalInput").addEventListener("input", () => {
|
||||||
|
setFundamental();
|
||||||
|
});
|
||||||
|
|
||||||
async function setFundamental() {
|
async function setFundamental() {
|
||||||
const input = document.getElementById("fundamentalInput");
|
const input = document.getElementById("fundamentalInput");
|
||||||
const fundamental = parseFloat(input.value);
|
const fundamental = parseFloat(input.value);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue