Merge pull request #1 from colbychittenden/main

Keyboard Button
This commit is contained in:
FlamedDogo99 2024-05-28 08:11:32 -06:00 committed by GitHub
commit 7bde006d28
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -13,6 +13,15 @@
// ==/UserScript==
function isMobile() {
try {
document.createEvent("TouchEvent");
return true;
} catch (e) {
return false;
}
}
if(!isMobile()){alert("WARNING: This script doesn't play well with non-mobile browsers. Proceed at your own risk!")};
// Hides inventory button
window.inInventory = false;
// Used for changing touchmove events to mousemove events
@ -298,6 +307,18 @@ function insertCanvasElements() {
exitButton.addEventListener("touchend", function(e){keyEvent("À", "keyup")}, false);
exitButton.addEventListener("touchmove", function(e){e.preventDefault()}, false);
document.body.appendChild(exitButton);
var hiddenInput = document.createElement('input');
hiddenInput.id = "hiddenInput"
hiddenInput.style.cssText = "opacity:0;z-index:-99999";
document.body.appendChild(hiddenInput);
var keyboardButton = document.createElement('button');
keyboardButton.id = "keyboardButton"
keyboardButton.textContent = "⌨️";
keyboardButton.style.cssText = "left:10vh;top:0vh;"
keyboardButton.addEventListener("touchstart", function(e){e.preventDefault();hiddenInput.blur()}, false);
keyboardButton.addEventListener("touchend", function(e){hiddenInput.select()}, false);
keyboardButton.addEventListener("touchmove", function(e){e.preventDefault()}, false);
document.body.appendChild(keyboardButton);
var placeButton = document.createElement('button');
placeButton.id = "hideButton"
placeButton.textContent = "⊹";