MediaWiki:Common.js: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
/* Any JavaScript here will be loaded for all users on every page load. */
var split = window.location.pathname.split("/");
if(split.length == 3 && split[1] == "DB"){
$('#mw-content-text').prepend("<div style='border-top: 1px dashed black; border-bottom: 1px dashed black; padding: 3px; background: #eee; font-size: 0.8em; display: block;'><a target='_blank' style='text-decoration: none; display: block;' href='https://github.com/wowdev/WoWDBDefs/blob/master/definitions/" + split[2] + ".dbd'> A (possibly) more up-to-date version of definitions for this DBC can also be found in the WoWDBDefs repo on GitHub. <b>Click this box view it.</b></a></div>");
}

Revision as of 16:20, 28 April 2019

var split = window.location.pathname.split("/");
if(split.length == 3 && split[1] == "DB"){
$('#mw-content-text').prepend("<div style='border-top: 1px dashed black; border-bottom: 1px dashed black; padding: 3px; background: #eee; font-size: 0.8em; display: block;'><a target='_blank' style='text-decoration: none; display: block;' href='https://github.com/wowdev/WoWDBDefs/blob/master/definitions/" + split[2] + ".dbd'> A (possibly) more up-to-date version of definitions for this DBC can also be found in the WoWDBDefs repo on GitHub. <b>Click this box view it.</b></a></div>");
}