summaryrefslogtreecommitdiff
path: root/pages/MediaWiki/MediaWiki:Common.js.mw
blob: 4871eb9547c55ce7b2f15d8b1f44c60a5b5a9b3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* Any JavaScript here will be loaded for all users on every page load. */

function invertMap() {
  mapsLeafletList[0].map.setBearing(180);
  $('img[title*="Case:"]').addClass('mapicon-Case');
  $('img[title*="Webinar:"]').addClass('mapicon-Webinar');
  $('img[title*="Endorser:"]').addClass('mapicon-Endorser');
}

if(window.location.href.indexOf("Index") > -1) {
  setTimeout(invertMap, 500);
}