Difference between revisions of "MediaWiki:Sandbox.js"

From Virtuverse Wiki
Jump to navigation Jump to search
Line 1: Line 1:
$(function () {
+
$(document).ready(function() {
  console.log( 'Sandbox JS loaded!!' );
+
  console.log( mw.config );
 
   $('#sandbox-output').html('Sandbox JS loaded!');
 
   $('#sandbox-output').html('Sandbox JS loaded!');
}());
+
});

Revision as of 02:26, 6 August 2019

$(document).ready(function() {
   console.log( mw.config );
  $('#sandbox-output').html('Sandbox JS loaded!');
});