User:Dross/common.js: Difference between revisions
Appearance
No edit summary |
skip purge confirmation dialogue |
||
Line 10: | Line 10: | ||
function crtld() { | function crtld() { | ||
window.location.href = "//icannwiki.org/index.php?title=" + prompt("Enter TLD page name", ".com") + "&action=edit&preload=User:Dross/TLD"; | window.location.href = "//icannwiki.org/index.php?title=" + prompt("Enter TLD page name", ".com") + "&action=edit&preload=User:Dross/TLD"; | ||
} | |||
/* Automate purge confirmation dialog */ | |||
if ( mw.config.get( 'wgAction' ) === 'purge' ) { | |||
$('form[action*="action=purge"]').submit(); | |||
} | } |
Latest revision as of 22:03, 6 October 2018
$(function() {
$('#p-navigation > div ul li:last-child').after('<li id="n-createcompany"><a href="#" onclick="crcom()">Create company page</a></li>');
$('#p-navigation > div ul li:last-child').after('<li id="n-createtld"><a href="#" onclick="crtld()">Create TLD page</a></li>');
});
function crcom() {
window.location.href = "//icannwiki.org/index.php?title=" + prompt("Enter COMPANY page name") + "&action=edit&preload=User:Dross/Company";
}
function crtld() {
window.location.href = "//icannwiki.org/index.php?title=" + prompt("Enter TLD page name", ".com") + "&action=edit&preload=User:Dross/TLD";
}
/* Automate purge confirmation dialog */
if ( mw.config.get( 'wgAction' ) === 'purge' ) {
$('form[action*="action=purge"]').submit();
}