Merge pull request #2587 from aspotton/userinfo_in_sidebar_context_menu
Add 'User information' (whois) support to the sidebar context menu
This commit is contained in:
commit
6089372ac7
@ -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();
|
||||||
|
Loading…
Reference in New Issue
Block a user