mirror of
https://github.com/FlamedDogo99/EaglerMobile.git
synced 2024-12-22 07:14:15 -08:00
Merge ef03fcb4b2
into b44dfed15c
This commit is contained in:
commit
c2acc1bb4e
|
@ -6,15 +6,22 @@
|
||||||
// @downloadURL https://raw.githubusercontent.com/FlamedDogo99/EaglerMobile/main/eaglermobile.user.js
|
// @downloadURL https://raw.githubusercontent.com/FlamedDogo99/EaglerMobile/main/eaglermobile.user.js
|
||||||
// @license Apache License 2.0 - http://www.apache.org/licenses/
|
// @license Apache License 2.0 - http://www.apache.org/licenses/
|
||||||
// @match https://eaglercraft.com/mc/*
|
// @match https://eaglercraft.com/mc/*
|
||||||
// @version 3.0.5b
|
// @version 3.0.6
|
||||||
// @updateURL https://raw.githubusercontent.com/FlamedDogo99/EaglerMobile/main/eaglermobile.user.js
|
// @updateURL https://raw.githubusercontent.com/FlamedDogo99/EaglerMobile/main/eaglermobile.user.js
|
||||||
// @run-at document-start
|
// @run-at document-start
|
||||||
// @grant none
|
// @grant none
|
||||||
// ==/UserScript==
|
// ==/UserScript==
|
||||||
|
|
||||||
// Removed brainless unsafeWindow
|
console.log("Eagler Mobile v3.0.6");
|
||||||
console.log("Eagler Mobile v3.0.5b")
|
// Check for object defined by most userscript applications, and run the script in the page context if so
|
||||||
// TODO: remove the mobile check is implement the dynamic enabling and disabling of individual features
|
|
||||||
|
if (typeof GM_info !== "undefined") {
|
||||||
|
location.href = "javascript:(" + encodeURI(main) + ")();";
|
||||||
|
} else {
|
||||||
|
main();
|
||||||
|
}
|
||||||
|
// TODO: remove the mobile check and implement the dynamic enabling and disabling of individual features
|
||||||
|
function main() {
|
||||||
function isMobile() {
|
function isMobile() {
|
||||||
try {
|
try {
|
||||||
document.createEvent("TouchEvent");
|
document.createEvent("TouchEvent");
|
||||||
|
@ -474,6 +481,9 @@ function insertCanvasElements() {
|
||||||
hiddenInput.id = "hiddenInput"
|
hiddenInput.id = "hiddenInput"
|
||||||
hiddenInput.classList.add("inMenu")
|
hiddenInput.classList.add("inMenu")
|
||||||
hiddenInput.style.cssText = "position:absolute;top: 0vh; margin: auto; left: 8vh; right:0vh; width: 8vh; height: 8vh;font-size:20px;z-index: -10;color: transparent;text-shadow: 0 0 0 black;"; // We hide the input behind a key because display: none and opacity:0 causes issues
|
hiddenInput.style.cssText = "position:absolute;top: 0vh; margin: auto; left: 8vh; right:0vh; width: 8vh; height: 8vh;font-size:20px;z-index: -10;color: transparent;text-shadow: 0 0 0 black;"; // We hide the input behind a key because display: none and opacity:0 causes issues
|
||||||
|
hiddenInput.setAttribute("autocorrect", "off");
|
||||||
|
hiddenInput.setAttribute("autocapitalize", "off");
|
||||||
|
hiddenInput.setAttribute("tabindex", "-1");
|
||||||
hiddenInput.addEventListener("beforeinput", function(e) { // For some reason beforeinput doesn't have the same deletion problems that input has on Android
|
hiddenInput.addEventListener("beforeinput", function(e) { // For some reason beforeinput doesn't have the same deletion problems that input has on Android
|
||||||
e.stopImmediatePropagation(); // Android ignores this and the prevent default, so this will probably be removed in the future
|
e.stopImmediatePropagation(); // Android ignores this and the prevent default, so this will probably be removed in the future
|
||||||
e.preventDefault(true); // We pass a value because we've hijacked the prevent default function to have a "should bypass" boolean value
|
e.preventDefault(true); // We pass a value because we've hijacked the prevent default function to have a "should bypass" boolean value
|
||||||
|
@ -860,3 +870,4 @@ customStyle.textContent = `
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
document.documentElement.appendChild(customStyle);
|
document.documentElement.appendChild(customStyle);
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user