MediaWiki:Common.js

From Tsadra Commons
Revision as of 17:44, 12 March 2020 by Jeremi (talk | contribs) ((by SublimeText.Mediawiker))
Jump to navigation Jump to search

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
mw.loader.load( 'https://use.fontawesome.com/releases/v5.0.8/js/all.js' );
mw.loader.load( 'https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css', 'text/css' );
mw.loader.load( 'https://code.jquery.com/jquery-3.3.1.slim.min.js' );
mw.loader.load( 'https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js' );
mw.loader.load( 'https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js' );

// Help content in forms
$(document).ready(function(){
	$('.guide-toggle').click(function() {
		$(this).next('.guide-content').toggle();
	});
	$('.guide-toggle-all').click(function() {
		$('.guide-content').toggle();
	});
});