Difference between revisions of "MediaWiki: Common.js"
From Genesys Documentation
m (1 revision imported) |
|
(No difference)
|
Revision as of 17:21, June 6, 2019
/* Any JavaScript here will be loaded for all users on every page load. */
$(function () {
if($("div#public-uc-heading").length) {
var styles = {
float : "none",
fontSize: "50px",
marginBottom: "15px",
color: "#fff"
};
$("#firstHeading").css( styles ).prependTo("#public-uc-heading");
}
}());