User:Enterprisey/undelete-backlink.js

In today's world, User:Enterprisey/undelete-backlink.js is an issue that has gained relevance in various areas of society. Whether in the personal, work, social or political sphere, User:Enterprisey/undelete-backlink.js has captured the attention of millions of people around the world. Its impact has generated debate, controversy and a growing interest in understanding its implications and consequences. From different perspectives, User:Enterprisey/undelete-backlink.js has managed to influence our lives in unexpected ways, challenging established paradigms and posing new challenges for the future. In this article, we will fully explore the impact of User:Enterprisey/undelete-backlink.js and how it has transformed our reality in recent years.
$( function () {
    if( mw.config.get( "wgPageName" ) === "Special:Undelete" &&
            window.location.search.indexOf( "timestamp=" ) >= 0 ) {
        mw.loader.using( , function () {
            $( "#bodyContent" ).prepend( $( "<div>" )
                .attr( "id", "contentSub2" )
                .append( "< ", $( "<a>" )
                    .attr( "href", mw.util.getUrl( "Special:Undelete", { target: mw.config.get( "wgRelevantPageName" ) } ) )
                    .text( "All deleted revisions" ) ) );
        } );
    }
} );