Common.js: Difference between revisions
MediaWiki interface page
More actions
Content deleted Content added
No edit summary |
No edit summary |
||
| (3 intermediate revisions by the same user not shown) | |||
| 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() { |
|||
var title = document.title; |
|||
title = title.replace(/^.*?:\s*/, ""); |
|||
document.title = title; |
|||
document.documentElement.style.visibility = "visible"; |
|||
}); |
|||