Skip to content

Commit

Permalink
v2.4 - Display can now be clicked through
Browse files Browse the repository at this point in the history
  • Loading branch information
RadioactivePotato authored May 16, 2024
1 parent 10d8918 commit 874fffb
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions userscript-no-hide.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// ==UserScript==
// @name GeoFS Information Display
// @version 2.3
// @version 2.4
// @description Displays Speed/Altitude/Heading/VS on the bottom right of the screen
// @author krunchiekrunch
// @match https://www.geo-fs.com/geofs.php?v=*
Expand All @@ -9,8 +9,8 @@
// @grant none
// ==/UserScript==

// Note
// The AGL display NO LONGER have a offset that varies from aircraft to aircraft. - Fixed by GGamerGGuy on Discord
// Notes
// The AGL display NO LONGER have a offset that varies from aircraft to aircraft. (Since 2.3) - Fixed by GGamerGGuy on Discord


(function() {
Expand Down Expand Up @@ -51,6 +51,7 @@
flightDataElement.style.lineHeight = '36px';
flightDataElement.style.verticalAlign = 'middle';
flightDataElement.style.zIndex = '9999';
flightDataElement.style.pointerEvents = 'none'; // Make the display clickable through
document.body.appendChild(flightDataElement);
}

Expand All @@ -68,4 +69,4 @@

// Update flight data display every 100ms
setInterval(updateFlightDataDisplay, 100);
})();
})();

0 comments on commit 874fffb

Please sign in to comment.