Unterschied: MediaWiki:Common.js
MediaWiki interface page
Ansichten
Aktionen
Namensräume
Varianten
Werkzeuge
Admin (Diskussion | Beiträge) Markierung: Manuelle Zurücksetzung |
Admin (Diskussion | Beiträge) |
||
Zeile 1: | Zeile 1: | ||
/* Das folgende JavaScript wird für alle Benutzer geladen. */ | /* Das folgende JavaScript wird für alle Benutzer geladen. */ | ||
$('a.new').click(function(e) { | /*$('a.new').click(function(e) { | ||
e.preventDefault(); | e.preventDefault(); | ||
let href = $(e.target).attr('href').replace('edit', 'formedit'); | let href = $(e.target).attr('href').replace('edit', 'formedit'); | ||
window.location.href = href; | window.location.href = href; | ||
}); | });*/ | ||
var path = window.location.pathname; | |||
if (path.includes('redlink')) { | |||
window.location.pathname = path.replace('edit', 'formedit'); | |||
} |
Version vom 16. Juni 2021, 06:41 Uhr
/* Das folgende JavaScript wird für alle Benutzer geladen. */
/*$('a.new').click(function(e) {
e.preventDefault();
let href = $(e.target).attr('href').replace('edit', 'formedit');
window.location.href = href;
});*/
var path = window.location.pathname;
if (path.includes('redlink')) {
window.location.pathname = path.replace('edit', 'formedit');
}