Update
This commit is contained in:
parent
db194df179
commit
a54d9e44a1
|
@ -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 });
|
||||
|
|
Loading…
Reference in New Issue