« MediaWiki:Common.js » : différence entre les versions
De Wiki Campus Cyber
Aucun résumé des modifications |
Aucun résumé des modifications Balise : Révoqué |
||
Ligne 29 : | Ligne 29 : | ||
$("#langue_interface a.uls-trigger").text("FR | EN"); | $("#langue_interface a.uls-trigger").text("FR | EN"); | ||
}) | }) | ||
mw.hook( 'wikipage.categories' ).add( function ( $content ) { | |||
if ( mw.config.get( 'wgCategories' ).length === 0 ) { | |||
alert( 'Please add categories to this page' ); | |||
} | |||
} ); |
Version du 15 novembre 2023 à 15:24
/* 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; } ); }) jQuery( document ).ready( function( $ ) { $("#pt-uls").detach().appendTo("#langue_interface"); $("#langue_interface a.uls-trigger").text("FR | EN"); }) /** 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"); }) mw.hook( 'wikipage.categories' ).add( function ( $content ) { if ( mw.config.get( 'wgCategories' ).length === 0 ) { alert( 'Please add categories to this page' ); } } );