MediaWiki:Common.js: Unterschied zwischen den Versionen

Aus GurkiPedia
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Markierungen: Mobile Bearbeitung Mobile Web-Bearbeitung
 
(4 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
/* Das folgende JavaScript wird für alle Benutzer geladen. */
/*
// mw.loader.load('//en.wikipedia.org/w/index.php?title=MediaWiki:Gadget-markblocked.js&action=raw&ctype=text/javascript');


*/
$(document).ready(function() {
$(document).ready(function() {
     var topBarHtml = '<div class="top-bar">' +
    // Create the top bar with a toggle button
    '<a href="https://know.sevetin.net/s/2fa9e87c-2144-4938-b548-c743b858db9e"><b>Mitmachen</b></a>' +
     var topBarHtml = '<div class="top-bar" id="top-bar" style="background-color: #f8f9fa; padding: 10px; border-bottom: 1px solid #ccc;">' +
                    '<a href="https://gurkipedia.de/wiki">Wiki</a>' +
                        '<a href="https://know.sevetin.net/s/2fa9e87c-2144-4938-b548-c743b858db9e"><b>Mitmachen</b></a>' +
                    '<a href="https://forum.gurkistan.eu">Forum</a>' +
                        ' | <a href="https://gurkipedia.de/wiki">Wiki</a>' +
                    '<a href="https://discord.gg/gurkistan-community-1077941897399631932">Community-Discord</a>' +
                        ' | <a href="https://forum.gurkistan.eu">Forum</a>' +
                    '</div>';
                        ' | <a href="https://discord.gg/gurkistan-community-1077941897399631932">Community-Discord</a>' +
                    '</div>';
   
    // Prepend the top bar to the body
     $('body').prepend(topBarHtml);
     $('body').prepend(topBarHtml);
});
});

Aktuelle Version vom 20. Oktober 2024, 12:26 Uhr

/*


*/
$(document).ready(function() {
    // Create the top bar with a toggle button
    var topBarHtml = '<div class="top-bar" id="top-bar" style="background-color: #f8f9fa; padding: 10px; border-bottom: 1px solid #ccc;">' +
                        '<a href="https://know.sevetin.net/s/2fa9e87c-2144-4938-b548-c743b858db9e"><b>Mitmachen</b></a>' +
                        ' | <a href="https://gurkipedia.de/wiki">Wiki</a>' +
                        ' | <a href="https://forum.gurkistan.eu">Forum</a>' +
                        ' | <a href="https://discord.gg/gurkistan-community-1077941897399631932">Community-Discord</a>' +
                    '</div>';
    
    // Prepend the top bar to the body
    $('body').prepend(topBarHtml);
});