display squelch on mouseover, too
This commit is contained in:
parent
3975073efd
commit
ce39de14e8
@ -119,7 +119,9 @@ DemodulatorPanel.prototype.setMode = function(requestedModulation) {
|
|||||||
this.demodulator.on("frequencychange", updateFrequency);
|
this.demodulator.on("frequencychange", updateFrequency);
|
||||||
updateFrequency(this.demodulator.get_offset_frequency());
|
updateFrequency(this.demodulator.get_offset_frequency());
|
||||||
var updateSquelch = function(squelch) {
|
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();
|
self.updateHash();
|
||||||
};
|
};
|
||||||
this.demodulator.on('squelchchange', updateSquelch);
|
this.demodulator.on('squelchchange', updateSquelch);
|
||||||
|
Loading…
Reference in New Issue
Block a user