This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Source code from http://apps.thecodepost.org/trex/trex.html --> | |
| <head> | |
| <script src="https://apis.google.com/js/platform.js" async defer></script> | |
| <script> | |
| function hideClass(name) { | |
| for (var elem of $(name)) elem.style.display = "none"; | |
| } | |
| var DEFAULT_WIDTH = 600, FPS = 60; | |
| var IS_HIDPI = false, IS_IOS = false, IS_MOBILE = false, IS_TOUCH_ENABLED = false; |