update @ Mon 1 Nov 19:46:00 EET 2021

This commit is contained in:
Ari Archer 2021-11-01 19:46:00 +02:00
parent 65bc839e97
commit ceab88a5ca
3 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,3 @@
{ {
"compile-hero.disable-compile-files-on-did-save-code": false "compile-hero.disable-compile-files-on-did-save-code": true
} }

View file

@ -4,5 +4,10 @@ const scroll_elements = document.getElementsByClassName("content");
function scrollDown() { function scrollDown() {
++scroll_element; ++scroll_element;
let elem = scroll_elements[scroll_element]; let elem = scroll_elements[scroll_element];
elem.scrollIntoView({ behavior: 'smooth' });
if (elem) elem.scrollIntoView(true); if (elem) elem.scrollIntoView(true);
} }
function scrollUp() {
window.scrollTo({ top: 0, behavior: 'smooth' });
}

View file

@ -49,7 +49,7 @@
<p> <p>
No. These VPNs collect enourmous ammount of your data and sell it. No. These VPNs collect enourmous ammount of your data and sell it.
ExpressVPN <a href="//english.almayadeen.net/articles/analysis/exclusive:-expressvpn-insider-tells-all-on-companys-israelua" target="_blank">hires literal spies</a> ExpressVPN <a href="//english.almayadeen.net/articles/analysis/exclusive:-expressvpn-insider-tells-all-on-companys-israelua" target="_blank">hires literal spies</a>
and NorcVPN had <a href="//blog.malwarebytes.com/cybercrime/privacy/2021/03/21-million-free-vpn-users-data-exposed" target="_blank">a huge data breach</a>. and NordVPN had <a href="//blog.malwarebytes.com/cybercrime/privacy/2021/03/21-million-free-vpn-users-data-exposed" target="_blank">a huge data breach</a>.
These are just two examples, most proprietary VPNs are or have faced this sort of issue. These are just two examples, most proprietary VPNs are or have faced this sort of issue.
<a href="#!" onclick="scrollDown();">Read more.</a> <a href="#!" onclick="scrollDown();">Read more.</a>
</p> </p>
@ -166,6 +166,7 @@
<li>Don't fall for bias people's sugartalk</li> <li>Don't fall for bias people's sugartalk</li>
<li>Don't trust anyone</li> <li>Don't trust anyone</li>
</ul> </ul>
<a href="#!" onclick="scrollUp();">Back to top.</a>
</p> </p>
</div> </div>
</div> </div>