Difference between revisions of "MediaWiki:Common.js"
From KIproBatt Wiki
Simon Stier (talk | contribs) (add direct links to form) |
(No difference)
|
Revision as of 09:09, 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).attr('data-bs-title');
url = '/w/index.php?title=Special:FormEdit/' + form + '/' + pagename;
//console.log('New URL: ' + url);
$(this).attr('href', url);
}
});
});