Anonymous

Changes

From KIproBatt Wiki
715 bytes added ,  10:09, 20 April 2021
add direct links to form
/* 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);
}
});
});
Bots, bulkpusher, Bureaucrats, checkuser, filepusher, Interface administrators, oversight, pusher, rdfioadministrator, rdfiocurator, Administrators (Semantic MediaWiki), Curators (Semantic MediaWiki), Editors (Semantic MediaWiki), Administrators
5,444

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.