MediaWiki:Common.js: Difference between revisions

Jump to navigation Jump to search
no edit summary
No edit summary
Tag: Undo
No edit summary
Line 702: Line 702:
     });
     });
}
}
$(document).ready(function() {
    // Get the page title
    var pageTitle = mw.config.get('wgTitle');
    // Create the download button
    var downloadButton = $('<a>')
        .attr('href', '/find_epub.php?title=' + encodeURIComponent(pageTitle))
        .text('Download EPUB')
        .css({
            'display': 'inline-block',
            'padding': '8px 16px',
            'background-color': '#4CAF50',
            'color': '#ffffff',
            'text-align': 'center',
            'border-radius': '4px',
            'text-decoration': 'none',
            'margin-top': '10px'
        });
    // Add the button to the page header
    $('#firstHeading').after(downloadButton);
});

Navigation menu