Difference between revisions of "MediaWiki:Common.js"

From Dark Prospects Rules
Jump to navigation Jump to search
Line 5: Line 5:
 
     tocelement.attr('id','sidetoc');
 
     tocelement.attr('id','sidetoc');
 
     $('#mw-panel').append(tocelement);
 
     $('#mw-panel').append(tocelement);
 +
    $('#mw-panel').position('fixed');
 
}
 
}
  
 
$( "document" ).ready( function () { toccopy(); } );
 
$( "document" ).ready( function () { toccopy(); } );

Revision as of 16:37, 11 August 2017

/* Any JavaScript here will be loaded for all users on every page load. */

function toccopy () {
    var tocelement = $('#toc').clone();
    tocelement.attr('id','sidetoc');
    $('#mw-panel').append(tocelement);
    $('#mw-panel').position('fixed');
}

$( "document" ).ready( function () { toccopy(); } );