User:Dross/common.js: Difference between revisions
Appearance
let's see if this works |
mNo edit summary |
||
Line 1: | Line 1: | ||
$(function() { | $(function() { | ||
$('div.body > ul li:last-child').after('<li id="n-createcompany"'); | $('div.body > ul li:last-child').after('<li id="n-createcompany">Create company page</li>'); | ||
$('div.body > ul li:last-child').after('<li id="n-createtld"'); | $('div.body > ul li:last-child').after('<li id="n-createtld">Create TLD page</li>'); | ||
}); | }); | ||
Revision as of 21:12, 6 October 2018
$(function() {
$('div.body > ul li:last-child').after('<li id="n-createcompany">Create company page</li>');
$('div.body > ul li:last-child').after('<li id="n-createtld">Create TLD page</li>');
});
$('#n-createcompany').onclick(function() {
var pg = prompt('Enter company page name', 'pagename');
if (pg === 'pagename') {
var p = mw.config.get('wgPagename');
} else {
var p = pg;
}
window.location("//icannwiki.org/index.php?title=" + p + "&action=edit&preload=User:Dross/Company");
}
);
$('#n-createtld').onclick(function() {
var pg = prompt('Enter TLD page name', 'pagename');
if (pg === 'pagename') {
var p = mw.config.get('wgPagename');
} else {
var p = pg;
}
window.location("//icannwiki.org/index.php?title=" + p + "&action=edit&preload=User:Dross/TLD");
}
);