Difference between revisions of "MediaWiki:Common.js"

From The Wiki of Illuna
(Created page with "→‎Any JavaScript here will be loaded for all users on every page load.: var shiftWindow = function() { scrollBy(0, -50) }; if (location.hash) shiftWindow(); window.addEvent...")
 
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
/* Any JavaScript here will be loaded for all users on every page load. */
/* Any JavaScript here will be loaded for all users on every page load. */
var shiftWindow = function() { scrollBy(0, -50) };
var shiftWindow = function() { scrollBy(0, -70) };
if (location.hash) shiftWindow();
if (location.hash) shiftWindow();
window.addEventListener("hashchange", 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>');
        }
    }); 
});

Latest revision as of 22:13, 17 December 2020

/* 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>');
        }
    });   
});