We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f494c8 commit 67755aeCopy full SHA for 67755ae
github-custom-hotkeys.user.js
@@ -1,6 +1,6 @@
1
// ==UserScript==
2
// @name GitHub Custom Hotkeys
3
-// @version 1.1.2
+// @version 1.1.3
4
// @description A userscript that allows you to add custom GitHub keyboard hotkeys
5
// @license MIT
6
// @author Rob Garrison
@@ -426,7 +426,7 @@
426
}
427
428
function addDropdownLink() {
429
- if (!$("#ghch-open-menu")) { console.log('adding link')
+ if (!$("#ghch-open-menu")) {
430
// Create our menu entry
431
const menu = document.createElement("a");
432
menu.id = "ghch-open-menu";
@@ -436,7 +436,6 @@
436
menu.onclick = openPanel;
437
438
const els = $$(".Header-item .dropdown-item[href='/settings/profile']");
439
- console.log(els)
440
if (els.length) {
441
els[els.length - 1].after(menu);
442
0 commit comments