MediaWiki:Common.js

From The Wiki of Illuna

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. */
var shiftWindow = function() { scrollBy(0, -70) };
if (location.hash) shiftWindow();
window.addEventListener("hashchange", shiftWindow);

$(function(){
    $('#activate-rc3-map').click(function(){ 
        if(!$('#rc3mapframe').length) {
            document.getElementById('rc3-map').innerHTML = '';
            $('#rc3-map').html('<iframe height="600" width="700" scrolling="no" id="rc3mapframe" style="border: 0px; overflow: hidden;" class="embed-responsive-item" src="https://illuna-minetest.tk/rc3world-livemap/#!/map/0/11/-485/6"></iframe>');
        }
    });   
});