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:
Pavel Djundik 2018-06-26 09:51:57 +03:00 committed by GitHub
commit 6089372ac7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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