« MediaWiki:Common.js » : différence entre les versions
De Wiki Campus Cyber
Aucun résumé des modifications |
Aucun résumé des modifications |
||
Ligne 17 : | Ligne 17 : | ||
window.location = url; | window.location = url; | ||
} ); | } ); | ||
}) | }) | ||
Ligne 29 : | Ligne 24 : | ||
$("#langue_interface a.uls-trigger").text("FR | EN"); | $("#langue_interface a.uls-trigger").text("FR | EN"); | ||
}) | }) | ||
jQuery( document ).ready( function( $ ) { | jQuery( document ).ready( function( $ ) { | ||
$("#matomo-opt-out"). | $("#matomo-opt-out") ( | ||
mw.loader.load( 'https://commons.wikimedia.org/w/index.php?title=MediaWiki:Gadget-HotCat.js&action=raw&ctype=text/javascript' ) | |||
); | |||
}) | }) |
Version du 15 novembre 2023 à 16:41
/* Tout JavaScript présent ici sera exécuté par tous les utilisateurs à chaque chargement de page. */ /* Clic sur l'entièreté des div RSS de la page d'accueil */ jQuery( document ).ready( function( $ ) { // on post click go to article url $( '.rss-item' ).unbind().click(function() { var url = $(this).find("a").attr("href"); window.open(url, '_blank'); } ); }) /* Clic sur l'entièreté des div #ask de la page d'accueil */ jQuery( document ).ready( function( $ ) { // on post click go to article url $( '.class-item' ).unbind().click(function() { var url = $(this).find("a").attr("href"); window.location = url; } ); }) /** Déplace le sélecteur de langue **/ jQuery( document ).ready( function( $ ) { $("#pt-uls").detach().appendTo("#langue_interface"); $("#langue_interface a.uls-trigger").text("FR | EN"); }) jQuery( document ).ready( function( $ ) { $("#matomo-opt-out") ( mw.loader.load( 'https://commons.wikimedia.org/w/index.php?title=MediaWiki:Gadget-HotCat.js&action=raw&ctype=text/javascript' ) ); })