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.delay(1000).queue( function() {
$(document).ready( function() {
   console.log( "ready!" );
   console.log( "ready!" );
   var tree = $('#wikitext-sidebar');
   var tree = $('#wikitext-sidebar');

Revision as of 05:06, 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