User:Dross/common.js: Difference between revisions
Appearance
sigh |
No edit summary |
||
Line 1: | Line 1: | ||
$(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() { | function crcom() { | ||
window.location.href = "//icannwiki.org/index.php?title=" + prompt("Enter COMPANY page name") + "&action=edit&preload=User:Dross/Company"; | window.location.href = "//icannwiki.org/index.php?title=" + prompt("Enter COMPANY page name") + "&action=edit&preload=User:Dross/Company"; | ||
} | } | ||
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"; | ||
} | } | ||
Revision as of 21:57, 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";
}