Mercurial Hosting > luan
view website/src/fschmidt/dimensions.html @ 1648:224af797b1f9
Mainly small install script improvements
- Consistent usage of `$LUANHOME`, removed reliance on current directory.
- Made Luan build and install fine (on Linux) without requiring launching it via sudo. Only asks to elevate privileges if installation failed.
- Minor spelling mistake fix.
author | Fox |
---|---|
date | Mon, 28 Mar 2022 18:00:12 +0200 |
parents | fad40fe3282d |
children |
line wrap: on
line source
<!doctype html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script> function p() { document.body.innerText = '' + window.innerWidth + 'px innerWidth\n' + window.innerHeight + 'px innerHeight\n' + '\n' + window.outerWidth + 'px outerWidth\n' + window.outerHeight + 'px outerHeight\n' ; } </script> </head> <body onload="p()" onresize="p()"> </body> </html>