Browse Source

リンク先を一部修正

KEKEC_BBS_DEV-001
miteruzo 1 year ago
parent
commit
a4f7d22c79
2 changed files with 6 additions and 6 deletions
  1. +3
    -3
      forms/index.frm.php
  2. +3
    -3
      scripts/script.js

+ 3
- 3
forms/index.frm.php View File

@@ -6,10 +6,10 @@
<title><?= ($title == '') ? '' : ($title . ' - ') ?>キケッツチャンネル お絵描き掲示板</title> <title><?= ($title == '') ? '' : ($title . ' - ') ?>キケッツチャンネル お絵描き掲示板</title>
<link rel="stylesheet" href="https://jpafonts.osdn.jp/webfonts/jpafonts.css" /> <link rel="stylesheet" href="https://jpafonts.osdn.jp/webfonts/jpafonts.css" />
<link rel="stylesheet" type="text/css" href="/style.css" /> <link rel="stylesheet" type="text/css" href="/style.css" />
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="stylesheet" type="text/css" href="./styles/style.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" /> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" />
<script defer src="https://use.fontawesome.com/releases/v5.15.4/js/all.js"></script> <script defer src="https://use.fontawesome.com/releases/v5.15.4/js/all.js"></script>
<script src="modules/colour-pad.js"></script>
<script src="./scripts/colour-pad.js"></script>
</head> </head>


<body> <body>
@@ -305,7 +305,7 @@
<script type="text/javascript" src="script.js"></script> <script type="text/javascript" src="script.js"></script>


<?php if ($thread != -1): ?> <?php if ($thread != -1): ?>
<script type="text/javascript" src="paint.js"></script>
<script type="text/javascript" src="./scripts/paint.js"></script>
<?php endif ?> <?php endif ?>
</body> </body>
</html> </html>


+ 3
- 3
scripts/script.js View File

@@ -1,6 +1,6 @@
const music = new Audio ('music.mp3'); // BGM
let playing = false; // 再生フラグ
let nowPlay = true; // 再生すべきかどぅか
const music = new Audio ('./assets/music.mp3'); // BGM
let playing = false; // 再生フラグ
let nowPlay = true; // 再生すべきかどぅか


document.getElementById ('sort').addEventListener ('change', sortChange); document.getElementById ('sort').addEventListener ('change', sortChange);




Loading…
Cancel
Save