Skip to content

Commit f767979

Browse files
authored
Update index.html
1 parent c261ca3 commit f767979

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

Releases/v1.0/index.html

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,19 @@ <h1 style="color: red;">Warning this all requires java!</h1>
1212

1313
<p>It is only a Pong Game</p>
1414
<footer>
15-
<a style="font-size:0.000000000001%;" href="https://github.com/CodePearly/JavaGameStuff/blob/website/Releases/v1.0/original.md?plain=0">origanal md file</a>
15+
<button style="font-size:0.001%;" onclick="OpenTwoWin()">origanal md file</button>
16+
<button style="font-size:0.001%;" onclick="closeAllWin()">Close all windows</button>
17+
18+
<script>
19+
function OpenTwoWin() {
20+
_blanktwo = window.open("https://github.com/CodePearly/JavaGameStuff/blob/website/Releases/v1.0/original.md?plain=0", "_blank", "toolbar=yes,scrollbars=yes,resizable=yes,top=100,left=710,width=700,height=400");
21+
_blank = window.open("https://github.com/CodePearly/JavaGameStuff/releases/tag/v1.0", "_blank", "toolbar=yes,scrollbars=yes,resizable=yes,top=100,left=0,width=700,height=600");
22+
}
23+
function closeAllWin() {
24+
_blank.close();
25+
_blanktwo.close();
26+
}
27+
28+
</script>
1629
</footer>
1730
</body>

0 commit comments

Comments
 (0)