Resource icon

[Berg] User mention 1.0.1 Alpha

No permission to download
Other ideas:

When you type @

You should start with a menu of the last 3-5 participants, including the OP.

1750078666204.webp
currently with xenforo, you need to type 3 letters to bring up the menu (@ABC)
 
What's the proper name for @ ing another user ?
Tagging a user by typing @username is usually usually called a mentioning (on other platforms) and the code that brings up the menu is called UserMentioner:

JavaScript:
XF.UserMentioner = XF.Element.newHandler({
    options: {},

    handler: null,

    init: function()
    {
        this.handler = new XF.AutoCompleter(this.$target, { url: XF.getAutoCompleteUrl() });
    }
});

HTH
 
Back
Top Bottom