| 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. */ |
| | + | mw.loader.load('/w/index.php?title=MediaWiki:Testing.js&action=raw&ctype=text/javascript') |
| | + | |
| | + | //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( '/w/index.php?title=MediaWiki:ImageMapHighlighter.js&action=raw&ctype=text/javascript' ); |
| | + | |
| | + | //load D3graphviz.js |
| | + | //mw.loader.load( 'https://fraunhofer-isc.github.io/mediawiki-css-js/js/D3graphviz.js' ); //moved to $wgHooks['BeforePageDisplay'][] |
| | + | //mw.loader.load( '/w/index.php?title=MediaWiki:D3graphviz.js&action=raw&ctype=text/javascript' ); moved to extension |
| | + | |
| | + | /* Reveal presentation framework */ |
| | + | mw.loader.load('/w/index.php?title=MediaWiki:Reveal.js&action=raw&ctype=text/javascript'); |
| | | | |
| | //direct link to forms if page does not exists. | | //direct link to forms if page does not exists. |
| Line 11: |
Line 26: |
| | 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); |