* split, regroup, and async'ify files
* consistent window scrolling in scrollToEditor and jumpToPos
* rework waitForSelector and collapsible <details>
* parserlib: fast section extraction, tweaks and speedups
* csslint: "simple-not" rule
* csslint: enable and fix "selector-newline" rule
* blank paint frame workaround for new Chrome
* extract stuff from edit.js and load on demand
* simplify regexpTester::isShown
* move MozDocMapper to sections-util.js
* extract fitSelectBox()
* initialize router earlier
* use helpPopup.close()
* fix autofocus in popups, follow-up to 5bb1b5ef
* clone objects in prefs.get() + cosmetics
* reuse getAll result for INC
23 lines
489 B
JavaScript
23 lines
489 B
JavaScript
/* global prefs */
|
|
'use strict';
|
|
|
|
/*
|
|
Registers hotkeys in FF
|
|
*/
|
|
|
|
(() => {
|
|
const hotkeyPrefs = prefs.knownKeys.filter(k => k.startsWith('hotkey.'));
|
|
prefs.subscribe(hotkeyPrefs, updateHotkey, {runNow: true});
|
|
|
|
async function updateHotkey(name, value) {
|
|
try {
|
|
name = name.split('.')[1];
|
|
if (value.trim()) {
|
|
await browser.commands.update({name, shortcut: value});
|
|
} else {
|
|
await browser.commands.reset(name);
|
|
}
|
|
} catch (e) {}
|
|
}
|
|
})();
|