Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc-browser.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjrc03c <jrc03c@pm.me>2022-07-01 16:58:48 +0300
committerjrc03c <jrc03c@pm.me>2022-07-01 16:58:48 +0300
commitc1563edf88099020e3c89b0a9ba2fb40877d50f8 (patch)
tree26c834537d338ae1d5597e9e6947cad068442ac1
parent07d235b46bd8673d2aa7513d701b61b5440eef08 (diff)
According to @varjolintu's comment on the PR (https://github.com/keepassxreboot/keepassxc-browser/pull/1662), this bit of code actually just needs to be removed altogether. So, this commit removes it.
-rw-r--r--keepassxc-browser/options/options.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/keepassxc-browser/options/options.js b/keepassxc-browser/options/options.js
index 5355ea7..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.substring(navigator.userAgent.lastIndexOf('/') + 1)) < 60) {
- $('#chrome-only').remove();
- }
};
options.initTheme = function() {