MediaWiki:Common.js: Difference between revisions

From Yggenyk
Jump to navigation Jump to search
No edit summary
No edit summary
Line 20: Line 20:
/*    }); */
/*    }); */
/*}); */
/*}); */
    $( document ).ready(function() {
        console.log( "document loaded" );
    });
    $( window ).load(function() {
        console.log( "window loaded" );
    });

Revision as of 04:53, 30 April 2015

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

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

    $( document ).ready(function() {
        console.log( "document loaded" );
    });
 
    $( window ).load(function() {
        console.log( "window loaded" );
    });

id=siteTree