So what happened anyway...? that's an hour ahead of April 1st and the page is already acting strange 0.0
Anyone else get this right now?
Anyone else get this right now?
I find it rather funny how buggy it is actually with IE xDDD64 wrote: 5p6846
It's not fully functional in Opera and Internet Explorer (9, 10). Please fix that, otherwise the webpage cannot be used with this browsers.
switch (Math.floor(Math.random() * 10))3/10 chance of HD (case 0,1, or 3) per page load
{
case 0:
case 3:
$("body").append("<div class='flashlight'></div><div class='modtoggle fl'></div>");
modToggle = $(".modtoggle");
fl = $(".flashlight");
$("body").mousemove(function(e) {
if (fl.is(":visible"))
fl.css('background-position', (e.pageX - 1280) + 'px ' + (e.pageY - 720 - $(document).scrollTop()) + 'px');
});
$(".fl").click(function(e) { fl.toggle(); });
case 1:
case 3:
$("body").append("<div class='modtoggle hd'></div>");
modToggle = $(".modtoggle");
$("a").addClass("hiddenA");
$(".hd").click(function() { $("a").toggleClass("hiddenA"); });
break;
}