MediaWiki:Common.js

From TowerFall 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.
/* Any JavaScript here will be loaded for all users on every page load. */
mw.loader.load("https://towerfall.wiki.gg/wiki/MediaWiki:Bandcamp.js?action=raw\u0026ctype=text/javascript"); /* [[Mediawiki:Bandcamp.js]] */

// Inject a world records Google Sheet iframe on [[Trials]]
$(function() {
  if(!document.getElementById('trials-records')){return}
  var embed = document.createElement('iframe');
  embed.setAttribute('src', 'https://docs.google.com/spreadsheets/d/e/2PACX-1vRxFhgKsPO9TcQ5s9CIkQ4dKOKwTsW0pC7VEqt9w31ZMiJWgrfZw93U2r2EaP9jOcjHbI-LiYOinJON/pubhtml?gid=1796490825&single=true&widget=true&headers=false');
  embed.setAttribute('style', 'width:632px; height:312px; max-width:100%;');
  document.getElementById('trials-records').append(embed);
});