Difference between revisions of "Template:USTC-Software/script"
Line 25: | Line 25: | ||
node.rel = "shortcut icon"; | node.rel = "shortcut icon"; | ||
node.href = "/wiki/images/6/69/USTC-Software-Favicon.png"; | node.href = "/wiki/images/6/69/USTC-Software-Favicon.png"; | ||
+ | document.head.appendChild(node); | ||
}; | }; | ||
$(USTC.init); | $(USTC.init); |
Revision as of 09:53, 18 September 2015
window.USTC = {}; USTC.init = function() {
$("#top_menu_under").remove(); $("#firstHeading").remove(); var p = $("#mw-content-text > p") p.splice(0, 1); p.remove(); $("#bodyContent div.visualClear").remove(); USTC.load_css("//fonts.googleapis.com/css?family=Montserrat|Josefin+Sans"); USTC.load_css_wiki("style"); USTC.load_favicon();
}; USTC.load_css = function(name) {
var node = document.createElement("link"); node.rel = "stylesheet"; node.href = name; node.type = "text/css"; document.head.appendChild(node);
}; USTC.load_css_wiki = function(name) {
USTC.load_css("/Template:USTC-Software/" + name + "?action=raw&ctype=text/css");
}; USTC.load_favicon = function() {
var node = document.createElement("link"); node.rel = "shortcut icon"; node.href = "/wiki/images/6/69/USTC-Software-Favicon.png"; document.head.appendChild(node);
}; $(USTC.init);