This commit is contained in:
Valeria Fadeeva 2023-12-10 01:46:27 +05:00
parent db194df179
commit a54d9e44a1
1 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ async function bodyFetch(url) {
let response = await fetch(tplUrl);
let body = document.getElementById('body');
if (tplUrl == 'news.tpl.html') {let res = await fetchData();}
if (tplUrl == 'news.tpl.html') {fetchData();}
if (response.ok) { // если HTTP-статус в диапазоне 200-299
// получаем тело ответа (см. про этот метод ниже)
@ -138,7 +138,7 @@ let fetchPage = async function(evt) {
const linkText = this.text.trim();
const title = document.title + ": " + linkText;
if (tplUrl == 'news.tpl.html') {let res = await fetchData();}
if (tplUrl == 'news.tpl.html') {fetchData();}
try {
const response = await fetch(tplUrl, { signal });