Browse Source

Fix for Firefox 41

pull/15/head
10sr 8 years ago
parent
commit
e87762b9a9
1 changed files with 6 additions and 2 deletions
  1. +6
    -2
      _keysnail.js

+ 6
- 2
_keysnail.js View File

@@ -1109,7 +1109,9 @@ key.suspendKey = "Not defined";


hook.setHook('KeyBoardQuit', function (aEvent) { hook.setHook('KeyBoardQuit', function (aEvent) {
// ext.exec("hide-sidebar"); // ext.exec("hide-sidebar");
let(elem = document.commandDispatcher.focusedElement) {elem && elem.blur()};
var elem = document.commandDispatcher.focusedElement;
elem && elem.blur();

getBrowser().focus(); getBrowser().focus();
content.focus(); content.focus();
command.closeFindBar(); command.closeFindBar();
@@ -1160,7 +1162,9 @@ key.setGlobalKey('C-<down>', function () {
}, '選択中のタブを左へ'); }, '選択中のタブを左へ');


key.setGlobalKey('<delete>', function (ev, arg) { key.setGlobalKey('<delete>', function (ev, arg) {
let (elem = document.commandDispatcher.focusedElement) {elem && elem.blur()};
var elem = document.commandDispatcher.focusedElement;
elem && elem.blur();

getBrowser().focus(); getBrowser().focus();
content.focus(); content.focus();
}, 'コンテンツへフォーカス', true); }, 'コンテンツへフォーカス', true);


Loading…
Cancel
Save