Name CnD + DM stuff

This commit is contained in:
Jeremy Zhang
2018-03-24 06:03:33 +00:00
parent 817788383d
commit 05697402df
6 changed files with 209 additions and 1 deletions

View File

@ -0,0 +1,14 @@
/* global $ */
(function () {
$(function() {
$(".brand-logo").html($(".brand-logo").html().replace(/Titan/g,'Sausage'));
$(".brand-logo .betatag").text("ALPHA");
try {
$("main > .container").html($("main > .container").html().replace(/Titan/g,'Sausage'));
$("#dblbanner").html($("#dblbanner").html().replace(/Titan/g,'Sausage'));
} catch (e) {
// nothing
}
$("nav .brand-logo img").attr("src", "https://i.imgur.com/6xPdXFV.png");
});
})();