Content deleted Content added
use .val() |
add loading message |
||
Line 55:
}
});
$(
}
function stubTagMenu(stubType) {
// Add loading message
$("#stubtagmenu").html("Loading stub tags, please wait...");
// Fetch the relevant subpage of the WikiProject
$.ajax({
url: mw.config.get("wgServer") + mw.config.get("wgScriptPath") + '/api.php?action=parse&prop=text&text=' + encodeURIComponent('__NOTOC____NOEDITSECTION__\{\{Wikipedia:WikiProject Stub sorting/Stub types/' + stubType + '}}') + '&format=json',
dataType: "json",
success: stubTagMenuRender
});
|