MediaWiki:Common.js
Opmerking: na het publiceren moet je misschien je browsercache legen om de veranderingen te zien.
- Firefox / Safari: houd Shift ingedrukt terwijl u:je op Vernieuwen klikt of druk op Ctrl-F5 of Ctrl-R (⌘-Shift-R op een Mac)
- Google Chrome: druk op Ctrl-Shift-R (⌘-Shift-R op een Mac)
- Edge: houd Ctrl ingedrukt terwijl u:je op Vernieuwen klikt of druk op Ctrl-F5.
/* Any JavaScript here will be loaded for all users on every page load. */
jQuery.ajax({
method: 'GET',
url: 'https://bitlair.nl/statejson.php',
}).done(function(res) {
jQuery("<div id=spacestatus>"+(res.state.open ? "open" : "gesloten")+"</div>").appendTo(jQuery("#p-logo"));
});
/*
$.getScript("/status/mqtt-status.js", function () {
$("<div id=spacestatus>?</div>").appendTo($("#p-logo"));
$("#spacestatus")
.revspace()
.on("closing", function () { $(this).stop().animate({zoom: 4}, function () { $(this).delay(500).animate({zoom:1}) } ); })
.on("opening", function () { $(this).stop().animate({zoom: 4}, function () { $(this).delay(500).animate({zoom:1}) } ); })
;
});
*/