Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
RedNotSus committed Apr 15, 2024
1 parent 0f0aae1 commit 0b43581
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions static/apps.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
<link rel="stylesheet" href="/assets/css/nav.css?v=3" />
<link rel="icon" type="image/x-icon" href="/img/canvas.ico" />
<script src="/assets/js/font.js" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@10"></script>
<meta http-equiv="Expires" content="600">
</head>

Expand Down Expand Up @@ -42,7 +41,7 @@ <h1 style="text-align: center">Apps</h1>
autocomplete="off"
/>
<link rel="stylesheet" href="assets/css/games.css" />
<script src="/assets/js/apps.js?v=2"></script>
<script src="/assets/js/apps.js?v=3"></script>
<div id="game-container"></div>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6700774525685317"
crossorigin="anonymous"></script>
Expand Down
3 changes: 1 addition & 2 deletions static/art.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
<script src="/assets/js/easteregg.min.js" async></script>
<meta http-equiv="Cache-control" content="public">
<meta http-equiv="Expires" content="600">
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@10"></script>
</head>
<body>
<nav>
Expand All @@ -37,7 +36,7 @@ <h3 style="text-align: center">
</h3>
<main>
<link href="assets/css/games.css" rel="stylesheet" />
<script src="/assets/js/games.js?v=1"></script>
<script src="/assets/js/games.js?v=2"></script>
<input
id="searchbar"
name="search"
Expand Down
2 changes: 1 addition & 1 deletion static/assets/js/games.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ window.addEventListener("load", (event) => {
let gameHtml;
if (game.usesProxy) {
gameHtml = `<div class="card" style="padding-top: 5px">
<a onclick="${game.alert ? `Swal.fire('${game.alert}'); ` : ""}hire('${game.url}');">
<a onclick="${game.alert ? `alert('${game.alert}'); ` : ""}hire('${game.url}');">
<div class="image-container">
<img loading="lazy" src="${game.image}" style="border-radius: 25px">
<p class="item-name">${game.name}</p>
Expand Down

0 comments on commit 0b43581

Please sign in to comment.