MediaWiki:Common.js

From Open Pattern Repository for Online Learning Systems
Revision as of 13:17, 15 September 2016 by Pinventado (talk | contribs) (Implement function for each element rather than as a whole)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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: Press Ctrl-F5.
/* Any JavaScript here will be loaded for all users on every page load. */

/* Patternlinks */
/* Remove link to OPR if the page refers to that pattern */
$(".pl-other .selflink").parent().parent().next().remove();

/* Remove link to OPR if OPR does not exist */
$(".pl-main a.new").parent().parent().parent().remove();

/* Remove link to other pattern format if page does not exist, but OPR page exists; remove extra ( ) */
$(".pl-main a:not(.new)").each(function(){
	var plothernew = $(".pl-other a.new", $(this).parent().parent().parent().parent());
  if (plothernew){
    var container = plothernew.parent().parent().parent();
    $(".pl-main", container).html($(".pl-content", container));
    $(".pl-main", container).css("display", "inline");
    $(".pl-other", container).remove();    
  }	
});