Difference between revisions of "MediaWiki:Common.js"

From KIproBatt Wiki
(remove bluespice dependancy)
m
Line 11: Line 11:
 
     if (url.indexOf('Property:') == -1)
 
     if (url.indexOf('Property:') == -1)
 
     {
 
     {
     pagename = $(this).attr('title');
+
     pagename = $(this).text();
 
     url = '/w/index.php?title=Special:FormEdit/' + form + '/' + pagename;
 
     url = '/w/index.php?title=Special:FormEdit/' + form + '/' + pagename;
 
     //console.log('New URL: ' + url);
 
     //console.log('New URL: ' + url);

Revision as of 10:14, 20 April 2021

/* Any JavaScript here will be loaded for all users on every page load. */

//direct link to forms if page does not exists.
//usage example: <div class='link-to-form-if-new' id='Semantic Element'>query result, links, etc.</div>
$('div.link-to-form-if-new').each(function() {
	var form = $(this).attr('id');
	//console.log('Form: ' + form);
    $(this).find('a.new').each(function() {
    	url = $(this).attr('href');
    	//console.log('URL: ' + url);
    	if (url.indexOf('Property:') == -1)
    	{
    		pagename = $(this).text();
    		url = '/w/index.php?title=Special:FormEdit/' + form + '/' + pagename;
    		//console.log('New URL: ' + url);
    		$(this).attr('href', url);
    	}
    });
});