Compare commits

..

No commits in common. "f0a482475bc8a2fbc7ec83408b12ad7bb78b4a50" and "1c5ddf5500422e4280af25e7ade8db4e1ce9e53b" have entirely different histories.

3 changed files with 6 additions and 6 deletions

View File

@ -1,9 +1,9 @@
@font-face {
font-family: 'SamsungOne';
src:
url('https://cdn.a2s.su/web/fonts/SamsungOne-400.woff2') format('woff2'),
url('https://cdn.a2s.su/web/fonts/SamsungOne-400.woff') format('woff'),
url('https://cdn.a2s.su/web/fonts/SamsungOne-400.ttf') format('truetype');
url('SamsungOne-400.woff2') format('woff2'),
url('SamsungOne-400.woff') format('woff'),
url('SamsungOne-400.ttf') format('truetype');
font-weight: normal;
font-style: normal;
font-display: swap;

View File

@ -5,4 +5,4 @@ Twitter: @_iiiypuk
Location: Russia
/* SITE */
Last update (Обновлено): 2024/03/31
Last update (Обновлено): 2022/02/27

View File

@ -27,7 +27,7 @@
<script>
'use strict';
let episodesList = [280, 281, 282, 283]; // episodes
let episodesList = [270, 271, 272, 273, 274, 275, 276]; // episodes
window.onload = function () {
let episodeListElement = document.getElementById('episodeList');
@ -47,7 +47,7 @@
videoElement.textContent = '';
let videoSource = document.createElement('source');
videoSource.setAttribute('src', `https://iiiypuk.me/y/o/${episodeId}.mp4`);
videoSource.setAttribute('src', `https://a2s.su/y/o/${episodeId}.mp4`);
videoSource.setAttribute('type', 'video/mp4');
videoElement.appendChild(videoSource);
videoElement.load();