ALERT!
Click here to register with a few steps and explore all our cool stuff we have to offer!

Jump to content



Photo

Primedice 5.1 Chat Tools


  • Please log in to reply
Primedice 5.1 Chat Tools

#1

DonnieDrako
DonnieDrako
    Offline
    0
    Rep
    5
    Likes

    Member

Posts: 57
Threads: 4
Joined: Sep 01, 2018
Credits: 0
Five years registered
#1
/*
//  PD5.1 Chat Tools
//  Created by Serlite
//
//  - Enables using Tab to perform autocomplete when referencing users in chat
//
//  NOTE: Only compatible with modern browsers, as no backwards compatibility is implemented.
*/
 
window.onload = function(){
    // Enables using Tab to perform autocomplete when referencing users in chat
    var chatInput = document.querySelector('[class^="styles__Textarea"]');
    chatInput.onkeydown = function(e){
        if (e.key == "Tab"){
            e.preventDefault();
            var availableNames = document.querySelectorAll('#app > [class^="styles__Wrap"] > [class^="styles__Content"] > [class^="styles__Wrap"] > [class^="styles__Wrap"] > div[class^="styles__Wrap"] > button')
            if (availableNames.length > 0){
                availableNames[0].click();
            }
        }
    }
};

  • 0

IcuUIKO.gif



 Users browsing this thread: