1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-27 12:05:06 +02:00

fix broken hotkeys

This commit is contained in:
Andrew Dolgov 2006-02-25 08:47:06 +01:00
parent e0a7121ba9
commit 2e02b89603

View File

@ -129,12 +129,15 @@ function hotkey_handler(e) {
seq = seq + "" + keycode; seq = seq + "" + keycode;
} }
if (document.getElementById("piggie")) {
if (seq.match("807371717369")) { if (seq.match("807371717369")) {
seq = ""; seq = "";
localPiggieFunction(true); localPiggieFunction(true);
} else { } else {
localPiggieFunction(false); localPiggieFunction(false);
} }
}
if (typeof localHotkeyHandler != 'undefined') { if (typeof localHotkeyHandler != 'undefined') {
try { try {