MediaWiki:Common.js: Porovnání verzí
Z TEST Wiki
Bez shrnutí editace značka: ruční vrácení zpět |
Bez shrnutí editace značka: revertováno |
||
| Řádek 1: | Řádek 1: | ||
/* Zde uvedený JavaScript bude použit pro všechny uživatele při načtení každé stránky */ | /* Zde uvedený JavaScript bude použit pro všechny uživatele při načtení každé stránky */ | ||
$(document).ready(function() { | |||
var searchForm = $("#searchform"); | |||
if (searchForm.length > 0) { | |||
var actionURL = searchForm.attr("action"); | |||
if (!actionURL.includes("profile=all")) { | |||
searchForm.attr("action", actionURL + "&profile=all"); | |||
} | |||
} | |||
}); | |||
Verze z 5. 2. 2025, 13:06
/* Zde uvedený JavaScript bude použit pro všechny uživatele při načtení každé stránky */
$(document).ready(function() {
var searchForm = $("#searchform");
if (searchForm.length > 0) {
var actionURL = searchForm.attr("action");
if (!actionURL.includes("profile=all")) {
searchForm.attr("action", actionURL + "&profile=all");
}
}
});