|
|
Line 1: |
Line 1: |
| /* Any JavaScript here will be loaded for all users on every page load. */
| |
| var $jquery_dir = '/jquery/';
| |
|
| |
|
| // Install jQuery
| | function addJs(js) { $('<script type="text/javascript" src="' + js + '"></script>').insertAfter('#globalWrapper'); } |
| document.write('<script type="text/javascript" src="'
| | function addCss(css) { $('head').append('<link rel="stylesheet" type="text/css" href="' + css + '">'); } |
| + $jquery_dir + 'jquery.js"></' + 'script>'); | |
|
| |
|
| // install Google Search
| | $(document).ready(function() { |
| // document.write('<script type="text/javascript" src="'
| | addJs('https://vanisource.org/js-include/vanisearch-template-adjust.js'); |
| // + 'http://vanipedia.org/w/index.php?title=MediaWiki:GoogleSearch.js'
| | addJs('https://vanisource.org/js/view_mode_production_vanisource.js'); |
| // + '&action=raw&ctype=text/javascript"></' + 'script>');
| | addCss('https://vanisource.org/css/view_mode_production_vanisource.css'); |
|
| |
| // install Textbox Replace
| |
| document.write('<script type="text/javascript" src="'
| |
| + 'http://vanipedia.org/w/index.php?title=MediaWiki:TextboxReplace.js'
| |
| + '&action=raw&ctype=text/javascript"></' + 'script>');
| |
|
| |
| // install Formatter
| |
| document.write('<script type="text/javascript" src="'
| |
| + 'http://vanipedia.org/w/index.php?title=MediaWiki:Formatter.js'
| |
| + '&action=raw&ctype=text/javascript"></' + 'script>');
| |
| | |
| // install Unify
| |
| document.write('<script type="text/javascript" src="'
| |
| + $jquery_dir +'Unify.js"></' + 'script>');
| |
| // install UniToASCII
| |
| document.write('<script type="text/javascript" src="'
| |
| + $jquery_dir +'UniToASCII.js"></' + 'script>');
| |
| | |
| // install HighlightTermsURL
| |
| document.write('<script type="text/javascript" src="'
| |
| + $jquery_dir +'highlight_terms_url2.js"></' + 'script>');
| |
| | |
| // install ScrollTo
| |
| document.write('<script type="text/javascript" src="'
| |
| + $jquery_dir +'scrollTo.js"></' + 'script>');
| |
|
| |
| // install RandomImage
| |
| //document.write('<script type="text/javascript" src="'
| |
| // + 'http://vanipedia.org/w/index.php?title=MediaWiki:RandomImage2.js'
| |
| // + '&action=raw&ctype=text/javascript"></' + 'script>');
| |
| | |
| // install Vani_suggest
| |
| document.write('<script type="text/javascript" src="'
| |
| + $jquery_dir +'search_suggest.js"></' + 'script>');
| |
| | |
| // Buttons
| |
|
| |
| addOnloadHook(function() {
| |
|
| |
| if (document.editform) {
| |
| addPortletLink("p-cactions", "javascript:Unify()", "unify", "ca-unify", "Convert Balarama fonts to Unicode", "");
| |
| // addPortletLink("p-cactions", "javascript:Vanify()", "vanify", "ca-vanify", "Corrects vani markup", "");
| |
| addPortletLink('p-cactions', 'javascript:format()', 'format', 'ca-format', 'Format article', '');
| |
| addPortletLink('p-cactions', 'javascript:wpTextboxReplace()', 'Replace', 'ca-replace', 'Replaces text in the edit window', 'R');
| |
| }
| |
| }); | | }); |
|
| |
| // end Buttons
| |