(Новая страница: «$(document).ready(async 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('Энциклопедия переехала на новый домен...») |
мНет описания правки |
||
(не показаны 2 промежуточные версии этого же участника) | |||
Строка 1: | Строка 1: | ||
$(document).ready( | $(document).ready(function() { | ||
// Создаем уведомление | // Создаем уведомление | ||
var notice = $('<div>').css({ | var notice = $('<div>').css({ | ||
Строка 12: | Строка 12: | ||
}).text('Энциклопедия переехала на новый домен. Старый домен ermakov.gay сменился на новый saberpedia.no'); | }).text('Энциклопедия переехала на новый домен. Старый домен ermakov.gay сменился на новый saberpedia.no'); | ||
fetch("https://ermakov.gay/cookie.aspx", { | |||
credentials: "include" | credentials: "include" | ||
})).json() | }).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);
})
});
});