Main Page

Difference between revisions of "MediaWiki:Common.js"

From Arks-Visiphone
Jump to navigation Jump to search
(document.getElementById(...) is null)
(Try setting syntaxHighlighterConfig)
Line 32: Line 32:
 
});
 
});
 
*/
 
*/
 +
 +
var syntaxHighlighterConfig = {
 +
    foregroundColor: '#000000 !important'
 +
};
  
 
/* to toggle the sidebar, just switch the CSS classes */
 
/* to toggle the sidebar, just switch the CSS classes */
 
$("#sidebar").toggleClass("collapsed");
 
$("#sidebar").toggleClass("collapsed");
 
$("#content").toggleClass("col-md-12 col-md-9");
 
$("#content").toggleClass("col-md-12 col-md-9");

Revision as of 04:47, 18 January 2019

/* Any JavaScript here will be loaded for all users on every page load. */
/**
 * @source https://www.mediawiki.org/wiki/Snippets/Load_JS_and_CSS_by_URL
 * @revision 2017-05-16
 */
mw.loader.using( ['mediawiki.util', 'mediawiki.notify'], function () {
	var extraCSS = mw.util.getParamValue( 'withCSS' ),
		extraJS = mw.util.getParamValue( 'withJS' );

	if ( extraCSS ) {
		// DONT REMOVE THIS IF (unless you are OK with CSRF attacks)
		if ( /^MediaWiki:[^&<>=%#]*\.css$/.test( extraCSS ) ) {
			mw.loader.load( '/wiki/index.php?title=' + encodeURIComponent( extraCSS ) + '&action=raw&ctype=text/css', 'text/css' );
		} else {
			mw.notify( 'Only pages from the MediaWiki namespace are allowed.', { title: 'Invalid withCSS value' } );
		}
	}

	if ( extraJS ) {
		// DONT REMOVE THIS IF (unless you are OK with XSS & CSRF attacks)
		if ( /^MediaWiki:[^&<>=%#]*\.js$/.test( extraJS ) ) {
			mw.loader.load( '/wiki/index.php?title=' + encodeURIComponent( extraJS ) + '&action=raw&ctype=text/javascript' );
		} else {
			mw.notify( 'Only pages from the MediaWiki namespace are allowed.', { title: 'Invalid withJS value' } );
		}
	}
});

/*
document.getElementById("collapse-global").addEventListener("click", function(event){
    event.classList.remove("mw-collapsible-toggle-collapsed");
});
*/

var syntaxHighlighterConfig = {
    foregroundColor: '#000000 !important'
};

/* to toggle the sidebar, just switch the CSS classes */
$("#sidebar").toggleClass("collapsed");
$("#content").toggleClass("col-md-12 col-md-9");