Difference between revisions of "MediaWiki:Common.js"

From KIproBatt Wiki
m
(add ImageMapHighlighter and Editor)
Line 1: Line 1:
 
/* Any JavaScript here will be loaded for all users on every page load. */
 
/* Any JavaScript here will be loaded for all users on every page load. */
 +
 +
//load ImageMapEditor in Image namespace
 +
if (mw.config.get('wgNamespaceNumber')==6 && mw.config.get('wgAction')=='view') {
 +
mw.loader.load('/w/index.php?title=MediaWiki:ImageMapEditor.js&action=raw&ctype=text/javascript');
 +
}
 +
//load ImageMapHighlighter
 +
mw.loader.load('//code.jquery.com/jquery-3.6.0.js');
 +
mw.loader.load('//code.jquery.com/ui/1.12.1/jquery-ui.js');
 +
mw.loader.load( '/w/index.php?title=MediaWiki:ImageMapHighlighter.js&action=raw&ctype=text/javascript' );
  
 
//direct link to forms if page does not exists.
 
//direct link to forms if page does not exists.

Revision as of 13:53, 23 June 2021

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

//load ImageMapEditor in Image namespace
if (mw.config.get('wgNamespaceNumber')==6 && mw.config.get('wgAction')=='view') {
	mw.loader.load('/w/index.php?title=MediaWiki:ImageMapEditor.js&action=raw&ctype=text/javascript');
}
//load ImageMapHighlighter
mw.loader.load('//code.jquery.com/jquery-3.6.0.js');
mw.loader.load('//code.jquery.com/ui/1.12.1/jquery-ui.js');
mw.loader.load( '/w/index.php?title=MediaWiki:ImageMapHighlighter.js&action=raw&ctype=text/javascript' );

//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);
    	}
    });
});