Skip to content

Commit 67755ae

Browse files
committed
Custom-hotkeys: remove logs
1 parent 1f494c8 commit 67755ae

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

github-custom-hotkeys.user.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// ==UserScript==
22
// @name GitHub Custom Hotkeys
3-
// @version 1.1.2
3+
// @version 1.1.3
44
// @description A userscript that allows you to add custom GitHub keyboard hotkeys
55
// @license MIT
66
// @author Rob Garrison
@@ -426,7 +426,7 @@
426426
}
427427

428428
function addDropdownLink() {
429-
if (!$("#ghch-open-menu")) { console.log('adding link')
429+
if (!$("#ghch-open-menu")) {
430430
// Create our menu entry
431431
const menu = document.createElement("a");
432432
menu.id = "ghch-open-menu";
@@ -436,7 +436,6 @@
436436
menu.onclick = openPanel;
437437

438438
const els = $$(".Header-item .dropdown-item[href='/settings/profile']");
439-
console.log(els)
440439
if (els.length) {
441440
els[els.length - 1].after(menu);
442441
}

0 commit comments

Comments
 (0)