mirror of https://github.com/gorhill/uBlock.git
This commit is contained in:
parent
07c7c3d944
commit
b5016a1f7a
|
@ -106,7 +106,12 @@ var onPSLReady = function() {
|
||||||
var onCommandShortcutsReady = function(commandShortcuts) {
|
var onCommandShortcutsReady = function(commandShortcuts) {
|
||||||
if ( Array.isArray(commandShortcuts) === false ) { return; }
|
if ( Array.isArray(commandShortcuts) === false ) { return; }
|
||||||
µb.commandShortcuts = new Map(commandShortcuts);
|
µb.commandShortcuts = new Map(commandShortcuts);
|
||||||
if ( typeof vAPI.commands.update !== 'function' ) { return; }
|
if (
|
||||||
|
vAPI.commands === undefined ||
|
||||||
|
typeof vAPI.commands.update !== 'function'
|
||||||
|
) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
for ( let entry of commandShortcuts ) {
|
for ( let entry of commandShortcuts ) {
|
||||||
vAPI.commands.update({ name: entry[0], shortcut: entry[1] });
|
vAPI.commands.update({ name: entry[0], shortcut: entry[1] });
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue