View source for MediaWiki:Common.js
You do not have permission to edit this page, for the following reasons:
You can view and copy the source of this page.
/* Any JavaScript here will be loaded for all users on every page load. */
$(function () {
// Tworzymy nowy link
var link = $('<a>')
.attr('href', '/wiki/Deklaracja_dostepnosci')
.text('Deklaracja dostępności');
$('<li>').append(link).appendTo('#footer-places').parent();
});
$(function () {
const searchInput = $('#searchInput');
if (!searchInput.length) return;
searchInput.autocomplete({
delay: 150,
minLength: 2,
source: function (request, response) {
$.getJSON(mw.util.wikiScript('api'), {
010
1:0
Return to MediaWiki:Common.js.