Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Ryan778
GitHub Repository: Ryan778/Ryan778.github.io
Path: blob/master/ata/script.js
574 views
1
function showInfo(n){
2
switch(n){
3
case 0:
4
alertify.alert('<b>About</b><br>A minigame made back when I used Khan Academy for learning to code. <br>The original game was made in several hours back in 2013, which you can visit <a href="https://www.khanacademy.org/computer-programming/avoid-the-asteroids/2318174961" target="_blank">here</a>.<br>I stopped using KA for coding due to the super restrictive sandbox, and thus now putting my stuff here!');
5
break;
6
case 1:
7
alertify.alert('<b>Contact</b><br>Suggestions? Out of date answers? Contact me!<br>GitHub Issues: <a href="https://github.com/Ryan778/Ryan778.github.io/issues" target="_blank">Issues and/or Suggestions</a><br>Twitter: <a href="https://twitter.com/ryanz778" target="_blank">@ryanz778</a>')
8
break;
9
}
10
}
11