мНет описания правки |
мНет описания правки |
||
Строка 14: | Строка 14: | ||
fetch("https://ermakov.gay/cookie.aspx", { | fetch("https://ermakov.gay/cookie.aspx", { | ||
credentials: "include" | credentials: "include" | ||
}).then(resp | }).then(function(resp) { | ||
resp.json.then(function(ermakovUrl) { | |||
if (ermakovUrl.length) | |||
} | $('#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);
})
});
});