mirror of
https://github.com/FlamedDogo99/EaglerMobile.git
synced 2024-11-21 11:36:05 -08:00
Update eaglermobile.user.js
This commit is contained in:
parent
400e7452a4
commit
0a58a80228
|
@ -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
|
||||
|
@ -210,7 +219,10 @@ function insertCanvasElements() {
|
|||
}
|
||||
e.movementX = touch.pageX - previousX;
|
||||
e.movementY = touch.pageY - previousY;
|
||||
var evt = window.fakelock ? new MouseEvent("mousemove", {movementX: e.movementX, movementY: e.movementY}) : new WheelEvent("wheel", {"wheelDeltaY": e.movementY});
|
||||
var evt = new MouseEvent("mousemove", {
|
||||
movementX: e.movementX,
|
||||
movementY: e.movementY
|
||||
});
|
||||
canvas.dispatchEvent(evt);
|
||||
previousX = touch.pageX;
|
||||
previousY = touch.pageY;
|
||||
|
@ -298,6 +310,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 = "⊹";
|
||||
|
|
Loading…
Reference in New Issue
Block a user