Fixes.
This commit is contained in:
parent
987a4c67e3
commit
0ca80d7fef
|
|
@ -17,14 +17,14 @@ function BookmarkBar() {
|
|||
stopScanner();
|
||||
});
|
||||
|
||||
me.$container.on('contextmenu', '.bookmark', function(e){
|
||||
e.stopPropagation();
|
||||
var $bookmark = $(e.target).closest('.bookmark');
|
||||
var b = $bookmark.data();
|
||||
if (!b || !b.description) return false;
|
||||
divlog(b.description, false);
|
||||
return false;
|
||||
});
|
||||
// me.$container.on('contextmenu', '.bookmark', function(e){
|
||||
// e.stopPropagation();
|
||||
// var $bookmark = $(e.target).closest('.bookmark');
|
||||
// var b = $bookmark.data();
|
||||
// if (!b || !b.description) return false;
|
||||
// divlog(b.description, false);
|
||||
// return false;
|
||||
// });
|
||||
|
||||
me.$container.on('click', '.action[data-action=edit]', function(e){
|
||||
e.stopPropagation();
|
||||
|
|
|
|||
|
|
@ -284,7 +284,7 @@ class Ha7ilmWaterfall(Waterfall):
|
|||
super().__init__([0x000000, 0x2E6893, 0x69A5D0, 0x214B69, 0x9DC4E0, 0xFFF775, 0xFF8A8A, 0xB20000])
|
||||
|
||||
|
||||
class OceanWaterfall(Waterfall):
|
||||
class ZoranWaterfall(Waterfall):
|
||||
def __init__(self):
|
||||
super().__init__([0x000000, 0x000965, 0x00E0FF, 0x2EFF00, 0xFFEC00, 0xFF0000])
|
||||
|
||||
|
|
@ -312,7 +312,7 @@ class WaterfallOptions(DropdownEnum):
|
|||
DEFAULT = ("Google Turbo Theme (OpenWebRX default)", GoogleTurboWaterfall)
|
||||
TEEJEEZ = ("Theme by Teejeez (default in OpenWebRX < 0.20)", TeejeezWaterfall)
|
||||
HA7ILM = ("Legacy Theme by Andras (HA7ILM)", Ha7ilmWaterfall)
|
||||
OCEAN = ("Blue Ocean Theme by Zoran (9A6NDZ)", OceanWaterfall)
|
||||
OCEAN = ("Blue Ocean Theme by Zoran (9A6NDZ)", ZoranWaterfall)
|
||||
ECLIPSE = ("Eclipse Theme by Dimitar (LZ2DMV) and LZ4ZD", EclipseWaterfall)
|
||||
CUSTOM = ("Custom", CustomWaterfall)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue