Add 'User information' (whois) support to the sidebar context menu

This commit is contained in:
Adam Spotton 2018-06-24 11:52:55 -04:00
parent 5e438b7fab
commit 54e502c020
1 changed files with 3 additions and 3 deletions

View File

@ -75,10 +75,10 @@ function addWhoisItem() {
}); });
addContextMenuItem({ addContextMenuItem({
check: (target) => target.hasClass("user"), check: (target) => target.hasClass("user") || target.hasClass("query"),
className: "action-whois", className: "action-whois",
displayName: "User information", displayName: "User information",
data: (target) => target.attr("data-name"), data: (target) => target.attr("data-name") || target.attr("aria-label"),
callback: whois, callback: whois,
}); });
} }
@ -385,6 +385,7 @@ function addIgnoreListItem() {
} }
function addDefaultItems() { function addDefaultItems() {
addFocusItem();
addWhoisItem(); addWhoisItem();
addQueryItem(); addQueryItem();
addKickItem(); addKickItem();
@ -392,7 +393,6 @@ function addDefaultItems() {
addDeopItem(); addDeopItem();
addVoiceItem(); addVoiceItem();
addDevoiceItem(); addDevoiceItem();
addFocusItem();
addEditNetworkItem(); addEditNetworkItem();
addJoinItem(); addJoinItem();
addChannelListItem(); addChannelListItem();