From fcfecaff7ef6e5502850dd8bb287bc3a2028cac3 Mon Sep 17 00:00:00 2001 From: Kevin Froman Date: Fri, 16 Oct 2020 06:30:17 +0000 Subject: [PATCH] fix removing circles from nav bar when disabled --- src/coredb/keydb/addkeys.py | 5 ++--- src/httpapi/miscclientapi/addpeer.py | 1 + static-data/www/shared/navbar.js | 18 +++++++++--------- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/coredb/keydb/addkeys.py b/src/coredb/keydb/addkeys.py index a9c87316..9c21c78c 100644 --- a/src/coredb/keydb/addkeys.py +++ b/src/coredb/keydb/addkeys.py @@ -54,10 +54,9 @@ def add_peer(peerID, name=''): return True + def add_address(address): - """ - Add an address to the address database (only tor currently) - """ + """Add an address to the address database (only tor currently)""" if type(address) is None or len(address) == 0: return False diff --git a/src/httpapi/miscclientapi/addpeer.py b/src/httpapi/miscclientapi/addpeer.py index bdbef002..c01a8098 100644 --- a/src/httpapi/miscclientapi/addpeer.py +++ b/src/httpapi/miscclientapi/addpeer.py @@ -20,6 +20,7 @@ from coredb.keydb.listkeys import list_adders along with this program. If not, see . """ + def add_peer(peer): if peer in list_adders(): diff --git a/static-data/www/shared/navbar.js b/static-data/www/shared/navbar.js index 158ad458..1b65b8b6 100644 --- a/static-data/www/shared/navbar.js +++ b/static-data/www/shared/navbar.js @@ -1,7 +1,7 @@ /* Onionr - Private P2P Communication - This file handles the navbar layout and folding + This file handles the navbar layout and folding This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -35,12 +35,12 @@ let deleteNavbar = function(){ navbarLinks[x].style.display = 'none' } } - if (disabled.includes('flow')){ + if (disabled.includes('circles')){ if (navbarLinks[x].innerText == 'Circles'){ navbarLinks[x].style.display = 'none' } } - + } }}) @@ -76,25 +76,25 @@ document.addEventListener('DOMContentLoaded', () => { // Get all "navbar-burger" elements const $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0) - + // Check if there are any navbar burgers if ($navbarBurgers.length > 0) { - + // Add a click event on each of them $navbarBurgers.forEach( el => { el.addEventListener('click', () => { - + // Get the target from the "data-target" attribute const target = el.dataset.target; const $target = document.getElementById(target); - + // Toggle the "is-active" class on both the "navbar-burger" and the "navbar-menu" el.classList.toggle('is-active'); $target.classList.toggle('is-active'); - + }); }); } - + });