mirror of
https://github.com/ha7ilm/openwebrx.git
synced 2026-04-08 16:03:46 +00:00
restore pocsag functionality
This commit is contained in:
parent
b9f43654cd
commit
6014ce8921
10 changed files with 126 additions and 121 deletions
|
|
@ -221,7 +221,7 @@ PacketMessagePanel.prototype.pushMessage = function(msg) {
|
|||
$.fn.packetMessagePanel = function() {
|
||||
if (!this.data('panel')) {
|
||||
this.data('panel', new PacketMessagePanel(this));
|
||||
};
|
||||
}
|
||||
return this.data('panel');
|
||||
};
|
||||
|
||||
|
|
@ -232,6 +232,10 @@ PocsagMessagePanel = function(el) {
|
|||
|
||||
PocsagMessagePanel.prototype = new MessagePanel();
|
||||
|
||||
PocsagMessagePanel.prototype.supportsMessage = function(message) {
|
||||
return message['mode'] === 'Pocsag';
|
||||
};
|
||||
|
||||
PocsagMessagePanel.prototype.render = function() {
|
||||
$(this.el).append($(
|
||||
'<table>' +
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue