Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
Zeile 13: | Zeile 13: | ||
$( window ).on( 'load', function( ) { | $( window ).on( 'load', function( ) { | ||
// Checkliste zurücksetzen | |||
$( ".checklist .aktionen a#resetChecklist" ).click( function( ) { | |||
$(".checklist :checkbox").each(function () { | |||
$(this).removeAttr("checked"); | |||
}) | |||
} ); | |||
// Checklisten formatieren | |||
$(".checklist :checkbox").labelauty({ label: false }); | |||
} ); | } ); |
Version vom 26. Juni 2017, 10:44 Uhr
// Das Script Common.js wird immer eingebunden und eignet sich deshalb zur Verknüpfung weiterer Scripte.
// importScript('MediaWiki:Common.js/Querystring.js');
// importScript('MediaWiki:Common.js/Datatables.js');
// importScript('MediaWiki:Common.js/Labelauty.js');
// importScript('MediaWiki:Common.js/Highlight.js');
// importScript('MediaWiki:Common.js/Ready.js');
mw.loader.load( 'http://wiki.llz.uni-halle.de/index.php?title=MediaWiki:Common.js/Faq.js&action=raw&ctype=text/javascript' );
mw.loader.load( 'http://wiki.llz.uni-halle.de/index.php?title=MediaWiki:Common.js/Webfont.js&action=raw&ctype=text/javascript' );
$( window ).on( 'load', function( ) {
// Checkliste zurücksetzen
$( ".checklist .aktionen a#resetChecklist" ).click( function( ) {
$(".checklist :checkbox").each(function () {
$(this).removeAttr("checked");
})
} );
// Checklisten formatieren
$(".checklist :checkbox").labelauty({ label: false });
} );