Difference between revisions of "User:Dross/common.js"

From ICANNWiki
Jump to navigation Jump to search
(let's see if this works)
 
m
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");
	}
);