diff --git a/help/default.html b/help/default.html index 9f948f6..612ec41 100644 --- a/help/default.html +++ b/help/default.html @@ -8,7 +8,7 @@
- +
diff --git a/help/nobgcolor.css b/help/nobgcolor.css index a0c2092..77dae86 100644 --- a/help/nobgcolor.css +++ b/help/nobgcolor.css @@ -32,6 +32,9 @@ body { margin-top: 10px; overflow: auto; } +#os-logo-link { + text-decoration: none; +} a:link { color: #0000CC; diff --git a/help/vaporwave.js b/help/vaporwave.js index 2c676c9..4886a8e 100644 --- a/help/vaporwave.js +++ b/help/vaporwave.js @@ -44,7 +44,11 @@ var animate = function () { if(something_img.complete && something_img.naturalWidth > 1){ let t = now / 5000; ctx.globalAlpha = 0.3 + Math.max(0, Math.sin(-t) * 1); - ctx.drawImage(something_img, Math.sin(-t) * canvas.width * 0.7, Math.cos(-t) * 70); + ctx.drawImage( + something_img, + ~~(Math.sin(-t) * canvas.width * 0.7), + ~~(Math.cos(-t) * 70) + ); ctx.globalAlpha = 1; } ctx.globalCompositeOperation = "screen";