Difference between revisions of "MediaWiki:Common.js"

From Conceptual Reconstructionism Project
Line 1: Line 1:
/* Any JavaScript here will be loaded for all users on every page load. */
/* Any JavaScript here will be loaded for all users on every page load. */
console.debug('fine');
console.debug('fine');
window.onload = function() {
window.onload = function b() {
console.debug('so good');
console.debug('so good');
$('*[data-def]').click( function(){
$('*[data-def]').click( function a(){
     var url = location.href;
     var url = location.href;
     location.href = "#" + this.dataDef;
     location.href = "#" + this.dataDef;

Revision as of 09:43, 6 December 2021

/* Any JavaScript here will be loaded for all users on every page load. */
console.debug('fine');
window.onload = function b() {
console.debug('so good');
$('*[data-def]').click( function a(){
    var url = location.href;
    location.href = "#" + this.dataDef;
    history.replaceState(null, null, url);
} );
console.debug('very fine');
}