display squelch on mouseover, too

This commit is contained in:
Jakob Ketterl 2020-10-11 00:46:41 +02:00
parent 3975073efd
commit ce39de14e8
1 changed files with 3 additions and 1 deletions

View File

@ -119,7 +119,9 @@ DemodulatorPanel.prototype.setMode = function(requestedModulation) {
this.demodulator.on("frequencychange", updateFrequency);
updateFrequency(this.demodulator.get_offset_frequency());
var updateSquelch = function(squelch) {
self.el.find('.openwebrx-squelch-slider').val(squelch);
self.el.find('.openwebrx-squelch-slider')
.val(squelch)
.attr('title', 'Squelch (' + squelch + ' dB)');
self.updateHash();
};
this.demodulator.on('squelchchange', updateSquelch);