We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e8aece commit 97f3642Copy full SHA for 97f3642
htdocs/lib/FrequencyDisplay.js
@@ -58,7 +58,7 @@ TuneableFrequencyDisplay.prototype.setupEvents = function() {
58
var index = me.digitContainer.find('.digit').index(e.target);
59
if (index < 0) return;
60
61
- var delta = 10 ** (Math.floor(Math.log10(me.frequency)) - index);
+ var delta = 10 ** (Math.floor(Math.max(6, Math.log10(me.frequency))) - index);
62
if (e.originalEvent.deltaY > 0) delta *= -1;
63
var newFrequency = me.frequency + delta;
64
0 commit comments