MediaWiki:Gadget-equipment.js

From Old School Near-Reality Wiki
Jump to navigation Jump to search

Note: After publishing, 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: Press Ctrl-F5.
 1 // Make buttons for Items Kept on Death and Equipment Stats on Template:Equipment clickable,
 2 // if equipment stats and buttons are shown.
 3 
 4 $(function() {
 5 	$('.equipment-statsbutton, .equipment-ikodbutton').click(function() {
 6 		var ikod = $(this).parents('.equipment').find('.equipment-ikod'),
 7 			stats = $(this).parents('.equipment').find('.equipment-stats');
 8 		if ($(this).is('.equipment-statsbutton')) {
 9 			ikod.hide();
10 			stats.show();
11 		} else {
12 			stats.hide();
13 			ikod.show();
14 		}
15 	});
16 });