Unterschied: MediaWiki:Common.js
MediaWiki interface page
Ansichten
Aktionen
Namensräume
Varianten
Werkzeuge
Admin (Diskussion | Beiträge) |
Admin (Diskussion | Beiträge) |
||
Zeile 9: | Zeile 9: | ||
var path = window.location.pathname; | var path = window.location.pathname; | ||
if (path.includes('redlink')) { | if (path.includes('redlink')) { | ||
window.location. | window.location.href = path.replace('edit', 'formedit'); | ||
} | } |
Version vom 16. Juni 2021, 06:44 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.href = path.replace('edit', 'formedit');
}