diff --git a/keepassxc-browser/options/options.html b/keepassxc-browser/options/options.html
index 14bb9ce..8c6c35f 100644
--- a/keepassxc-browser/options/options.html
+++ b/keepassxc-browser/options/options.html
@@ -149,7 +149,7 @@
: error
: error
+
diff --git a/keepassxc-browser/options/options.js b/keepassxc-browser/options/options.js index efeaf89..cbbf607 100644 --- a/keepassxc-browser/options/options.js +++ b/keepassxc-browser/options/options.js @@ -660,11 +660,6 @@ options.initAbout = function() { $('#tab-about span.kpxcbrVersion').textContent = version; $('#tab-about span.kpxcbrOS').textContent = platform; $('#tab-about span.kpxcbrBrowser').textContent = getBrowserId(); - - // Hides keyboard shortcut configure button if Firefox version is < 60 (API is not compatible) - if (isFirefox() && Number(navigator.userAgent.substr(navigator.userAgent.lastIndexOf('/') + 1, 2)) < 60) { - $('#chrome-only').remove(); - } }; options.initTheme = function() { diff --git a/keepassxc-browser/options/shortcuts.html b/keepassxc-browser/options/shortcuts.html index 687f948..884b97a 100644 --- a/keepassxc-browser/options/shortcuts.html +++ b/keepassxc-browser/options/shortcuts.html @@ -11,10 +11,9 @@ - - +
diff --git a/keepassxc-browser/options/shortcuts.js b/keepassxc-browser/options/shortcuts.js index a99b2d0..ba73364 100644 --- a/keepassxc-browser/options/shortcuts.js +++ b/keepassxc-browser/options/shortcuts.js @@ -113,7 +113,7 @@ function shortCutChanged(e) { } -$(async function() { +(async function() { try { const settings = await browser.runtime.sendMessage({ action: 'load_settings' }); if (settings['colorTheme'] === undefined) { @@ -128,7 +128,7 @@ $(async function() { } catch (err) { console.log('Error loading options page: ' + err); } -}); +})(); const saveButtons = document.querySelectorAll('.btn-primary'); for (const b of saveButtons) { diff --git a/keepassxc-browser/popups/popup_httpauth.html b/keepassxc-browser/popups/popup_httpauth.html index 75733e2..ff66afd 100644 --- a/keepassxc-browser/popups/popup_httpauth.html +++ b/keepassxc-browser/popups/popup_httpauth.html @@ -9,7 +9,6 @@ -