MediaWiki:Common.js: Unterschied zwischen den Versionen
Aus MM*Stat
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
Zeile 2: | Zeile 2: | ||
$(function () { | $(function () { | ||
answer = new mw.Api().get( { action: "query", titles: [ "R", "Hauptseite" ] } ).done( | |||
function ( result ) { | function ( result ) { | ||
nonmissing = []; | |||
pages = result.query.pages; | pages = result.query.pages; | ||
for (i = 0; i<pages.length; i++) { | for (i = 0; i<pages.length; i++) { | ||
if (!('missing' in pages[i])) | if (!('missing' in pages[i])) nonmissing.push(pages[i].title); | ||
} | } | ||
html = ''; | |||
if (nonmissing.length) { | |||
html = '<b>Unterseiten:</b>' + nonmissing.join(' '); | |||
} | |||
alert(html) | |||
}); | }); | ||
}()); | }()); |
Version vom 21. November 2018, 15:14 Uhr
/* Das folgende JavaScript wird für alle Benutzer geladen. */
$(function () {
answer = new mw.Api().get( { action: "query", titles: [ "R", "Hauptseite" ] } ).done(
function ( result ) {
nonmissing = [];
pages = result.query.pages;
for (i = 0; i<pages.length; i++) {
if (!('missing' in pages[i])) nonmissing.push(pages[i].title);
}
html = '';
if (nonmissing.length) {
html = '<b>Unterseiten:</b>' + nonmissing.join(' ');
}
alert(html)
});
}());