Content deleted Content added
Manishearth (talk | contribs) No edit summary |
Amorymeltzer (talk | contribs) m Remove legacy globals per phab:T72470 (via WP:JWB) |
||
(11 intermediate revisions by one other user not shown) | |||
Line 1:
/*
This script allows you to use the "Edit:" namespace
Type Edit:''pagename'' in the search box and you will be redirected to the edit page of the page entered. For example, typing "Edit:Example" will take you [http://en.wikipedia.org/w/index.php?title=Example&action=edit here] instead of [http://en.wikipedia.org/w/index.php?title=Special%3ASearch&search=Edit%3AExample&go=Go here]
*/
if(document.___location.toString().indexOf("index.php?title=Special:Search&search=")!=-1){
var search=document.___location.toString().split("index.php?title=Special:Search&search=")[1].split("&go=Go")[0]
if(search.toLowerCase().indexOf("
document.___location=
}
}
if(document.___location.toString().indexOf("index.php?title=Special%3ASearch&search=")!=-1){
var search=document.___location.toString().split("index.php?title=Special%3ASearch&search=")[1].split("&go=Go")[0]
if(search.toLowerCase().indexOf("edit%3a")!= -1){
document.___location=mw.config.get('wgServer') + "/w/index.php?title="+ search.toLowerCase().split("edit%3a")[1]+ "&action=edit"
}
|