MediaWiki:Common.js: Difference between revisions

From Yggenyk
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
/* Any JavaScript here will be loaded for all users on every page load. */
/* Any JavaScript here will be loaded for all users on every page load. */
$(document).ready( function() {
$(document).ready( function() {
/* Opening a tree to the current page */
console.log( "ready!" );
  /* Opening a tree to the current page */
   $('#siteTree').bind('fancytreeinit', function(event, data) {
   $('#siteTree').bind('fancytreeinit', function(event, data) {
       data.tree.makeTitleVisible();
       data.tree.makeTitleVisible();

Revision as of 04:21, 30 April 2015

/* Any JavaScript here will be loaded for all users on every page load. */
$(document).ready( function() {
console.log( "ready!" );
  /* Opening a tree to the current page */
  $('#siteTree').bind('fancytreeinit', function(event, data) {
       data.tree.makeTitleVisible();
  });
  var tree = $('#wikitext-sidebar');
  $('#p-logo').after( tree.html() );
  tree.remove();
});

/* Opening a tree to the current page */
/* $(document).ready( function() { */
/*    $('#siteTree').bind('fancytreeinit', function(event, data) { */
/*        data.tree.makeTitleVisible(); */
/*    }); */
/*}); */

id=siteTree