Difference between revisions of "MediaWiki:Common.js"

From Sage Evolution SDK | Documentation Portal
Jump to: navigation, search
(Created page with "Any JavaScript here will be loaded for all users on every page load.: $(document).ready(function() { if ( wgUserName != null ) { $('#p-tb').css({ "display": "block" })...")
(No difference)

Revision as of 12:59, 25 November 2015

/* Any JavaScript here will be loaded for all users on every page load. */
$(document).ready(function() {
 if ( wgUserName != null ) {
  $('#p-tb').css({ "display": "block" });
 }
});