Difference between revisions of "MediaWiki:Common.js"
From KIproBatt Wiki
Simon Stier (talk | contribs) (remove bluespice dependancy) |
Simon Stier (talk | contribs) m |
||
Line 11: | Line 11: | ||
if (url.indexOf('Property:') == -1) | if (url.indexOf('Property:') == -1) | ||
{ | { | ||
− | pagename = $(this). | + | 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 09: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);
}
});
});