MediaWiki:Common.js: Difference between revisions

Mr Pie 5 (talk | contribs)
Created page with "Any JavaScript here will be loaded for all users on every page load.: $(function(){ // Creates a sliding gallery (carousel), such as the one on the main page functio..."
 
Mr Pie 5 (talk | contribs)
Add left fixed sidebar
Line 2: Line 2:


$(function(){
$(function(){
// Adds the left fixed sidebar
var sidebar = $("<nav>").attr("id","sidebar").appendTo(document.body);
var sidebarList = $("<ul>").attr("id", "sidebar__links").appendTo(sidebar);
$("<a>").text("Wiki").attr("href","https://wiki.geministation.com").append($("<img>").attr("src", "https://wiki.geministation.com/images/f/f7/G.png")).appendTo(sidebarList);
var links = [
["Mods", ""],
["Items", ""],
["Ships", ""],
["Places", ""],
["Missions", ""],
["Guides", ""]
]
for(var link of links){
$("<a>").text(link[0]).attr("href","https://wiki.geministation.com/" + link[0]).append($("<img>").attr("src", link[1])).appendTo(sidebarList);
}
// Creates a sliding gallery (carousel), such as the one on the main page
// Creates a sliding gallery (carousel), such as the one on the main page