blob: 417011a07799bd1f544b75e9796c91f90076308e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
$(document).mousemove(function (event) {
$('.torch').css({
'top': event.pageY,
'left': event.pageX
});
});
// CHECKS IF USER IS ON MOBILE
if (screen.width <= 480) {
location.href = './404/alternate';
}
|