09-13-2018, 02:43 AM
(09-13-2018, 02:23 AM)Tests Wrote: Press F12 to open developer tools. Press the "Console" tab and paste this code in:
var opt = document.createElement("option");
opt.value = parseFloat(3/4);
opt.text = "1/"+String(opt.value*4);
document.getElementById('grid_select').add(opt)
Then, in the bottom left, click where it says "1/4" in a dropdown list and select "1/3" at the bottom.
(I totally didn't use Frank's code: https://onlinesequencer.net/forum/showth...p?tid=2667)
That's cool, thanks. But I still think it should be part of the interface and not some code you have to add yourself