From 5eeca981dad6cca8a71154c317b3da36b1397eb6 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 7 Feb 2021 21:57:48 +0000 Subject: [PATCH] Try a different approach with menus --- webapp_utils.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/webapp_utils.py b/webapp_utils.py index 1511b1408..37b015f46 100644 --- a/webapp_utils.py +++ b/webapp_utils.py @@ -908,5 +908,11 @@ def htmlKeyboardNavigation(banner: str, links: {}, htmlStr += '
  • ' - htmlStr += '' + htmlStr += '' + if links: + htmlStr += '
    '
    +        for i in range(20):
    +            htmlStr += '
    ' + htmlStr += '
    ' + htmlStr += '' return htmlStr