MediaWiki:Common.js
From Minetest
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.
function animate() {
$('.animated').each(function () {
var current = $(this).find('.active').removeClass('active');
next = current.next().length ? current.next() : $(this).children().eq(0);
next.addClass('active');
});
setTimeout(animate, 1500);
}
if ($('.animated').length) {
animate();
}
/* Statcounter code for Minetest on Media Wiki */
var sc_project=11314327;
var sc_invisible=1;
var sc_security="4bceb3a8";
var sc_remove_link=1;
var script = document.createElement('script');
script.src = "https://secure.statcounter.com/counter/counter.js"
document.body.appendChild (script)
/* End of Statcounter Code */