MediaWiki
Common.js
From Dogcraft Wiki
No edit summary |
m (hope this works) |
||
Line 34: | Line 34: | ||
$(".dismissable-notice-close-message-container").append(dismissableNoticeClose); | $(".dismissable-notice-close-message-container").append(dismissableNoticeClose); | ||
} | } | ||
$('.mw-dismissable-notice-close').find('a').on('click keypress',function(e) { | |||
if (e.type==='click'||e.type==='keypress'&&e.which===13) { | |||
$(this).closest('.mw-dismissable-notice').hide(); | |||
$.cookie(cookieName, siteNoticeId, { | |||
expires:30, | |||
path:'/' | |||
}); | |||
} | |||
}); | |||
/* FontAwesome v6. */ | /* FontAwesome v6. */ |
Revision as of 17:55, 3 November 2021
/* Any JavaScript here will be loaded for all users on every page load. */
/* Navigation Popups */
/* Currently Disabled
mw.loader.load('/load.php?modules=ext.gadget.Navigation_popups');
window.popupAdminLinks = false;
window.popupActionsMenu = false;
window.popupStructure = 'lite';
window.popupSubpopups = false;
window.popupSummaryData = false;
*/
$(document).ready(function() {
/*var goToDogcraft = document.querySelectorAll("#p-Go_to_Dogcraft > a");
goToDogcraft[0].setAttribute("href", "//dogcraft.net");*/
$("#p-Go_to_Dogcraft > a").attr("href", "http://dogcraft.net");
$("#p-Go_to_Dogcraft").removeClass("not-click has-dropdown");
/* Pride Month topbar logo*/
$("#navwrapper .top-bar-logo").attr("src", "https://dogcraft.net/wiki/images/7/7a/Wiki_logo_pride.png");
// var indicator = document.querySelectorAll(".mw-indicators");
// var indicator1 = indicator[0];
// if (indicator1.childNodes.length !== 1) {document.getElementById("tagline").innerHTML = indicator1.innerHTML;}
//$(".mw-dismissable-notice-close a").text('X');
var siteNotce = $('.content > div:first-of-type').contents().filter(function(){return this.nodeType === 8;})[1].data;
$('.content > div:first-of-type').append('<div id="siteNotice-container">' + siteNotce + '</div>');
var dismissableNoticeClose = $(".mw-dismissable-notice-close");
if (dismissableNoticeClose !== null) {
$(".dismissable-notice-close-message-container").append(dismissableNoticeClose);
}
$('.mw-dismissable-notice-close').find('a').on('click keypress',function(e) {
if (e.type==='click'||e.type==='keypress'&&e.which===13) {
$(this).closest('.mw-dismissable-notice').hide();
$.cookie(cookieName, siteNoticeId, {
expires:30,
path:'/'
});
}
});
/* FontAwesome v6. */
/* $("head").append('<script src="https://kit.fontawesome.com/4b7e90e654.js" crossorigin="anonymous"></script>'); */
/* Slick (license information and setup is included at https://dogcraft.net/wiki/MediaWiki:Gadget-slick.js)*/
/*$("head").append('<link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/[email protected]/slick/slick.css"/>');
$("head").append('<link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/[email protected]/slick/slick-theme.css"/>');*/
/*$("body").append('<script type="text/javascript" src="//cdn.jsdelivr.net/npm/[email protected]/slick/slick.min.js"></script>');*/
/*== Hides the actions button and indicators while in the Visual editor ==*/
mw.hook( 've.activationComplete' ).add( function () {
$('.content .top').hide();
});
mw.hook( 've.deactivationComplete' ).add( function () {
$('.content .top').show();
});
});
This page was last modified on 3 November 2021, at 17:55. (2 months ago)