Sem resumo de edição |
Sem resumo de edição |
||
Linha 8: | Linha 8: | ||
/* Listar Categorias */ | /* Listar Categorias */ | ||
fetch('/api.php?action=query&list=allcategories&aclimit=100&format=json&origin=*') | fetch('/api.php?action=query&list=allcategories&aclimit=100&format=json&origin=*') | ||
.then(res => res.json()) | .then(res => res.json()) | ||
Linha 17: | Linha 16: | ||
const link = document.createElement('a'); | const link = document.createElement('a'); | ||
const catName = cat['*']; | const catName = cat['*']; | ||
link.href = '/ | link.href = '/index.php/Category:' + encodeURIComponent(catName); | ||
link.textContent = catName; | link.textContent = catName; | ||
li.appendChild(link); | li.appendChild(link); |