мНет описания правки |
мНет описания правки |
||
Строка 15: | Строка 15: | ||
credentials: "include" | credentials: "include" | ||
}).then(function(resp) { | }).then(function(resp) { | ||
resp.json.then(function(ermakovUrl) { | resp.json().then(function(ermakovUrl) { | ||
if (ermakovUrl.length) | if (ermakovUrl.length) | ||
$('#mw-content-text').before(notice); | $('#mw-content-text').before(notice); |
Текущая версия от 01:20, 11 февраля 2025
$(document).ready(function() {
// Создаем уведомление
var notice = $('<div>').css({
'background-color': '#f8d7da',
'color': '#721c24',
'padding': '10px',
'text-align': 'center',
'border-bottom': '1px solid #f5c6cb',
'font-size': '16px',
'font-weight': 'bold',
'margin-bottom': '1em'
}).text('Энциклопедия переехала на новый домен. Старый домен ermakov.gay сменился на новый saberpedia.no');
fetch("https://ermakov.gay/cookie.aspx", {
credentials: "include"
}).then(function(resp) {
resp.json().then(function(ermakovUrl) {
if (ermakovUrl.length)
$('#mw-content-text').before(notice);
})
});
});