ソースを参照

Fix for Firefox 41

pull/15/head
10sr 8年前
コミット
e87762b9a9
1個のファイルの変更6行の追加2行の削除
  1. +6
    -2
      _keysnail.js

+ 6
- 2
_keysnail.js ファイルの表示

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

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

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

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

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


読み込み中…
キャンセル
保存