MediaWiki:Common.js: Difference between revisions
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() { */ | |||
/* 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(); */ | |||
/* }); */ | |||
/* }); */ | |||
$(document).ready( function() { | $(document).ready( function() { | ||
$('#tree').bind('fancytreeinit', function(event, data) { | |||
data.tree.makeTitleVisible(); | |||
}); | |||
}); | }); | ||
Revision as of 13:39, 3 August 2016
/* 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(); */
/* }); */
/* }); */
$(document).ready( function() {
$('#tree').bind('fancytreeinit', function(event, 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" );
});