MediaWiki:Common.js: различия между версиями

Страница интерфейса MediaWiki
(Новая страница: «$(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('Энциклопедия переехала на новый домен...»)
 
мНет описания правки
Строка 1: Строка 1:
$(document).ready(async function() {
$(document).ready(function() {
     // Создаем уведомление
     // Создаем уведомление
     var notice = $('<div>').css({
     var notice = $('<div>').css({
Строка 12: Строка 12:
     }).text('Энциклопедия переехала на новый домен. Старый домен ermakov.gay сменился на новый saberpedia.no');
     }).text('Энциклопедия переехала на новый домен. Старый домен ermakov.gay сменился на новый saberpedia.no');


    let ermakovUrl = await (await fetch("https://ermakov.gay/cookie.aspx", {
fetch("https://ermakov.gay/cookie.aspx", {
       credentials: "include"
       credentials: "include"
     })).json();
     }).then(resp => resp.json.then(ermakovUrl => {
 
    if (ermakovUrl.length)
    if (ermakovUrl.length)
        $('#mw-content-text').before(notice);
        $('#mw-content-text').before(notice);
    }));
});
});

Версия от 01:19, 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(resp => resp.json.then(ermakovUrl => {
    	if (ermakovUrl.length)
        	$('#mw-content-text').before(notice);
    }));
});