forked from sent/waves
31 lines
730 B
HTML
31 lines
730 B
HTML
<!--
|
|
|
|
GBA ONLINE; GBA.JS.ORG; "Online GameBoy Advance Emulator"
|
|
Copyright (C) 2021-present AYVACS
|
|
Licensed under the MIT License (view LICENSE.md for more information)
|
|
|
|
-->
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<script src="/js/all.min.js"></script>
|
|
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>Document</title>
|
|
</head>
|
|
|
|
<body>
|
|
<script>
|
|
fetch('assets/user_data/GamesList.json')
|
|
.then(response => response.json())
|
|
.then(jsonResponse => console.log(jsonResponse))
|
|
// outputs a javascript object from the parsed json
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html> |