MediaWiki:Minerva.js: Unterschied zwischen den Versionen
Die Seite wurde neu angelegt: „→All JavaScript here will be loaded for users of the MinervaNeue skin: →Any JavaScript here will be loaded for users using the mobile site Any JavaScript here is loaded instead of MediaWiki:Common.js for users using the mobile site: // See: https://en.wikipedia.org/wiki/Help:Collapsing // Restore collapsible elements by loading the jQuery module for them. $( function (mw, $) { 'use strict'; mw.loader.using('jquery.makeCollapsible', functi…“ |
(kein Unterschied)
|
Aktuelle Version vom 24. Juni 2024, 09:28 Uhr
/* All JavaScript here will be loaded for users of the MinervaNeue skin */ /* Any JavaScript here will be loaded for users using the mobile site Any JavaScript here is loaded instead of MediaWiki:Common.js for users using the mobile site */ // See: https://en.wikipedia.org/wiki/Help:Collapsing // Restore collapsible elements by loading the jQuery module for them. $( function (mw, $) { 'use strict'; mw.loader.using('jquery.makeCollapsible', function ( ) { $( '.mw-collapsible' ).makeCollapsible ( ); } ); } (mediaWiki, jQuery) );