MediaWiki:Common.js: Unterschied zwischen den Versionen

Aus GurkiPedia
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Markierungen: Mobile Bearbeitung Mobile Web-Bearbeitung
 
(Eine dazwischenliegende Version desselben Benutzers wird nicht angezeigt)
Zeile 6: Zeile 6:
     // Create the top bar with a toggle button
     // 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;">' +
     var topBarHtml = '<div class="top-bar" id="top-bar" style="background-color: #f8f9fa; padding: 10px; border-bottom: 1px solid #ccc;">' +
                        '<button id="toggle-top-bar" style="float: right; background: none; border: none; cursor: pointer; font-size: 16px;">[Hide]</button>' +
                         '<a href="https://know.sevetin.net/s/2fa9e87c-2144-4938-b548-c743b858db9e"><b>Mitmachen</b></a>' +
                         '<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://gurkipedia.de/wiki">Wiki</a>' +
Zeile 15: Zeile 14:
     // Prepend the top bar to the body
     // Prepend the top bar to the body
     $('body').prepend(topBarHtml);
     $('body').prepend(topBarHtml);
    // Toggle functionality for hiding/showing the top bar
    $('#toggle-top-bar').click(function() {
        var topBar = $('#top-bar');
        if (topBar.is(':visible')) {
            topBar.hide();
            $(this).text('[Show]');
        } else {
            topBar.show();
            $(this).text('[Hide]');
        }
    });
});
});

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);
});